Fixing some tests since git does not believe in empty directories.

master
Doug Fales 2010-02-27 16:52:21 -07:00
parent 8c49d49e26
commit 0d35ac037a
4 changed files with 21 additions and 15 deletions

1
.gitignore vendored 100644
View File

@ -0,0 +1 @@
tests/output/*

View File

@ -21,7 +21,7 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#++ #++
module GPX module GPX
VERSION = "0.5" VERSION = "0.6"
# A common base class which provides a useful initializer method to many # A common base class which provides a useful initializer method to many
# class in the GPX library. # class in the GPX library.

View File

@ -1,10 +1,15 @@
require 'test/unit' require 'test/unit'
require 'fileutils'
require File.dirname(__FILE__) + '/../lib/gpx' require File.dirname(__FILE__) + '/../lib/gpx'
class OutputTest < Test::Unit::TestCase class OutputTest < Test::Unit::TestCase
include GPX include GPX
def setup
FileUtils.mkdir_p(File.join(File.dirname(__FILE__), "output"))
end
def test_new_gpx_file_from_scratch def test_new_gpx_file_from_scratch
gpx_file = GPXFile.new gpx_file = GPXFile.new
@ -25,24 +30,24 @@ class OutputTest < Test::Unit::TestCase
track_point_data.each do |trk_pt_hash| track_point_data.each do |trk_pt_hash|
segment.points << TrackPoint.new(trk_pt_hash) segment.points << TrackPoint.new(trk_pt_hash)
end end
track.segments << segment track.segments << segment
gpx_file.tracks << track gpx_file.tracks << track
waypoint_data = [ waypoint_data = [
{:lat => 39.997298, :lon => -105.292674, :name => 'GRG-CA', :sym => 'Waypoint', :elevation => 1766.535}, {:lat => 39.997298, :lon => -105.292674, :name => 'GRG-CA', :sym => 'Waypoint', :elevation => 1766.535},
{:lat => 33.330190, :lon => -111.946110, :name => 'GRMPHX', :sym => 'Waypoint', :elevation => 361.0981, {:lat => 33.330190, :lon => -111.946110, :name => 'GRMPHX', :sym => 'Waypoint', :elevation => 361.0981,
:cmt => "Hey here's a comment.", :desc => "Somewhere in my backyard.", :fix => '3d', :sat => "8", :hdop => "50.5", :vdop => "6.8", :pdop => "7.6"}, :cmt => "Hey here's a comment.", :desc => "Somewhere in my backyard.", :fix => '3d', :sat => "8", :hdop => "50.5", :vdop => "6.8", :pdop => "7.6"},
{:lat => 25.061783, :lon => 121.640267, :name => 'GRMTWN', :sym => 'Waypoint', :elevation => 38.09766}, {:lat => 25.061783, :lon => 121.640267, :name => 'GRMTWN', :sym => 'Waypoint', :elevation => 38.09766},
{:lat => 39.999840, :lon => -105.214696, :name => 'SBDR', :sym => 'Waypoint', :elevation => 1612.965}, {:lat => 39.999840, :lon => -105.214696, :name => 'SBDR', :sym => 'Waypoint', :elevation => 1612.965},
{:lat => 39.989739, :lon => -105.295285, :name => 'TO', :sym => 'Waypoint', :elevation => 2163.556}, {:lat => 39.989739, :lon => -105.295285, :name => 'TO', :sym => 'Waypoint', :elevation => 2163.556},
{:lat => 40.035301, :lon => -105.254443, :name => 'VICS', :sym => 'Waypoint', :elevation => 1535.34} {:lat => 40.035301, :lon => -105.254443, :name => 'VICS', :sym => 'Waypoint', :elevation => 1535.34}
] ]
waypoint_data.each do |wpt_hash| waypoint_data.each do |wpt_hash|
gpx_file.waypoints << Waypoint.new(wpt_hash) gpx_file.waypoints << Waypoint.new(wpt_hash)
end end
route_point_data = [ route_point_data = [
{:lat => 40.035467, :lon =>-105.254366, :time => Time.parse("2005-12-31T22:02:29Z"), :elevation => 1735.798}, {:lat => 40.035467, :lon =>-105.254366, :time => Time.parse("2005-12-31T22:02:29Z"), :elevation => 1735.798},
@ -52,7 +57,7 @@ class OutputTest < Test::Unit::TestCase
route = Route.new() route = Route.new()
route_point_data.each do |rte_pt_hash| route_point_data.each do |rte_pt_hash|
route.points << Point.new(rte_pt_hash) route.points << Point.new(rte_pt_hash)
end end
gpx_file.routes << route gpx_file.routes << route
@ -73,19 +78,19 @@ class OutputTest < Test::Unit::TestCase
trk_pt_hash.each do |key, value| trk_pt_hash.each do |key, value|
assert_equal(value, written_segment.points[index].send(key)) assert_equal(value, written_segment.points[index].send(key))
end end
end end
# Make sure the one route has the attributes we initialized it with # Make sure the one route has the attributes we initialized it with
assert_equal(1, written_gpx_file.routes.size) assert_equal(1, written_gpx_file.routes.size)
written_route = written_gpx_file.routes[0] written_route = written_gpx_file.routes[0]
assert_equal(route_point_data.size, written_route.points.size) assert_equal(route_point_data.size, written_route.points.size)
route_point_data.each_with_index do |rte_pt_hash, index| route_point_data.each_with_index do |rte_pt_hash, index|
rte_pt_hash.each do |key, value| rte_pt_hash.each do |key, value|
assert_equal(value, written_route.points[index].send(key)) assert_equal(value, written_route.points[index].send(key))
end end
end end
# Make sure the waypoints have all of the attributes we initialized them with # Make sure the waypoints have all of the attributes we initialized them with
written_waypoints = written_gpx_file.waypoints written_waypoints = written_gpx_file.waypoints
@ -93,7 +98,7 @@ class OutputTest < Test::Unit::TestCase
waypoint_data.each_with_index do |wpt_hash, index| waypoint_data.each_with_index do |wpt_hash, index|
wpt_hash.each do |key, value| wpt_hash.each do |key, value|
assert_equal(value, written_waypoints[index].send(key.to_s), key) assert_equal(value, written_waypoints[index].send(key.to_s), key)
end end
end end
expected_value = sprintf(THE_WORKS, gpx_file.time.xmlschema) expected_value = sprintf(THE_WORKS, gpx_file.time.xmlschema)

View File

@ -69,7 +69,7 @@ class TrackFileTest < Test::Unit::TestCase
end end
def test_write def test_write
@other_track_file.write("myoutput.gpx") @other_track_file.write("tests/output/myoutput.gpx")
end end
end end