+ # The ids refer to the .gpx fixtures in test/traces
+ check_extension_name("a", ".gpx")
+ check_extension_name("b", ".gpx")
+ check_extension_name("c", ".gpx.bz2")
+ check_extension_name("d", ".gpx.gz")
+ check_extension_name("f", ".zip")
+ check_extension_name("g", ".tar")
+ check_extension_name("h", ".tar.gz")
+ check_extension_name("i", ".tar.bz2")
+ end
+
+ def test_xml_file
+ check_xml_file("a", "848caa72f2f456d1bd6a0fdf228aa1b9")
+ check_xml_file("b", "db4cb5ed2d7d2b627b3b504296c4f701")
+ check_xml_file("c", "848caa72f2f456d1bd6a0fdf228aa1b9")
+ check_xml_file("d", "abd6675fdf3024a84fc0a1deac147c0d")
+ check_xml_file("f", "a7c05d676c77dc14369c21be216a3713")
+ check_xml_file("g", "a7c05d676c77dc14369c21be216a3713")
+ check_xml_file("h", "a7c05d676c77dc14369c21be216a3713")
+ check_xml_file("i", "a7c05d676c77dc14369c21be216a3713")
+ end
+
+ def test_large_picture
+ picture = Rails.root.join("test/gpx/fixtures/a.gif").read(:mode => "rb")
+ trace = create(:trace, :fixture => "a")
+
+ assert_equal picture, trace.large_picture
+ end
+
+ def test_icon_picture
+ picture = Rails.root.join("test/gpx/fixtures/a_icon.gif").read(:mode => "rb")
+ trace = create(:trace, :fixture => "a")
+
+ assert_equal picture, trace.icon_picture
+ end
+
+ def test_import_removes_previous_tracepoints
+ trace = create(:trace, :fixture => "a")
+ # Tracepoints don't have a primary key, so we use a specific latitude to
+ # check for successful deletion
+ create(:tracepoint, :latitude => 54321, :trace => trace)
+ assert_equal 1, Tracepoint.where(:latitude => 54321).count
+
+ trace.import
+
+ assert_equal 0, Tracepoint.where(:latitude => 54321).count
+ end
+
+ def test_import_creates_tracepoints
+ trace = create(:trace, :fixture => "a")
+ assert_equal 0, Tracepoint.where(:trace => trace).count
+
+ trace.import
+
+ trace.reload
+ assert_equal 1, Tracepoint.where(:trace => trace).count
+
+ # Check that the tile has been set prior to the bulk import
+ # i.e. that the callbacks have been run correctly
+ assert_equal 3221331576, Tracepoint.find_by(:trace => trace).tile
+ end
+
+ def test_import_creates_icon
+ trace = create(:trace, :inserted => false, :fixture => "a")
+
+ assert_not_predicate trace.icon, :attached?
+
+ trace.import
+
+ assert_predicate trace.icon, :attached?
+ end
+
+ def test_import_creates_large_picture
+ trace = create(:trace, :inserted => false, :fixture => "a")
+
+ assert_not_predicate trace.image, :attached?
+
+ trace.import
+
+ assert_predicate trace.image, :attached?
+ end
+
+ def test_import_handles_bz2
+ trace = create(:trace, :inserted => false, :fixture => "c")
+
+ trace.import
+
+ assert_equal 1, trace.size
+ end
+
+ def test_import_handles_plain
+ trace = create(:trace, :inserted => false, :fixture => "a")
+
+ trace.import
+
+ assert_equal 1, trace.size
+ end
+
+ def test_import_handles_plain_with_bom
+ trace = create(:trace, :inserted => false, :fixture => "b")
+
+ trace.import
+
+ assert_equal 1, trace.size
+ end
+
+ def test_import_handles_gz
+ trace = create(:trace, :inserted => false, :fixture => "d")
+
+ trace.import
+
+ assert_equal 1, trace.size
+ end
+
+ def test_import_handles_zip
+ trace = create(:trace, :inserted => false, :fixture => "f")
+
+ trace.import
+
+ assert_equal 2, trace.size
+ end
+
+ def test_import_handles_tar
+ trace = create(:trace, :inserted => false, :fixture => "g")
+
+ trace.import
+
+ assert_equal 2, trace.size
+ end
+
+ def test_import_handles_tar_gz
+ trace = create(:trace, :inserted => false, :fixture => "h")
+
+ trace.import
+
+ assert_equal 2, trace.size
+ end
+
+ def test_import_handles_tar_bz2
+ trace = create(:trace, :inserted => false, :fixture => "i")
+
+ trace.import
+
+ assert_equal 2, trace.size
+ end
+
+ def test_import_enforces_limit
+ trace = create(:trace, :inserted => false, :fixture => "f")
+
+ with_settings(:max_trace_size => 1) do
+ assert_raise GPX::FileTooBigError do
+ trace.import
+ end
+ end
+
+ assert_not trace.inserted