# -*- encoding : utf-8 -*- require File.expand_path(File.dirname(__FILE__)) + '/../helper' class EqualizerImportTest < Test::Unit::TestCase DELTA = 0.001 def test_introspects_properly i = Tracksperanto::Import::Equalizer4 assert_equal "3DE v4 point export file", i.human_name assert !i.autodetects_size? end def test_parsing_from_importable fixture = File.open(File.dirname(__FILE__) + '/samples/3de_v4/3de_export_cube.txt') parser = Tracksperanto::Import::Equalizer4.new(:io => fixture, :width => 1024, :height => 512) trackers = parser.to_a assert_equal 8, trackers.length first_t = trackers[0] assert_equal "01", first_t.name assert_equal 61, first_t.length first_kf = first_t[0] assert_in_delta 407.384758225105315, first_kf.abs_x, DELTA assert_in_delta 232.449011732690479, first_kf.abs_y, DELTA assert_equal 39, first_kf.frame end def test_parsing_from_another_fixture fixture = File.open(File.dirname(__FILE__) + '/samples/3de_v4/FB1880_man_v05.txt') parser = Tracksperanto::Import::Equalizer4.new(:io => fixture, :width => 1024, :height => 512) trackers = parser.to_a assert_equal 27, trackers.length first_t = trackers[0] assert_equal "01", first_t.name assert_equal 115, first_t.length end end