Example #1
0
 def test_shapefile_dest_layer(self):
     """Check that we can create an OGRLayer in the datastore database"""
     res = self.add_shapefile_resource("test-create-dest-layer")
     s = Shapefile(res["id"])
     ds = s.get_destination_source()
     self.assertIsInstance(
         s.create_destination_layer(ds, "test-create-dest-layer"), Layer)
Example #2
0
 def test_shapefile_publish(self):
     """Publishing a shapefile puts the data into the PostGIS table"""
     res = self.add_shapefile_resource("test-publish")
     s = Shapefile(res["id"])
     self.assertTrue(s.publish())
     self.assertEqual(s.get_source_layer().GetFeatureCount(),
                      s.get_destination_layer().GetFeatureCount())
Example #3
0
    def test_shapefile_dest_layer_fields(self):
        """The destination layer must contain the fields from the source"""
        res = self.add_shapefile_resource("test-dest-fields")
        s = Shapefile(res["id"])
        shapefile = s.get_source_layer().GetLayerDefn()
        source_fields = [shapefile.GetFieldDefn(i).GetName().lower() for i in range(shapefile.GetFieldCount())]

        dest = s.get_destination_layer(s.get_destination_source(), s.get_name()).GetLayerDefn()
        dest_fields = [dest.GetFieldDefn(i).GetName().lower() for i in range(dest.GetFieldCount())]

        self.assertEqual(len(set(source_fields).difference(dest_fields)), 0)
Example #4
0
 def test_shapefile_get_dest_layer(self):
     """Check that we can get an OGRLayer in the datastore database"""
     res = self.add_shapefile_resource("test-get-dest-layer")
     s = Shapefile(res["id"])
     ds = s.get_destination_source()
     self.assertIsInstance(s.get_destination_layer(ds, s.table_name()), Layer)
Example #5
0
 def test_shapefile_dest_source(self):
     """Validate that we can open the datastore database as an OGRDataSource"""
     res = self.add_shapefile_resource("test-dest-source")
     s = Shapefile(res["id"])
     self.assertIsInstance(s.get_destination_source(), DataSource)
Example #6
0
    def test_shapefile_path_exists(self):
        """Check that creating a shapefile instance finds the path to the compressed file"""
        shapefile_resource = self.add_shapefile_resource("test-path-exists")

        s = Shapefile(shapefile_resource["id"])
        self.assertTrue(os.path.exists(s.file_path))
Example #7
0
 def test_shapefile_publish(self):
     """Publishing a shapefile puts the data into the PostGIS table"""
     res = self.add_shapefile_resource("test-publish")
     s = Shapefile(res["id"])
     self.assertTrue(s.publish())
     self.assertEqual(s.get_source_layer().GetFeatureCount(), s.get_destination_layer().GetFeatureCount())