2 require "minitest/mock"
 
   4 class TraceTest < ActiveSupport::TestCase
 
   6     File.unlink(*Dir.glob(File.join(Settings.gpx_trace_dir, "*.gpx")))
 
   7     File.unlink(*Dir.glob(File.join(Settings.gpx_image_dir, "*.gif")))
 
  11     public_trace_file = create(:trace)
 
  12     create(:trace, :deleted)
 
  13     check_query(Trace.visible, [public_trace_file])
 
  17     first_user = create(:user)
 
  18     second_user = create(:user)
 
  19     third_user = create(:user)
 
  20     fourth_user = create(:user)
 
  21     public_trace_file = create(:trace, :visibility => "public", :user => first_user)
 
  22     anon_trace_file = create(:trace, :visibility => "private", :user => second_user)
 
  23     identifiable_trace_file = create(:trace, :visibility => "identifiable", :user => first_user)
 
  24     pending_trace_file = create(:trace, :visibility => "public", :user => second_user, :inserted => false)
 
  25     trackable_trace_file = create(:trace, :visibility => "trackable", :user => second_user)
 
  26     _other_trace_file = create(:trace, :visibility => "private", :user => third_user)
 
  28     check_query(Trace.visible_to(first_user), [
 
  29                   public_trace_file, identifiable_trace_file, pending_trace_file
 
  31     check_query(Trace.visible_to(second_user), [
 
  32                   public_trace_file, anon_trace_file, trackable_trace_file,
 
  33                   identifiable_trace_file, pending_trace_file
 
  35     check_query(Trace.visible_to(fourth_user), [
 
  36                   public_trace_file, identifiable_trace_file, pending_trace_file
 
  40   def test_visible_to_all
 
  41     public_trace_file = create(:trace, :visibility => "public")
 
  42     _private_trace_file = create(:trace, :visibility => "private")
 
  43     identifiable_trace_file = create(:trace, :visibility => "identifiable")
 
  44     _trackable_trace_file = create(:trace, :visibility => "trackable")
 
  45     deleted_trace_file = create(:trace, :deleted, :visibility => "public")
 
  46     pending_trace_file = create(:trace, :visibility => "public", :inserted => false)
 
  48     check_query(Trace.visible_to_all, [
 
  49                   public_trace_file, identifiable_trace_file,
 
  50                   deleted_trace_file, pending_trace_file
 
  55     london_trace_file = create(:trace) do |trace|
 
  56       create(:tracetag, :trace => trace, :tag => "London")
 
  58     birmingham_trace_file = create(:trace) do |trace|
 
  59       create(:tracetag, :trace => trace, :tag => "Birmingham")
 
  61     check_query(Trace.tagged("London"), [london_trace_file])
 
  62     check_query(Trace.tagged("Birmingham"), [birmingham_trace_file])
 
  63     check_query(Trace.tagged("Unknown"), [])
 
  68     trace_valid({ :user_id => nil }, false)
 
  69     trace_valid(:name => "a" * 255)
 
  70     trace_valid({ :name => "a" * 256 }, false)
 
  71     trace_valid({ :description => nil }, false)
 
  72     trace_valid(:description => "a" * 255)
 
  73     trace_valid({ :description => "a" * 256 }, false)
 
  74     trace_valid(:visibility => "private")
 
  75     trace_valid(:visibility => "public")
 
  76     trace_valid(:visibility => "trackable")
 
  77     trace_valid(:visibility => "identifiable")
 
  78     trace_valid({ :visibility => "foo" }, false)
 
  83     trace.tagstring = "foo bar baz"
 
  85     assert_equal 3, trace.tags.length
 
  86     assert_equal "foo", trace.tags[0].tag
 
  87     assert_equal "bar", trace.tags[1].tag
 
  88     assert_equal "baz", trace.tags[2].tag
 
  89     assert_equal "foo, bar, baz", trace.tagstring
 
  90     trace.tagstring = "foo, bar baz ,qux"
 
  92     assert_equal 3, trace.tags.length
 
  93     assert_equal "foo", trace.tags[0].tag
 
  94     assert_equal "bar baz", trace.tags[1].tag
 
  95     assert_equal "qux", trace.tags[2].tag
 
  96     assert_equal "foo, bar baz, qux", trace.tagstring
 
 100     assert_equal true, build(:trace, :visibility => "public").public?
 
 101     assert_equal false, build(:trace, :visibility => "private").public?
 
 102     assert_equal false, build(:trace, :visibility => "trackable").public?
 
 103     assert_equal true, build(:trace, :visibility => "identifiable").public?
 
 104     assert_equal true, build(:trace, :deleted, :visibility => "public").public?
 
 108     assert_equal false, build(:trace, :visibility => "public").trackable?
 
 109     assert_equal false, build(:trace, :visibility => "private").trackable?
 
 110     assert_equal true, build(:trace, :visibility => "trackable").trackable?
 
 111     assert_equal true, build(:trace, :visibility => "identifiable").trackable?
 
 112     assert_equal false, build(:trace, :deleted, :visibility => "public").trackable?
 
 115   def test_identifiable?
 
 116     assert_equal false, build(:trace, :visibility => "public").identifiable?
 
 117     assert_equal false, build(:trace, :visibility => "private").identifiable?
 
 118     assert_equal false, build(:trace, :visibility => "trackable").identifiable?
 
 119     assert_equal true, build(:trace, :visibility => "identifiable").identifiable?
 
 120     assert_equal false, build(:trace, :deleted, :visibility => "public").identifiable?
 
 124     # The ids refer to the .gpx fixtures in test/traces
 
 125     check_mime_type("a", "application/gpx+xml")
 
 126     check_mime_type("b", "application/gpx+xml")
 
 127     check_mime_type("c", "application/x-bzip2")
 
 128     check_mime_type("d", "application/x-gzip")
 
 129     check_mime_type("f", "application/x-zip")
 
 130     check_mime_type("g", "application/x-tar")
 
 131     check_mime_type("h", "application/x-gzip")
 
 132     check_mime_type("i", "application/x-bzip2")
 
 135   def test_extension_name
 
 136     # The ids refer to the .gpx fixtures in test/traces
 
 137     check_extension_name("a", ".gpx")
 
 138     check_extension_name("b", ".gpx")
 
 139     check_extension_name("c", ".gpx.bz2")
 
 140     check_extension_name("d", ".gpx.gz")
 
 141     check_extension_name("f", ".zip")
 
 142     check_extension_name("g", ".tar")
 
 143     check_extension_name("h", ".tar.gz")
 
 144     check_extension_name("i", ".tar.bz2")
 
 148     check_xml_file("a", "848caa72f2f456d1bd6a0fdf228aa1b9")
 
 149     check_xml_file("b", "66179ca44f1e93d8df62e2b88cbea732")
 
 150     check_xml_file("c", "848caa72f2f456d1bd6a0fdf228aa1b9")
 
 151     check_xml_file("d", "abd6675fdf3024a84fc0a1deac147c0d")
 
 152     check_xml_file("f", "a7c05d676c77dc14369c21be216a3713")
 
 153     check_xml_file("g", "a7c05d676c77dc14369c21be216a3713")
 
 154     check_xml_file("h", "a7c05d676c77dc14369c21be216a3713")
 
 155     check_xml_file("i", "a7c05d676c77dc14369c21be216a3713")
 
 158   def test_large_picture
 
 159     picture = File.read(Rails.root.join("test", "gpx", "fixtures", "a.gif"), :mode => "rb")
 
 162     trace.large_picture = picture
 
 163     assert_equal "7c841749e084ee4a5d13f12cd3bef456", md5sum(File.new(trace.large_picture_name))
 
 164     assert_equal picture, trace.large_picture
 
 169   def test_icon_picture
 
 170     picture = File.read(Rails.root.join("test", "gpx", "fixtures", "a_icon.gif"), :mode => "rb")
 
 173     trace.icon_picture = picture
 
 174     assert_equal "b47baf22ed0e85d77e808694fad0ee27", md5sum(File.new(trace.icon_picture_name))
 
 175     assert_equal picture, trace.icon_picture
 
 180   # When testing the trace.import method, care needs to be taken regarding the icon
 
 181   # fixture files, since the fixtures could be overwritten by newly generated files.
 
 182   # We use FakeFS to temporarily protect the real fixture files from being overwritten.
 
 184   def test_import_removes_previous_tracepoints
 
 186       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 187       trace = create(:trace, :fixture => "a")
 
 188       # Tracepoints don't have a primary key, so we use a specific latitude to
 
 189       # check for successful deletion
 
 190       create(:tracepoint, :latitude => 54321, :trace => trace)
 
 191       assert_equal 1, Tracepoint.where(:latitude => 54321).count
 
 195       assert_equal 0, Tracepoint.where(:latitude => 54321).count
 
 199   def test_import_creates_tracepoints
 
 201       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 202       trace = create(:trace, :fixture => "a")
 
 203       assert_equal 0, Tracepoint.where(:gpx_id => trace.id).count
 
 208       assert_equal 1, Tracepoint.where(:gpx_id => trace.id).count
 
 210       # Check that the tile has been set prior to the bulk import
 
 211       # i.e. that the callbacks have been run correctly
 
 212       assert_equal 3221331576, Tracepoint.where(:gpx_id => trace.id).first.tile
 
 216   def test_import_creates_icon
 
 218       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 219       trace = create(:trace, :fixture => "a")
 
 220       icon_path = File.join(Settings.gpx_image_dir, "#{trace.id}_icon.gif")
 
 221       FileUtils.rm(icon_path)
 
 222       assert_equal false, File.exist?(icon_path)
 
 226       assert_equal true, File.exist?(icon_path)
 
 230   def test_import_creates_large_picture
 
 232       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 233       trace = create(:trace, :fixture => "a")
 
 234       large_picture_path = File.join(Settings.gpx_image_dir, "#{trace.id}.gif")
 
 235       FileUtils.rm(large_picture_path)
 
 236       assert_equal false, File.exist?(large_picture_path)
 
 240       assert_equal true, File.exist?(large_picture_path)
 
 244   def test_import_handles_bz2
 
 246       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 247       trace = create(:trace, :fixture => "c")
 
 251       assert_equal 1, trace.size
 
 255   def test_import_handles_plain
 
 257       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 258       trace = create(:trace, :fixture => "a")
 
 262       assert_equal 1, trace.size
 
 266   def test_import_handles_gz
 
 267     trace = create(:trace, :fixture => "d")
 
 270       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 273       assert_equal 1, trace.size
 
 279   def test_import_handles_zip
 
 280     trace = create(:trace, :fixture => "f")
 
 283       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 286       assert_equal 2, trace.size
 
 292   def test_import_handles_tar
 
 293     trace = create(:trace, :fixture => "g")
 
 296       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 299       assert_equal 2, trace.size
 
 305   def test_import_handles_tar_gz
 
 306     trace = create(:trace, :fixture => "h")
 
 309       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 312       assert_equal 2, trace.size
 
 318   def test_import_handles_tar_bz2
 
 319     trace = create(:trace, :fixture => "i")
 
 322       FakeFS::FileSystem.clone(Rails.root.join("test", "gpx"))
 
 325       assert_equal 2, trace.size
 
 333   def check_query(query, traces)
 
 334     traces = traces.map(&:id).sort
 
 335     assert_equal traces, query.order(:id).ids
 
 338   def check_mime_type(id, mime_type)
 
 339     assert_equal mime_type, create(:trace, :fixture => id).mime_type
 
 342   def check_extension_name(id, extension_name)
 
 343     assert_equal extension_name, create(:trace, :fixture => id).extension_name
 
 346   def check_xml_file(id, md5sum)
 
 347     assert_equal md5sum, md5sum(create(:trace, :fixture => id).xml_file)
 
 350   def trace_valid(attrs, result = true)
 
 351     entry = build(:trace, attrs)
 
 352     assert_equal result, entry.valid?, "Expected #{attrs.inspect} to be #{result}"
 
 356     io.each_with_object(Digest::MD5.new) { |l, d| d.update(l) }.hexdigest