# ----------------------------------------------------------------------------- # # Common tests for multi point implementations # # ----------------------------------------------------------------------------- # Copyright 2010 Daniel Azuma # # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright notice, # this list of conditions and the following disclaimer in the documentation # and/or other materials provided with the distribution. # * Neither the name of the copyright holder, nor the names of any other # contributors to this software, may be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # ----------------------------------------------------------------------------- ; require 'rgeo' module RGeo module Tests # :nodoc: module Common # :nodoc: module MultiPointTests # :nodoc: def setup @factory = create_factory @point1 = @factory.point(0, 0) @point2 = @factory.point(1, 0) @point3 = @factory.point(-4, 2) @point4 = @factory.point(-5, 3) @point5 = @factory.point(-5, 3) end def test_creation_simple geom_ = @factory.multi_point([@point1, @point2]) assert_not_nil(geom_) assert(::RGeo::Features::MultiPoint === geom_) assert_equal(::RGeo::Features::MultiPoint, geom_.geometry_type) assert_equal(2, geom_.num_geometries) assert_equal([@point1, @point2], geom_.to_a) end def test_creation_empty geom_ = @factory.multi_point([]) assert_not_nil(geom_) assert(::RGeo::Features::MultiPoint === geom_) assert_equal(::RGeo::Features::MultiPoint, geom_.geometry_type) assert_equal(0, geom_.num_geometries) assert_equal([], geom_.to_a) end def test_creation_compound mp1_ = @factory.multi_point([@point1, @point2]) mp2_ = @factory.collection([@point3]) mp3_ = @factory.collection([mp1_]) geom_ = @factory.multi_point([mp3_, mp2_, @point4]) assert_not_nil(geom_) assert(::RGeo::Features::MultiPoint === geom_) assert_equal(::RGeo::Features::MultiPoint, geom_.geometry_type) assert_equal(4, geom_.num_geometries) assert_equal([@point1, @point2, @point3, @point4], geom_.to_a) end def test_creation_wrong_type line_ = @factory.line_string([@point1, @point2]) geom_ = @factory.multi_point([@point3, line_]) assert_nil(geom_) end def test_fully_equal geom1_ = @factory.multi_point([@point1, @point2]) geom2_ = @factory.multi_point([@point1, @point2]) assert(geom1_.eql?(geom2_)) assert(geom1_.equals?(geom2_)) end def test_geometrically_equal geom1_ = @factory.multi_point([@point1, @point4]) geom2_ = @factory.multi_point([@point1, @point4, @point5]) assert(!geom1_.eql?(geom2_)) assert(geom1_.equals?(geom2_)) end def test_not_equal geom1_ = @factory.multi_point([@point1, @point2]) geom2_ = @factory.multi_point([@point1]) assert(!geom1_.eql?(geom2_)) assert(!geom1_.equals?(geom2_)) end def test_wkt_creation_simple parsed_geom_ = @factory.parse_wkt('MULTIPOINT((0 0), (-4 2), (-5 3))') built_geom_ = @factory.multi_point([@point1, @point3, @point4]) assert_equal(built_geom_, parsed_geom_) end def test_wkt_creation_empty parsed_geom_ = @factory.parse_wkt('MULTIPOINT EMPTY') assert(::RGeo::Features::MultiPoint === parsed_geom_) assert_equal(0, parsed_geom_.num_geometries) assert_equal([], parsed_geom_.to_a) end def test_clone geom1_ = @factory.multi_point([@point1, @point2]) geom2_ = geom1_.clone assert_equal(geom1_, geom2_) assert_equal(::RGeo::Features::MultiPoint, geom2_.geometry_type) assert_equal(2, geom2_.num_geometries) assert_equal([@point1, @point2], geom2_.to_a) end def test_type_check geom1_ = @factory.multi_point([@point1, @point2]) assert(::RGeo::Features::Geometry.check_type(geom1_)) assert(!::RGeo::Features::Point.check_type(geom1_)) assert(::RGeo::Features::GeometryCollection.check_type(geom1_)) assert(::RGeo::Features::MultiPoint.check_type(geom1_)) assert(!::RGeo::Features::MultiLineString.check_type(geom1_)) geom2_ = @factory.multi_point([]) assert(::RGeo::Features::Geometry.check_type(geom2_)) assert(!::RGeo::Features::Point.check_type(geom2_)) assert(::RGeo::Features::GeometryCollection.check_type(geom2_)) assert(::RGeo::Features::MultiPoint.check_type(geom2_)) assert(!::RGeo::Features::MultiLineString.check_type(geom2_)) end def test_as_text_wkt_round_trip geom1_ = @factory.multi_point([@point1, @point2]) text_ = geom1_.as_text geom2_ = @factory.parse_wkt(text_) assert_equal(geom1_, geom2_) end def test_as_binary_wkb_round_trip geom1_ = @factory.multi_point([@point1, @point2]) binary_ = geom1_.as_binary geom2_ = @factory.parse_wkb(binary_) assert_equal(geom1_, geom2_) end def test_dimension geom1_ = @factory.multi_point([@point1, @point2]) assert_equal(0, geom1_.dimension) geom2_ = @factory.multi_point([]) assert_equal(-1, geom2_.dimension) end def test_is_empty geom1_ = @factory.multi_point([@point1, @point2]) assert(!geom1_.is_empty?) geom2_ = @factory.multi_point([]) assert(geom2_.is_empty?) end end end end end