Exemple #1
0
 def setUp(self):
     self.user = User.objects.create_user(
         'featuretest', '*****@*****.**', password='******')
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
     self.real = FVSVariant.objects.get(code="PN")
     self.other = FVSVariant.objects.get(code="SO")
Exemple #2
0
 def setUp(self):
     self.client = Client()
     self.user = User.objects.create_user(
         'featuretest', '*****@*****.**', password='******')
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
     self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1)
     self.stand1.save()
     self.stand1.add_to_collection(self.prop1)
 def test_property_files(self):
     prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop1.save()
     path = os.path.join(prop1.file_dir, "test.txt")
     try:
         fh = open(path, "w")
         fh.write("prop1")
         fh.close()
     except:
         self.fail("Could not write file to " + path)
     os.remove(path)
    def test_add_property_to_stand(self):
        prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        prop1.save()

        self.stand1.add_to_collection(prop1)
        self.assertEqual(self.stand1.collection, prop1)
        self.assertTrue(self.stand1 in prop1.feature_set())

        self.stand1.remove_from_collection()
        self.assertEqual(self.stand1.collection, None)
        self.assertTrue(self.stand1 not in prop1.feature_set())
Exemple #5
0
class NearestPlotPyTest(TestCase):
    fixtures = ['test_treelive_summary', 'test_idb_summary', 'test_conditionvariantlookup']

    def setUp(self):
        self.client = Client()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1) 
        self.stand1.save()
        self.stand1.add_to_collection(self.prop1)

    def _create_strata(self):
        stand_list = {
            'property': self.prop1.uid,
            'classes': [
                ('Douglas-fir', 2, 4, 145),
            ]
        }
        strata = Strata(user=self.user, name="My Strata", search_age=30.0, search_tpa=120.0, stand_list = stand_list)
        strata.save()
        return strata

    def test_bad_stand_list(self):
        stand_list = [ ('Douglas-fir', 2, 4, 145), ] 
        strata = Strata(user=self.user, name="My Strata", search_age=30.0, search_tpa=120.0, stand_list=stand_list)
        with self.assertRaises(ValidationError):
            strata.save()

        stand_list = {
            'property': self.prop1.uid,
            'classes': [
                ('Douglas-fir', "booo"),
            ]
        }
        strata = Strata(user=self.user, name="My Strata", search_age=30.0, search_tpa=120.0, stand_list=stand_list)
        with self.assertRaises(ValidationError):
            strata.save()

    def test_assign_strata_to_stand(self):
        strata = self._create_strata()
        self.assertTrue(strata)
        self.stand1.strata = strata
        self.assertEqual("My Strata", self.stand1.strata.name)

    def test_candidates(self):
        from trees.plots import get_candidates
        stand_list = {
            'property': self.prop1.uid,
            'classes': [('Douglas-fir', 2, 4, 145), ]
        }
        variant = self.prop1.variant.code
        get_candidates(stand_list['classes'], variant)
Exemple #6
0
    def setUp(self):
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

        d = os.path.dirname(__file__)
        self.shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands.shp'))
        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, forest_property=self.prop1)
Exemple #7
0
    def test_add_stand_to_property(self):
        prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        prop1.save()

        prop1.add(self.stand1)
        self.assertEqual(self.stand1.collection, prop1)
        self.assertTrue(self.stand1 in prop1.feature_set())

        prop1.remove(self.stand1)
        self.assertEqual(self.stand1.collection, None)
        self.assertTrue(self.stand1 not in prop1.feature_set())
Exemple #8
0
 def test_property_files(self):
     prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop1.save()
     path = os.path.join(prop1.file_dir, 'test.txt')
     try:
         fh = open(path, 'w')
         fh.write("prop1")
         fh.close()
     except:
         self.fail("Could not write file to " + path)
     os.remove(path)
Exemple #9
0
class NearestPlotPyTest(TestCase):
    fixtures = ['test_treelive_summary', 'test_idb_summary', 'test_conditionvariantlookup']

    def setUp(self):
        self.client = Client()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1)
        self.stand1.save()
        self.stand1.add_to_collection(self.prop1)

    def _create_strata(self):
        stand_list = {
            'property': self.prop1.uid,
            'classes': [
                ('Douglas-fir', 2, 4, 145),
            ]
        }
        strata = Strata(user=self.user, name="My Strata", search_age=30.0, search_tpa=120.0, stand_list = stand_list)
        strata.save()
        return strata

    def test_bad_stand_list(self):
        stand_list = [ ('Douglas-fir', 2, 4, 145), ]
        strata = Strata(user=self.user, name="My Strata", search_age=30.0, search_tpa=120.0, stand_list=stand_list)
        with self.assertRaises(ValidationError):
            strata.save()

        stand_list = {
            'property': self.prop1.uid,
            'classes': [
                ('Douglas-fir', "booo"),
            ]
        }
        strata = Strata(user=self.user, name="My Strata", search_age=30.0, search_tpa=120.0, stand_list=stand_list)
        with self.assertRaises(ValidationError):
            strata.save()

    def test_assign_strata_to_stand(self):
        strata = self._create_strata()
        self.assertTrue(strata)
        self.stand1.strata = strata
        self.assertEqual("My Strata", self.stand1.strata.name)

    def test_candidates(self):
        from trees.plots import get_candidates
        stand_list = {
            'property': self.prop1.uid,
            'classes': [('Douglas-fir', 2, 4, 145), ]
        }
        variant = self.prop1.variant.code
        get_candidates(stand_list['classes'], variant)
Exemple #10
0
 def setUp(self):
     import_rasters()
     d = os.path.dirname(__file__)
     self.condid_shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
         'testdata', 'test_stands_condid.shp'))
     self.datagz = os.path.abspath(os.path.join(d, '..', 'fixtures',
         'testdata', 'userinventory', 'data.db.gz'))
     self.client = Client()
     self.user = User.objects.create_user(
         'featuretest', '*****@*****.**', password='******')
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
Exemple #11
0
 def test_add_property_to_property(self):
     prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop2 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop1.save()
     prop2.save()
     # This `prop1.add(prop2)` should fail
     self.assertRaises(AssertionError, prop1.add, prop2)
Exemple #12
0
    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.baduser = User.objects.create_user(
            'baduser', '*****@*****.**', password='******')

        self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand2", geometry_orig=g1)
        self.stand2.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)
        enable_sharing()
Exemple #13
0
 def setUp(self):
     self.user = User.objects.create_user(
         'featuretest', '*****@*****.**', password='******')
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
     self.real = FVSVariant.objects.get(code="PN")
     self.other = FVSVariant.objects.get(code="SO")
Exemple #14
0
    def test_jsonlist(self):
        self.client.login(username='******', password='******')
        url = reverse('trees-user_property_list')

        response = self.client.get(url)
        self.assertEqual(response.status_code, 200) 
        plist = loads(response.content)
        self.assertEquals(plist['features'], [])
        self.assertEquals(plist['bbox'], settings.DEFAULT_EXTENT, plist)

        prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        prop1.save()

        response = self.client.get(url)
        self.assertEqual(response.status_code, 200) 
        plist = loads(response.content)
        self.assertEquals(plist['features'][0]['properties']['name'], 'My Property')
Exemple #15
0
    def test_jsonlist(self):
        self.client.login(username='******', password='******')
        url = reverse('trees-user_property_list')

        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        plist = loads(response.content)
        self.assertEquals(plist['features'], [])
        self.assertEquals(plist['bbox'], settings.DEFAULT_EXTENT, plist)

        prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        prop1.save()

        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        plist = loads(response.content)
        self.assertEquals(plist['features'][0]['properties']['name'], 'My Property')
 def setUp(self):
     self.client = Client()
     self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
     self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1)
     self.stand1.save()
     self.stand1.add_to_collection(self.prop1)
    def test_jsonlist(self):
        self.client.login(username="******", password="******")
        url = reverse("trees-user_property_list")

        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        plist = loads(response.content)
        self.assertEquals(plist["features"], [])
        self.assertEquals(plist["bbox"], settings.DEFAULT_EXTENT, plist)

        prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        prop1.save()

        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        plist = loads(response.content)
        self.assertEquals(plist["features"][0]["properties"]["name"], "My Property")
    def setUp(self):
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

        d = os.path.dirname(__file__)
        self.shp_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands.shp"))
        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, forest_property=self.prop1)
 def setUp(self):
     import_rasters()
     d = os.path.dirname(__file__)
     self.condid_shp_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands_condid.shp"))
     self.datagz = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "userinventory", "data.db.gz"))
     self.client = Client()
     self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
def cleanup():
    try:
        owner = User.objects.get(username='******')
    except DoesNotExist:
        owner = False
    try:
        owner2 = User.objects.get(username='******')
    except DoesNotExist:
        owner2 = False
    try:
        manager = User.objects.get(username='******') 
    except DoesNotExist:
        manager = False

    ownerScenarios = Scenario.objects.filter(user=owner)
    for scenario in ownerScenarios:
        for prop in scenario.forestproperty_set.all():
            prop.shared_scenario = None
            prop.save()
        Scenario.delete(scenario)
    owner2Scenarios = Scenario.objects.filter(user=owner2)
    for scenario in owner2Scenarios:
        for prop in scenario.forestproperty_set.all():
            prop.shared_scenario = None
            prop.save()
        Scenario.delete(scenario)

    ownerProperties = ForestProperty.objects.filter(user=owner)
    for fproperty in ownerProperties:
        ForestProperty.delete(fproperty)

    owner2Properties = ForestProperty.objects.filter(user=owner2)
    for fproperty in owner2Properties:
        ForestProperty.delete(fproperty)

    for cgroup in CarbonGroup.objects.filter(user=manager):
        CarbonGroup.delete(cgroup)

    if owner:
        User.delete(owner)
    if owner2:
        User.delete(owner2)
    if manager:
        User.delete(manager)
def cleanup():
    try:
        owner = User.objects.get(username='******')
    except DoesNotExist:
        owner = False
    try:
        owner2 = User.objects.get(username='******')
    except DoesNotExist:
        owner2 = False
    try:
        manager = User.objects.get(username='******')
    except DoesNotExist:
        manager = False

    ownerScenarios = Scenario.objects.filter(user=owner)
    for scenario in ownerScenarios:
        for prop in scenario.forestproperty_set.all():
            prop.shared_scenario = None
            prop.save()
        Scenario.delete(scenario)
    owner2Scenarios = Scenario.objects.filter(user=owner2)
    for scenario in owner2Scenarios:
        for prop in scenario.forestproperty_set.all():
            prop.shared_scenario = None
            prop.save()
        Scenario.delete(scenario)

    ownerProperties = ForestProperty.objects.filter(user=owner)
    for fproperty in ownerProperties:
        ForestProperty.delete(fproperty)

    owner2Properties = ForestProperty.objects.filter(user=owner2)
    for fproperty in owner2Properties:
        ForestProperty.delete(fproperty)

    for cgroup in CarbonGroup.objects.filter(user=manager):
        CarbonGroup.delete(cgroup)

    if owner:
        User.delete(owner)
    if owner2:
        User.delete(owner2)
    if manager:
        User.delete(manager)
Exemple #22
0
class AdjacencyTest(TestCase):
    '''
    Test that stand adjacency can be reliably determined
    self.prop = ForestProperty(..)
    adj = self.prop.adjacency
    # @property method with caching
    # returns what? list or txt or file handle?
    # does it also check for slivers or overlap?

    needs fixture
    '''
    def setUp(self):
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

        d = os.path.dirname(__file__)
        self.shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands.shp'))
        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, forest_property=self.prop1)

    def test_adjacency(self):
        '''
        stand is adjacent to 332, 336, 405 and 412
        using default threshold of 1.0
        '''
        test_stand = Stand.objects.get(name='397')
        adj_stands = [Stand.objects.get(name=str(x)) for x in [332, 336, 405, 412]]
        adj = self.prop1.adjacency()
        for adj_stand in adj_stands:
            self.assertTrue(adj_stand.pk in adj[test_stand.pk])

    def test_adjacency_threshold(self):
        '''
        stand should be within 100 meters of 425 as well
        '''
        test_stand = Stand.objects.get(name='397')
        adj_stands = [Stand.objects.get(name=str(x)) for x in [332, 336, 405, 412, 425]]
        adj = self.prop1.adjacency(100.0)
        for adj_stand in adj_stands:
            self.assertTrue(adj_stand.pk in adj[test_stand.pk])
Exemple #23
0
class AdjacencyTest(TestCase):
    '''
    Test that stand adjacency can be reliably determined
    self.prop = ForestProperty(..)
    adj = self.prop.adjacency 
    # @property method with caching
    # returns what? list or txt or file handle? 
    # does it also check for slivers or overlap? 

    needs fixture
    '''
    def setUp(self):
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

        d = os.path.dirname(__file__)
        self.shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
            'testdata', 'test_stands.shp'))
        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, forest_property=self.prop1) 

    def test_adjacency(self):
        '''
        stand is adjacent to 332, 336, 405 and 412
        using default threshold of 1.0
        '''
        test_stand = Stand.objects.get(name='397')
        adj_stands = [Stand.objects.get(name=str(x)) for x in [332, 336, 405, 412]]
        adj = self.prop1.adjacency()
        for adj_stand in adj_stands:
            self.assertTrue(adj_stand.pk in adj[test_stand.pk])

    def test_adjacency_threshold(self):
        '''
        stand should be within 100 meters of 425 as well
        '''
        test_stand = Stand.objects.get(name='397')
        adj_stands = [Stand.objects.get(name=str(x)) for x in [332, 336, 405, 412, 425]]
        adj = self.prop1.adjacency(100.0)
        for adj_stand in adj_stands:
            self.assertTrue(adj_stand.pk in adj[test_stand.pk])
class VariantTest(TestCase):
    def setUp(self):
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.real = FVSVariant.objects.get(code="PN")
        self.other = FVSVariant.objects.get(code="SO")

    def test_variant(self):
        self.assertEqual(self.prop1.variant, self.real)

    def test_bad_variant(self):
        self.assertEqual(self.prop1.variant, self.real)
        cntr = GEOSGeometry("SRID=3857;POINT(-638474.0 980123.1)")  # not on the map, but close to SO
        g2 = cntr.buffer(75)
        g2.transform(settings.GEOMETRY_DB_SRID)
        p2 = MultiPolygon(g2)
        self.prop1.geometry_final = p2
        self.prop1.save()
        self.assertEqual(self.prop1.variant, self.other)
Exemple #25
0
    def setUp(self):
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

        d = os.path.dirname(__file__)
        self.shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
            'testdata', 'test_stands.shp'))
        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, forest_property=self.prop1) 
Exemple #26
0
 def setUp(self):
     import_rasters()
     d = os.path.dirname(__file__)
     self.shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
         'testdata', 'test_stands.shp'))
     self.bad_shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
         'testdata', 'test_stands_bad.shp'))
     self.client = Client()
     self.user = User.objects.create_user(
         'featuretest', '*****@*****.**', password='******')
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
Exemple #27
0
 def setUp(self):
     self.client = Client()
     import_rasters()
     self.user = User.objects.create_user(
         'featuretest', '*****@*****.**', password='******')
     self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1) 
     self.stand1.save()
     self.stand2 = Stand(user=self.user, name="My Stand2", geometry_orig=g1) 
     self.stand2.save()
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
     self.prop1.add(self.stand1)
class PropertyStandListTest(TestCase):
    """
    test web service to grab json of user's propertie's stands
    [{stand-attrs}, ...]
    """

    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
        self.baduser = User.objects.create_user("baduser", "*****@*****.**", password="******")

        self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand2", geometry_orig=g1)
        self.stand2.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)
        enable_sharing()

    def test_unauth(self):
        link = self.prop1.options.get_link("Property Stands GeoJSON")
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 401)

    def test_notexists(self):
        self.client.login(username="******", password="******")
        link = self.prop1.options.get_link("Property Stands GeoJSON")
        url = link.reverse(self.prop1)
        url = url.replace(self.prop1.uid, "trees_forestproperty_123456789")
        response = self.client.get(url)
        self.assertEqual(response.status_code, 404)

    def test_baduser(self):
        self.client.login(username="******", password="******")
        link = self.prop1.options.get_link("Property Stands GeoJSON")
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 403)

    def test_jsonlist(self):
        self.client.login(username="******", password="******")
        link = self.prop1.options.get_link("Property Stands GeoJSON")
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        stand_list = loads(response.content)
        self.assertEquals(stand_list["features"][0]["properties"]["name"], "My Stand", stand_list)

        self.prop1.add(self.stand2)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        stand_list = loads(response.content)
        names = [stand["properties"]["name"] for stand in stand_list["features"]]
        names.sort()
        expected_names = ["My Stand", "My Stand2"]
        expected_names.sort()
        self.assertEqual(names, expected_names)
 def test_add_property_to_property(self):
     prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop2 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop1.save()
     prop2.save()
     # This `prop1.add(prop2)` should fail
     self.assertRaises(AssertionError, prop1.add, prop2)
class LocationTest(TestCase):
    fixtures = ["test_counties.json"]

    def setUp(self):
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.realloc = ("Curry", "OR")

    def test_location(self):
        self.assertEqual(len(County.objects.all()), 2, "Counties fixture didn't load properly!")
        self.assertEqual(self.prop1.location, self.realloc)

    def test_bad_location(self):
        self.assertEqual(self.prop1.location, self.realloc)
        cntr = GEOSGeometry("SRID=3857;POINT(-638474.0 980123.1)")  # not on the map
        g2 = cntr.buffer(75)
        g2.transform(settings.GEOMETRY_DB_SRID)
        p2 = MultiPolygon(g2)
        self.prop1.geometry_final = p2
        self.prop1.save()
        self.assertEqual(self.prop1.location, (None, None))
Exemple #31
0
class VariantTest(TestCase):

    def setUp(self):
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.real = FVSVariant.objects.get(code="PN")
        self.other = FVSVariant.objects.get(code="SO")

    def test_variant(self):
        self.assertEqual(self.prop1.variant, self.real)

    def test_bad_variant(self):
        self.assertEqual(self.prop1.variant, self.real)
        cntr = GEOSGeometry('SRID=3857;POINT(-638474.0 980123.1)')  # not on the map, but close to SO
        g2 = cntr.buffer(75)
        g2.transform(settings.GEOMETRY_DB_SRID)
        p2 = MultiPolygon(g2)
        self.prop1.geometry_final = p2
        self.prop1.save()
        self.assertEqual(self.prop1.variant, self.other)
Exemple #32
0
class LocationTest(TestCase):
    fixtures = ['test_counties.json',]

    def setUp(self):
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.realloc = ("Curry", "OR")

    def test_location(self):
        self.assertEqual(len(County.objects.all()), 2, "Counties fixture didn't load properly!")
        self.assertEqual(self.prop1.location, self.realloc)

    def test_bad_location(self):
        self.assertEqual(self.prop1.location, self.realloc)
        cntr = GEOSGeometry('SRID=3857;POINT(-638474.0 980123.1)') # not on the map
        g2 = cntr.buffer(75)
        g2.transform(settings.GEOMETRY_DB_SRID)
        p2 = MultiPolygon(g2)
        self.prop1.geometry_final = p2
        self.prop1.save()
        self.assertEqual(self.prop1.location, (None, None))
    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
        self.baduser = User.objects.create_user("baduser", "*****@*****.**", password="******")

        self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand2", geometry_orig=g1)
        self.stand2.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)
        enable_sharing()
Exemple #34
0
    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')

        self.stand1 = Stand(user=self.user, name="My Stand 1", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand 2", geometry_orig=g1)
        self.stand2.save()
        self.stand3 = Stand(user=self.user, name="My Stand 3 (not on property)", geometry_orig=g1)
        self.stand3.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)
        self.prop1.add(self.stand2)

        self.options = Scenario.get_options()
        self.create_url = self.options.get_create_form()

        self.rx1 = Rx.objects.get(internal_name=self.prop1.variant.code + "1").id
        self.rx2 = Rx.objects.get(internal_name=self.prop1.variant.code + "2").id

        enable_sharing()
Exemple #35
0
 def test_json_results(self):
     s1 = Scenario(user=self.user, name="My Scenario", 
             input_target_boardfeet=2000,
             input_target_carbon=1,
             input_property=self.prop1,
             input_rxs={self.stand1.pk: self.rx1, self.stand2.pk: self.rx2},
          )
     s1.save()
     geojson_link = ForestProperty.get_options().get_link('Property Scenarios')
     url = geojson_link.reverse(self.prop1)
     # not logged in yet
     response = self.client.get(url)
     self.assertEqual(response.status_code, 401, response.content)
     # now we log in
     self.client.login(username='******', password='******')
     response = self.client.get(url)
     self.assertEqual(response.status_code, 200, response.content)
Exemple #36
0
 def test_json_results(self):
     s1 = Scenario(user=self.user, name="My Scenario",
             input_target_boardfeet=2000,
             input_target_carbon=1,
             input_property=self.prop1,
             input_rxs={self.stand1.pk: self.rx1, self.stand2.pk: self.rx2},
          )
     s1.save()
     geojson_link = ForestProperty.get_options().get_link('Property Scenarios')
     url = geojson_link.reverse(self.prop1)
     # not logged in yet
     response = self.client.get(url)
     self.assertEqual(response.status_code, 401, response.content)
     # now we log in
     self.client.login(username='******', password='******')
     response = self.client.get(url)
     self.assertEqual(response.status_code, 200, response.content)
    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")

        self.stand1 = Stand(user=self.user, name="My Stand 1", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand 2", geometry_orig=g1)
        self.stand2.save()
        self.stand3 = Stand(user=self.user, name="My Stand 3 (not on property)", geometry_orig=g1)
        self.stand3.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)
        self.prop1.add(self.stand2)

        self.options = Scenario.get_options()
        self.create_url = self.options.get_create_form()

        self.rx1 = Rx.objects.get(internal_name=self.prop1.variant.code + "1").id
        self.rx2 = Rx.objects.get(internal_name=self.prop1.variant.code + "2").id

        enable_sharing()
class ScenarioTest(TestCase):
    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")

        self.stand1 = Stand(user=self.user, name="My Stand 1", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand 2", geometry_orig=g1)
        self.stand2.save()
        self.stand3 = Stand(user=self.user, name="My Stand 3 (not on property)", geometry_orig=g1)
        self.stand3.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)
        self.prop1.add(self.stand2)

        self.options = Scenario.get_options()
        self.create_url = self.options.get_create_form()

        self.rx1 = Rx.objects.get(internal_name=self.prop1.variant.code + "1").id
        self.rx2 = Rx.objects.get(internal_name=self.prop1.variant.code + "2").id

        enable_sharing()

    def test_create_scenario(self):
        s1 = Scenario(
            user=self.user,
            name="My Scenario",
            input_target_boardfeet=2000,
            input_target_carbon=1,
            input_property=self.prop1,
            input_rxs={self.stand1.pk: self.rx1, self.stand2.pk: self.rx2},
        )
        s1.save()
        self.assertEquals(Scenario.objects.get(name="My Scenario").input_target_boardfeet, 2000.0)

    def test_scenario_results(self):
        s1 = Scenario(
            user=self.user,
            name="My Scenario",
            input_target_boardfeet=2000,
            input_target_carbon=1,
            input_property=self.prop1,
            input_rxs={self.stand1.pk: self.rx1, self.stand2.pk: self.rx2},
        )
        s1.save()
        out = s1.output_property_metrics
        self.assertTrue(out.has_key("__all__"))
        # TODO out = s1.output_stand_metrics

    def test_post(self):
        self.client.login(username="******", password="******")
        response = self.client.post(
            self.create_url,
            {
                "name": "My Scenario",
                "input_target_boardfeet": 2000,
                "input_target_carbon": 1,
                "input_age_class": 1,
                "input_site_diversity": 1,
                "input_property": self.prop1.pk,
                "input_rxs": dumps({self.stand1.pk: self.rx1, self.stand2.pk: self.rx2}),
            },
        )
        self.assertEqual(response.status_code, 201)

    def test_post_invalid_rx(self):
        self.client.login(username="******", password="******")
        response = self.client.post(
            self.create_url,
            {
                "name": "My Scenario",
                "input_target_boardfeet": 2000,
                "input_target_carbon": 1,
                "input_age_class": 1,
                "input_site_diversity": 1,
                "input_property": self.prop1.pk,
                "input_rxs": dumps({self.stand1.pk: 9879898, self.stand2.pk: self.rx2}),
            },
        )
        self.assertEqual(response.status_code, 400, response.content)

    def test_post_invalid_stand(self):
        self.client.login(username="******", password="******")
        response = self.client.post(
            self.create_url,
            {
                "name": "My Scenario",
                "input_target_boardfeet": 2000,
                "input_target_carbon": 1,
                "input_age_class": 1,
                "input_site_diversity": 1,
                "input_property": self.prop1.pk,
                "input_rxs": dumps({self.stand3.pk: self.rx1, self.stand2.pk: self.rx2}),
            },
        )
        self.assertEqual(response.status_code, 400, response.content)

    def test_json_results(self):
        s1 = Scenario(
            user=self.user,
            name="My Scenario",
            input_target_boardfeet=2000,
            input_target_carbon=1,
            input_property=self.prop1,
            input_rxs={self.stand1.pk: self.rx1, self.stand2.pk: self.rx2},
        )
        s1.save()
        geojson_link = ForestProperty.get_options().get_link("Property Scenarios")
        url = geojson_link.reverse(self.prop1)
        # not logged in yet
        response = self.client.get(url)
        self.assertEqual(response.status_code, 401, response.content)
        # now we log in
        self.client.login(username="******", password="******")
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200, response.content)
class StandImportTest(TestCase):
    def setUp(self):
        import_rasters()
        d = os.path.dirname(__file__)
        self.shp_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands.shp"))
        self.bad_shp_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands_bad.shp"))
        self.condid_shp_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands_condid.shp"))
        self.client = Client()
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

    def test_shps_exists(self):
        self.assertTrue(os.path.exists(self.shp_path), self.shp_path)
        self.assertTrue(os.path.exists(self.bad_shp_path), self.bad_shp_path)
        self.assertTrue(os.path.exists(self.condid_shp_path), self.condid_shp_path)

    def test_importer_py(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        self.assertEqual(len(self.prop1.feature_set()), 0)

        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, forest_property=self.prop1)

        self.assertEqual(len(Stand.objects.all()), 37)
        # from the default 'name' field this time
        self.assertEqual(len(Stand.objects.filter(name="001A")), 0)
        self.assertEqual(len(Stand.objects.filter(name="277")), 1)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_py_newproperty(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        self.assertEqual(len(self.prop1.feature_set()), 0)

        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, new_property_name="Another Property")

        self.assertEqual(len(Stand.objects.all()), 37)
        # from the default 'name' field this time
        self.assertEqual(len(Stand.objects.filter(name="001A")), 0)
        self.assertEqual(len(Stand.objects.filter(name="277")), 1)
        self.assertEqual(len(self.prop1.feature_set()), 0)
        new_stand = ForestProperty.objects.get(name="Another Property")
        self.assertEqual(len(new_stand.feature_set()), 37)

    def test_importer_py_fieldmap(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        self.assertEqual(len(self.prop1.feature_set()), 0)

        s = StandImporter(self.user)
        field_mapping = {"name": "STAND_TEXT"}
        s.import_ogr(self.shp_path, field_mapping, forest_property=self.prop1)

        self.assertEqual(len(Stand.objects.all()), 37)
        # from the 'STAND_TEXT' field this time
        self.assertEqual(len(Stand.objects.filter(name="001A")), 1)
        self.assertEqual(len(Stand.objects.filter(name="277")), 0)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_multi(self):
        """
        Test for handling of multipart polygons
        """
        d = os.path.dirname(__file__)
        multi_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands_multi.zip"))
        url = reverse("trees-upload_stands")
        self.client.login(username="******", password="******")

        with open(multi_path) as f:
            response = self.client.post(url, {"new_property_name": "Test Multi", "ogrfile": f})
        self.assertEqual(response.status_code, 201, response.content)
        self.assertEqual(len(Stand.objects.all()), 27)
        prop = ForestProperty.objects.get(name="Test Multi")
        self.assertEqual(len(prop.geometry_final), 2)

    def test_importer_holes(self):
        """
        Test for handling of slivers
        """
        d = os.path.dirname(__file__)
        holes_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands_holes.zip"))
        url = reverse("trees-upload_stands")
        self.client.login(username="******", password="******")

        # With default threshold, the "sliver" should not show up
        with open(holes_path) as f:
            response = self.client.post(url, {"new_property_name": "holes", "ogrfile": f})
        self.assertEqual(response.status_code, 201, response.content)
        self.assertEqual(len(Stand.objects.all()), 35)
        prop = ForestProperty.objects.get(name="holes")
        self.assertEqual(prop.geometry_final[0].num_interior_rings, 1)

        # Now try it with a tighter tolerance, the "sliver" should show up as another interior ring
        Stand.objects.all().delete()
        settings.SLIVER_THRESHOLD = 1.0
        with open(holes_path) as f:
            response = self.client.post(url, {"new_property_name": "holes2", "ogrfile": f})
        self.assertEqual(response.status_code, 201, response.content)
        self.assertEqual(len(Stand.objects.all()), 35)
        prop2 = ForestProperty.objects.get(name="holes2")
        self.assertEqual(prop2.geometry_final[0].num_interior_rings, 2)

    def test_importer_http(self):
        self.client.login(username="******", password="******")
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands.zip"))
        f = open(ogr_path)
        url = reverse("trees-upload_stands")
        response = self.client.post(url, {"property_pk": self.prop1.pk, "ogrfile": f})
        f.close()
        self.assertEqual(response.status_code, 201, response.content)
        self.assertNotEqual(response.content.find("X-Madrona-Select"), -1, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_http_unauth(self):
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands.zip"))
        f = open(ogr_path)
        url = reverse("trees-upload_stands")
        response = self.client.post(url, {"property_pk": self.prop1.pk, "ogrfile": f})
        f.close()
        self.assertEqual(response.status_code, 401)
        self.assertEqual(len(self.prop1.feature_set()), 0)

    def test_importer_http_noname(self):
        self.client.login(username="******", password="******")
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands_noname.zip"))
        f = open(ogr_path)
        url = reverse("trees-upload_stands")
        response = self.client.post(url, {"property_pk": self.prop1.pk, "ogrfile": f})
        f.close()
        self.assertEqual(response.status_code, 201, response.content)
        self.assertNotEqual(response.content.find("X-Madrona-Select"), -1, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_http_badproperty(self):
        """
        If no property is found belonging to the user, should get a 404
        """
        self.client.login(username="******", password="******")
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands_bad.zip"))
        f = open(ogr_path)
        url = reverse("trees-upload_stands")
        response = self.client.post(url, {"property_pk": 8675309, "ogrfile": f})
        f.close()
        self.assertEqual(response.status_code, 404, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 0)

    def test_importer_http_newproperty(self):
        """
        If no property is found belonging to the user, should get a 404
        """
        self.client.login(username="******", password="******")
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands.zip"))
        f = open(ogr_path)
        url = reverse("trees-upload_stands")
        response = self.client.post(url, {"new_property_name": "Another Property", "ogrfile": f})
        f.close()
        self.assertEqual(response.status_code, 201, response.content)
        self.assertNotEqual(response.content.find("X-Madrona-Select"), -1, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 0)
        new_stand = ForestProperty.objects.get(name="Another Property")
        self.assertEqual(len(new_stand.feature_set()), 37)
Exemple #40
0
class StandImportTest(TestCase):
    def setUp(self):
        import_rasters()
        d = os.path.dirname(__file__)
        self.shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands.shp'))
        self.bad_shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands_bad.shp'))
        self.condid_shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands_condid.shp'))
        self.client = Client()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

    def test_shps_exists(self):
        self.assertTrue(os.path.exists(self.shp_path), self.shp_path)
        self.assertTrue(os.path.exists(self.bad_shp_path), self.bad_shp_path)
        self.assertTrue(os.path.exists(self.condid_shp_path), self.condid_shp_path)

    def test_importer_py(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        self.assertEqual(len(self.prop1.feature_set()), 0)

        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, forest_property=self.prop1)

        self.assertEqual(len(Stand.objects.all()), 37)
        # from the default 'name' field this time
        self.assertEqual(len(Stand.objects.filter(name='001A')), 0)
        self.assertEqual(len(Stand.objects.filter(name='277')), 1)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_py_newproperty(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        self.assertEqual(len(self.prop1.feature_set()), 0)

        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, new_property_name="Another Property")

        self.assertEqual(len(Stand.objects.all()), 37)
        # from the default 'name' field this time
        self.assertEqual(len(Stand.objects.filter(name='001A')), 0)
        self.assertEqual(len(Stand.objects.filter(name='277')), 1)
        self.assertEqual(len(self.prop1.feature_set()), 0)
        new_stand = ForestProperty.objects.get(name="Another Property")
        self.assertEqual(len(new_stand.feature_set()), 37)

    def test_importer_py_fieldmap(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        self.assertEqual(len(self.prop1.feature_set()), 0)

        s = StandImporter(self.user)
        field_mapping = {'name': 'STAND_TEXT'}
        s.import_ogr(self.shp_path, field_mapping, forest_property=self.prop1)

        self.assertEqual(len(Stand.objects.all()), 37)
        # from the 'STAND_TEXT' field this time
        self.assertEqual(len(Stand.objects.filter(name='001A')), 1)
        self.assertEqual(len(Stand.objects.filter(name='277')), 0)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_multi(self):
        '''
        Test for handling of multipart polygons
        '''
        d = os.path.dirname(__file__)
        multi_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 'testdata', 'test_stands_multi.zip'))
        url = reverse('trees-upload_stands')
        self.client.login(username='******', password='******')

        with open(multi_path) as f:
            response = self.client.post(url, {'new_property_name': 'Test Multi', 'ogrfile': f})
        self.assertEqual(response.status_code, 201, response.content)
        self.assertEqual(len(Stand.objects.all()), 27)
        prop = ForestProperty.objects.get(name="Test Multi")
        self.assertEqual(len(prop.geometry_final), 2)

    def test_importer_holes(self):
        '''
        Test for handling of slivers
        '''
        d = os.path.dirname(__file__)
        holes_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 'testdata', 'test_stands_holes.zip'))
        url = reverse('trees-upload_stands')
        self.client.login(username='******', password='******')

        # With default threshold, the "sliver" should not show up
        with open(holes_path) as f:
            response = self.client.post(url, {'new_property_name': 'holes', 'ogrfile': f})
        self.assertEqual(response.status_code, 201, response.content)
        self.assertEqual(len(Stand.objects.all()), 35)
        prop = ForestProperty.objects.get(name="holes")
        self.assertEqual(prop.geometry_final[0].num_interior_rings, 1)

        # Now try it with a tighter tolerance, the "sliver" should show up as another interior ring
        Stand.objects.all().delete()
        settings.SLIVER_THRESHOLD = 1.0
        with open(holes_path) as f:
            response = self.client.post(url, {'new_property_name': 'holes2', 'ogrfile': f})
        self.assertEqual(response.status_code, 201, response.content)
        self.assertEqual(len(Stand.objects.all()), 35)
        prop2 = ForestProperty.objects.get(name="holes2")
        self.assertEqual(prop2.geometry_final[0].num_interior_rings, 2)

    def test_importer_http(self):
        self.client.login(username='******', password='******')
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'property_pk': self.prop1.pk, 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 201, response.content)
        self.assertNotEqual(response.content.find('X-Madrona-Select'), -1, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_http_unauth(self):
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'property_pk': self.prop1.pk, 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 401)
        self.assertEqual(len(self.prop1.feature_set()), 0)

    def test_importer_http_noname(self):
        self.client.login(username='******', password='******')
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands_noname.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'property_pk': self.prop1.pk, 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 201, response.content)
        self.assertNotEqual(response.content.find('X-Madrona-Select'), -1, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_http_badproperty(self):
        '''
        If no property is found belonging to the user, should get a 404
        '''
        self.client.login(username='******', password='******')
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands_bad.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'property_pk': 8675309, 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 404, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 0)

    def test_importer_http_newproperty(self):
        '''
        If no property is found belonging to the user, should get a 404
        '''
        self.client.login(username='******', password='******')
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'new_property_name': 'Another Property', 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 201, response.content)
        self.assertNotEqual(response.content.find('X-Madrona-Select'), -1, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 0)
        new_stand = ForestProperty.objects.get(name="Another Property")
        self.assertEqual(len(new_stand.feature_set()), 37)
 def test_property_bbox(self):
     prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop1.save()
     self.assertEqual(prop1.bbox, p1.extent)
 def setUp(self):
     self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
     self.realloc = ("Curry", "OR")
 def test_create_property(self):
     prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop1.save()
Exemple #44
0
class SpatialTest(TestCase):
    '''
    Tests the spatial representations of Stands and ForestProperties
    '''

    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand2", geometry_orig=g1)
        self.stand2.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)

    def test_rest_defaultkml_url(self):
        self.client.login(username='******', password='******')
        link = self.stand1.options.get_link('KML')
        url = link.reverse(self.stand1)
        response = self.client.get(url)
        errors = kml_errors(response.content)
        self.assertFalse(errors,"invalid KML %s" % str(errors))

    def test_stand_json(self):
        thejson = self.stand1.geojson()
        d = loads(thejson)
        self.assertEquals(d['properties']['name'], 'My Stand')

    def test_property_json(self):
        thejson = self.prop1.feature_set_geojson()
        d = loads(thejson)
        self.assertEquals(len(d['features']), 1)
        self.assertEquals(d['features'][0]['properties']['name'], 'My Stand')
        self.prop1.add(self.stand2)
        thejson = self.prop1.feature_set_geojson()
        d = loads(thejson)
        self.assertEquals(len(d['features']), 2)

    def test_property_bbox(self):
        thejson = self.prop1.feature_set_geojson()
        d = loads(thejson)
        for x, y in zip(d['bbox'], self.prop1.bbox):
            self.assertAlmostEquals(x, y, places=5)

    def test_stand_json_url(self):
        self.client.login(username='******', password='******')
        link = self.stand1.options.get_link('GeoJSON')
        url = link.reverse(self.stand1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        self.assertTrue('application/json' in response['Content-Type'])
        d = loads(response.content)
        self.assertEquals(d['features'][0]['properties']['name'], 'My Stand')

    def test_property_json_url(self):
        self.client.login(username='******', password='******')
        link = self.stand1.options.get_link('GeoJSON')
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        self.assertTrue('application/json' in response['Content-Type'])
        d = loads(response.content)
        self.assertEquals(d['features'][0]['properties']['name'], 'My Property')

    def test_multistand_json_url(self):
        self.client.login(username='******', password='******')
        uids = [self.stand1.uid, self.stand2.uid]
        link = Stand.get_options().get_link('GeoJSON')
        url = link.reverse([self.stand1, self.stand2])
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        self.assertTrue('application/json' in response['Content-Type'])
        d = loads(response.content)
        self.assertEquals(len(d['features']), 2)
        foundit = False
        for f in d['features']:
            if f['properties']['name'] == 'My Stand2':
                foundit = True
        self.assertTrue(foundit)

    def test_property_stands_json_url(self):
        self.prop1.add(self.stand2)
        self.client.login(username='******', password='******')
        link = self.prop1.options.get_link('Property Stands GeoJSON')
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200, response)
        self.assertTrue('application/json' in response['Content-Type'])
        d = loads(response.content)
        self.assertEquals(len(d['features']), 2)
        foundit = False
        for f in d['features']:
            if f['properties']['name'] == 'My Stand2':
                foundit = True
        self.assertTrue(foundit)
Exemple #45
0
 def test_property_bbox(self):
     prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop1.save()
     self.assertEqual(prop1.bbox, p1.extent)
Exemple #46
0
class ScenarioTest(TestCase):

    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')

        self.stand1 = Stand(user=self.user, name="My Stand 1", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand 2", geometry_orig=g1)
        self.stand2.save()
        self.stand3 = Stand(user=self.user, name="My Stand 3 (not on property)", geometry_orig=g1)
        self.stand3.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)
        self.prop1.add(self.stand2)

        self.options = Scenario.get_options()
        self.create_url = self.options.get_create_form()

        self.rx1 = Rx.objects.get(internal_name=self.prop1.variant.code + "1").id
        self.rx2 = Rx.objects.get(internal_name=self.prop1.variant.code + "2").id

        enable_sharing()

    def test_create_scenario(self):
        s1 = Scenario(user=self.user, name="My Scenario",
                input_target_boardfeet=2000,
                input_target_carbon=1,
                input_property=self.prop1,
                input_rxs={self.stand1.pk: self.rx1, self.stand2.pk: self.rx2},
             )
        s1.save()
        self.assertEquals(Scenario.objects.get(name="My Scenario").input_target_boardfeet, 2000.0)

    def test_scenario_results(self):
        s1 = Scenario(user=self.user, name="My Scenario",
                input_target_boardfeet=2000,
                input_target_carbon=1,
                input_property=self.prop1,
                input_rxs={self.stand1.pk: self.rx1, self.stand2.pk: self.rx2},
             )
        s1.save()
        out = s1.output_property_metrics
        self.assertTrue(out.has_key("__all__"))
        # TODO out = s1.output_stand_metrics

    def test_post(self):
        self.client.login(username='******', password='******')
        response = self.client.post(self.create_url, {
            'name': "My Scenario",
            'input_target_boardfeet': 2000,
            'input_target_carbon': 1,
            'input_age_class': 1,
            'input_site_diversity': 1,
            'input_property': self.prop1.pk,
            'input_rxs': dumps({self.stand1.pk: self.rx1, self.stand2.pk: self.rx2}),
        })
        self.assertEqual(response.status_code, 201)

    def test_post_invalid_rx(self):
        self.client.login(username='******', password='******')
        response = self.client.post(self.create_url, {
            'name': "My Scenario",
            'input_target_boardfeet': 2000,
            'input_target_carbon': 1,
            'input_age_class': 1,
            'input_site_diversity': 1,
            'input_property': self.prop1.pk,
            'input_rxs': dumps({self.stand1.pk: 9879898, self.stand2.pk: self.rx2}),
        })
        self.assertEqual(response.status_code, 400, response.content)

    def test_post_invalid_stand(self):
        self.client.login(username='******', password='******')
        response = self.client.post(self.create_url, {
            'name': "My Scenario",
            'input_target_boardfeet': 2000,
            'input_target_carbon': 1,
            'input_age_class': 1,
            'input_site_diversity': 1,
            'input_property': self.prop1.pk,
            'input_rxs': dumps({self.stand3.pk: self.rx1, self.stand2.pk: self.rx2}),
        })
        self.assertEqual(response.status_code, 400, response.content)

    def test_json_results(self):
        s1 = Scenario(user=self.user, name="My Scenario",
                input_target_boardfeet=2000,
                input_target_carbon=1,
                input_property=self.prop1,
                input_rxs={self.stand1.pk: self.rx1, self.stand2.pk: self.rx2},
             )
        s1.save()
        geojson_link = ForestProperty.get_options().get_link('Property Scenarios')
        url = geojson_link.reverse(self.prop1)
        # not logged in yet
        response = self.client.get(url)
        self.assertEqual(response.status_code, 401, response.content)
        # now we log in
        self.client.login(username='******', password='******')
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200, response.content)
Exemple #47
0
class StandImportTest(TestCase):
    '''
    TODO test bad shapefiles (other geom types, bad mapping dict, projection)
    TODO assert that mapped attributes are populated
    TODO strata from shp
    '''
    def setUp(self):
        import_rasters()
        d = os.path.dirname(__file__)
        self.shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
            'testdata', 'test_stands.shp'))
        self.bad_shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
            'testdata', 'test_stands_bad.shp'))
        self.client = Client()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

    def test_shp_exists(self):
        self.assertTrue(os.path.exists(self.shp_path), self.shp_path)

    def test_importer_py(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        self.assertEqual(len(self.prop1.feature_set()), 0)

        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, forest_property=self.prop1) 

        self.assertEqual(len(Stand.objects.all()), 37)
        # from the default 'name' field this time
        self.assertEqual(len(Stand.objects.filter(name='001A')), 0) 
        self.assertEqual(len(Stand.objects.filter(name='277')), 1) 
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_py_newproperty(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        self.assertEqual(len(self.prop1.feature_set()), 0)

        s = StandImporter(self.user)
        s.import_ogr(self.shp_path, new_property_name="Another Property") 

        self.assertEqual(len(Stand.objects.all()), 37)
        # from the default 'name' field this time
        self.assertEqual(len(Stand.objects.filter(name='001A')), 0) 
        self.assertEqual(len(Stand.objects.filter(name='277')), 1) 
        self.assertEqual(len(self.prop1.feature_set()), 0)
        new_stand = ForestProperty.objects.get(name="Another Property")
        self.assertEqual(len(new_stand.feature_set()), 37)

    def test_importer_py_fieldmap(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        self.assertEqual(len(self.prop1.feature_set()), 0)

        s = StandImporter(self.user)
        field_mapping = {'name': 'STAND_TEXT'}
        s.import_ogr(self.shp_path, field_mapping, forest_property=self.prop1) 

        self.assertEqual(len(Stand.objects.all()), 37)
        # from the 'STAND_TEXT' field this time
        self.assertEqual(len(Stand.objects.filter(name='001A')), 1) 
        self.assertEqual(len(Stand.objects.filter(name='277')), 0) 
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_multi(self):
        '''
        Test for handling of multipart polygons
        '''
        d = os.path.dirname(__file__)
        multi_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 'testdata', 'test_stands_multi.zip'))
        url = reverse('trees-upload_stands')
        self.client.login(username='******', password='******')

        with open(multi_path) as f:
            response = self.client.post(url, {'new_property_name': 'Test Multi', 'ogrfile': f})
        self.assertEqual(response.status_code, 201, response.content)
        self.assertEqual(len(Stand.objects.all()), 27)
        prop = ForestProperty.objects.get(name="Test Multi")
        self.assertEqual(len(prop.geometry_final), 2)

    def test_importer_holes(self):
        '''
        Test for handling of slivers
        '''
        d = os.path.dirname(__file__)
        holes_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 'testdata', 'test_stands_holes.zip'))
        url = reverse('trees-upload_stands')
        self.client.login(username='******', password='******')

        # With default threshold, the "sliver" should not show up
        with open(holes_path) as f:
            response = self.client.post(url, {'new_property_name': 'holes', 'ogrfile': f})
        self.assertEqual(response.status_code, 201, response.content)
        self.assertEqual(len(Stand.objects.all()), 35)
        prop = ForestProperty.objects.get(name="holes")
        self.assertEqual(prop.geometry_final[0].num_interior_rings, 1)

        # Now try it with a tighter tolerance, the "sliver" should show up as another interior ring
        Stand.objects.all().delete()
        settings.SLIVER_THRESHOLD = 1.0
        with open(holes_path) as f:
            response = self.client.post(url, {'new_property_name': 'holes2', 'ogrfile': f})
        self.assertEqual(response.status_code, 201, response.content)
        self.assertEqual(len(Stand.objects.all()), 35)
        prop2 = ForestProperty.objects.get(name="holes2")
        self.assertEqual(prop2.geometry_final[0].num_interior_rings, 2)

    def test_importer_http(self):
        self.client.login(username='******', password='******')
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
            'testdata', 'test_stands.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'property_pk': self.prop1.pk, 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 201, response.content)
        self.assertNotEqual(response.content.find('X-Madrona-Select'), -1, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_http_unauth(self):
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
            'testdata', 'test_stands.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'property_pk': self.prop1.pk, 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 401)
        self.assertEqual(len(self.prop1.feature_set()), 0)

    def test_importer_http_noname(self):
        self.client.login(username='******', password='******')
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
            'testdata', 'test_stands_noname.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'property_pk': self.prop1.pk, 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 201, response.content)
        self.assertNotEqual(response.content.find('X-Madrona-Select'), -1, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 37)

    def test_importer_http_badproperty(self):
        '''
        If no property is found belonging to the user, should get a 404
        '''
        self.client.login(username='******', password='******')
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
            'testdata', 'test_stands_bad.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'property_pk': 8675309, 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 404, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 0)

    def test_importer_http_newproperty(self):
        '''
        If no property is found belonging to the user, should get a 404
        '''
        self.client.login(username='******', password='******')
        self.assertEqual(len(self.prop1.feature_set()), 0)
        d = os.path.dirname(__file__)
        ogr_path = os.path.abspath(os.path.join(d, '..', 'fixtures', 
            'testdata', 'test_stands.zip'))
        f = open(ogr_path)
        url = reverse('trees-upload_stands')
        response = self.client.post(url, {'new_property_name': 'Another Property', 'ogrfile': f})
        f.close()
        self.assertEqual(response.status_code, 201, response.content)
        self.assertNotEqual(response.content.find('X-Madrona-Select'), -1, response.content)
        self.assertEqual(len(self.prop1.feature_set()), 0)
        new_stand = ForestProperty.objects.get(name="Another Property")
        self.assertEqual(len(new_stand.feature_set()), 37)
class UserInventoryTest(TestCase):
    def setUp(self):
        import_rasters()
        d = os.path.dirname(__file__)
        self.condid_shp_path = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "test_stands_condid.shp"))
        self.datagz = os.path.abspath(os.path.join(d, "..", "fixtures", "testdata", "userinventory", "data.db.gz"))
        self.client = Client()
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

    def _populate_fvsaggregate(self):
        # Just fake it for now; faster than importing full test gyb dataset
        # this is sufficient so long as FVSAggregate.valid_condids() says so
        condids = (9820, 11307, 11311, 34157)
        for condid in condids:
            FVSAggregate.objects.create(cond=condid, offset=0, year=2013, age=32, var="PN", rx=1, site=2, start_tpa=231)

    def test_importer_badcondid(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        s = StandImporter(self.user)
        with self.assertRaises(Exception):
            # haven't populated the fvsaggregate table so upload is invalid
            s.import_ogr(self.condid_shp_path, new_property_name="Locked Property")

    def test_importer_condid(self):
        self.assertEqual(len(Stand.objects.all()), 0)

        self._populate_fvsaggregate()
        s = StandImporter(self.user)
        s.import_ogr(self.condid_shp_path, new_property_name="Locked Property")

        new_property = ForestProperty.objects.get(name="Locked Property")
        self.assertEqual(len(new_property.feature_set(feature_classes=[Stand])), 37)
        self.assertEqual(len([x for x in new_property.feature_set(feature_classes=[Stand]) if x.is_locked]), 37)
        self.assertEqual(len([x for x in new_property.feature_set(feature_classes=[Stand]) if x.cond_id is None]), 0)
        self.assertEqual(
            len([x for x in new_property.feature_set(feature_classes=[Stand]) if x.cond_id != x.locked_cond_id]), 0
        )
        self.assertTrue(new_property.is_locked)

        self.assertEqual(len([x for x in new_property.feature_set(feature_classes=[Stand]) if x.strata is None]), 0)
        self.assertEqual(len(Strata.objects.all()), 4)

    def _extract_gz(self, zipfile):
        tmpfile = "/tmp/forestplanner_test_data.db"
        with open(tmpfile, "wb") as tmp:
            shutil.copyfileobj(gzip.open(zipfile), tmp)
        return tmpfile

    def test_import_gyb(self):
        tmpdata_db = self._extract_gz(self.datagz)
        call_command("import_gyb", tmpdata_db, verbosity=2, interactive=False)

    def test_importer_preimpute(self):
        self.assertEqual(len(Stand.objects.all()), 0)

        self._populate_fvsaggregate()

        s = StandImporter(self.user)
        s.import_ogr(self.condid_shp_path, new_property_name="Locked Property", pre_impute=True)

        new_property = ForestProperty.objects.get(name="Locked Property")
        self.assertEqual(len(new_property.feature_set(feature_classes=[Stand])), 37)

    def test_condid_strata(self):
        from trees.utils import condid_strata

        self._populate_fvsaggregate()

        st = condid_strata(9820)
        self.assertEqual(st["search_tpa"], 231)
        self.assertEqual(st["search_age"], 32)
Exemple #49
0
class PropertyStandListTest(TestCase):
    '''
    test web service to grab json of user's propertie's stands
    [{stand-attrs}, ...]
    '''

    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.baduser = User.objects.create_user(
            'baduser', '*****@*****.**', password='******')

        self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand2", geometry_orig=g1)
        self.stand2.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)
        enable_sharing()

    def test_unauth(self):
        link = self.prop1.options.get_link('Property Stands GeoJSON')
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 401)

    def test_notexists(self):
        self.client.login(username='******', password='******')
        link = self.prop1.options.get_link('Property Stands GeoJSON')
        url = link.reverse(self.prop1)
        url = url.replace(self.prop1.uid, 'trees_forestproperty_123456789')
        response = self.client.get(url)
        self.assertEqual(response.status_code, 404)

    def test_baduser(self):
        self.client.login(username='******', password='******')
        link = self.prop1.options.get_link('Property Stands GeoJSON')
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 403)

    def test_jsonlist(self):
        self.client.login(username='******', password='******')
        link = self.prop1.options.get_link('Property Stands GeoJSON')
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        stand_list = loads(response.content)
        self.assertEquals(stand_list['features'][0]['properties']['name'], 'My Stand', stand_list)

        self.prop1.add(self.stand2)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        stand_list = loads(response.content)
        names = [stand['properties']['name'] for stand in stand_list['features']]
        names.sort()
        expected_names = ['My Stand', 'My Stand2']
        expected_names.sort()
        self.assertEqual(names, expected_names)
class SpatialTest(TestCase):
    """
    Tests the spatial representations of Stands and ForestProperties
    """

    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user("featuretest", "*****@*****.**", password="******")
        self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1)
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand2", geometry_orig=g1)
        self.stand2.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)

    def test_rest_defaultkml_url(self):
        self.client.login(username="******", password="******")
        link = self.stand1.options.get_link("KML")
        url = link.reverse(self.stand1)
        response = self.client.get(url)
        errors = kml_errors(response.content)
        self.assertFalse(errors, "invalid KML %s" % str(errors))

    def test_stand_json(self):
        thejson = self.stand1.geojson()
        d = loads(thejson)
        self.assertEquals(d["properties"]["name"], "My Stand")

    def test_property_json(self):
        thejson = self.prop1.feature_set_geojson()
        d = loads(thejson)
        self.assertEquals(len(d["features"]), 1)
        self.assertEquals(d["features"][0]["properties"]["name"], "My Stand")
        self.prop1.add(self.stand2)
        thejson = self.prop1.feature_set_geojson()
        d = loads(thejson)
        self.assertEquals(len(d["features"]), 2)

    def test_property_bbox(self):
        thejson = self.prop1.feature_set_geojson()
        d = loads(thejson)
        for x, y in zip(d["bbox"], self.prop1.bbox):
            self.assertAlmostEquals(x, y, places=5)

    def test_stand_json_url(self):
        self.client.login(username="******", password="******")
        link = self.stand1.options.get_link("GeoJSON")
        url = link.reverse(self.stand1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        self.assertTrue("application/json" in response["Content-Type"])
        d = loads(response.content)
        self.assertEquals(d["features"][0]["properties"]["name"], "My Stand")

    def test_property_json_url(self):
        self.client.login(username="******", password="******")
        link = self.stand1.options.get_link("GeoJSON")
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        self.assertTrue("application/json" in response["Content-Type"])
        d = loads(response.content)
        self.assertEquals(d["features"][0]["properties"]["name"], "My Property")

    def test_multistand_json_url(self):
        self.client.login(username="******", password="******")
        uids = [self.stand1.uid, self.stand2.uid]
        link = Stand.get_options().get_link("GeoJSON")
        url = link.reverse([self.stand1, self.stand2])
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        self.assertTrue("application/json" in response["Content-Type"])
        d = loads(response.content)
        self.assertEquals(len(d["features"]), 2)
        foundit = False
        for f in d["features"]:
            if f["properties"]["name"] == "My Stand2":
                foundit = True
        self.assertTrue(foundit)

    def test_property_stands_json_url(self):
        self.prop1.add(self.stand2)
        self.client.login(username="******", password="******")
        link = self.prop1.options.get_link("Property Stands GeoJSON")
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200, response)
        self.assertTrue("application/json" in response["Content-Type"])
        d = loads(response.content)
        self.assertEquals(len(d["features"]), 2)
        foundit = False
        for f in d["features"]:
            if f["properties"]["name"] == "My Stand2":
                foundit = True
        self.assertTrue(foundit)
Exemple #51
0
class SpatialTest(TestCase):
    '''
    Tests the spatial representations of Stands and ForestProperties
    '''

    def setUp(self):
        self.client = Client()
        import_rasters()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.stand1 = Stand(user=self.user, name="My Stand", geometry_orig=g1) 
        self.stand1.save()
        self.stand2 = Stand(user=self.user, name="My Stand2", geometry_orig=g1) 
        self.stand2.save()
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()
        self.prop1.add(self.stand1)

    def test_rest_defaultkml_url(self):
        self.client.login(username='******', password='******')
        link = self.stand1.options.get_link('KML')
        url = link.reverse(self.stand1)
        response = self.client.get(url)
        errors = kml_errors(response.content)
        self.assertFalse(errors,"invalid KML %s" % str(errors))

    def test_stand_json(self):
        thejson = self.stand1.geojson()
        d = loads(thejson)
        self.assertEquals(d['properties']['name'], 'My Stand')

    def test_property_json(self):
        thejson = self.prop1.feature_set_geojson()
        d = loads(thejson)
        self.assertEquals(len(d['features']), 1)
        self.assertEquals(d['features'][0]['properties']['name'], 'My Stand')
        self.prop1.add(self.stand2)
        thejson = self.prop1.feature_set_geojson()
        d = loads(thejson)
        self.assertEquals(len(d['features']), 2)

    def test_property_bbox(self):
        thejson = self.prop1.feature_set_geojson()
        d = loads(thejson)
        for x, y in zip(d['bbox'], self.prop1.bbox):
            self.assertAlmostEquals(x, y, places=5)

    def test_stand_json_url(self):
        self.client.login(username='******', password='******')
        link = self.stand1.options.get_link('GeoJSON')
        url = link.reverse(self.stand1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        self.assertTrue('application/json' in response['Content-Type'])
        d = loads(response.content)
        self.assertEquals(d['features'][0]['properties']['name'], 'My Stand')
        
    def test_property_json_url(self):
        self.client.login(username='******', password='******')
        link = self.stand1.options.get_link('GeoJSON')
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        self.assertTrue('application/json' in response['Content-Type'])
        d = loads(response.content)
        self.assertEquals(d['features'][0]['properties']['name'], 'My Property')

    def test_multistand_json_url(self):
        self.client.login(username='******', password='******')
        uids = [self.stand1.uid, self.stand2.uid]
        link = Stand.get_options().get_link('GeoJSON')
        url = link.reverse([self.stand1, self.stand2])
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200)
        self.assertTrue('application/json' in response['Content-Type'])
        d = loads(response.content)
        self.assertEquals(len(d['features']), 2)
        foundit = False
        for f in d['features']:
            if f['properties']['name'] == 'My Stand2':
                foundit = True
        self.assertTrue(foundit)

    def test_property_stands_json_url(self):
        self.prop1.add(self.stand2)
        self.client.login(username='******', password='******')
        link = self.prop1.options.get_link('Property Stands GeoJSON')
        url = link.reverse(self.prop1)
        response = self.client.get(url)
        self.assertEqual(response.status_code, 200, response)
        self.assertTrue('application/json' in response['Content-Type'])
        d = loads(response.content)
        self.assertEquals(len(d['features']), 2)
        foundit = False
        for f in d['features']:
            if f['properties']['name'] == 'My Stand2':
                foundit = True
        self.assertTrue(foundit)
Exemple #52
0
 def test_create_property(self):
     prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     prop1.save()
Exemple #53
0
 def setUp(self):
     self.user = User.objects.create_user(
         'featuretest', '*****@*****.**', password='******')
     self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
     self.prop1.save()
     self.realloc = ("Curry", "OR")
Exemple #54
0
class UserInventoryTest(TestCase):
    def setUp(self):
        import_rasters()
        d = os.path.dirname(__file__)
        self.condid_shp_path = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'test_stands_condid.shp'))
        self.datagz = os.path.abspath(os.path.join(d, '..', 'fixtures',
            'testdata', 'userinventory', 'data.db.gz'))
        self.client = Client()
        self.user = User.objects.create_user(
            'featuretest', '*****@*****.**', password='******')
        self.prop1 = ForestProperty(user=self.user, name="My Property", geometry_final=p1)
        self.prop1.save()

    def _populate_fvsaggregate(self):
        # Just fake it for now; faster than importing full test gyb dataset
        # this is sufficient so long as FVSAggregate.valid_condids() says so
        condids = (9820, 11307, 11311, 34157)
        for condid in condids:
            FVSAggregate.objects.create(cond=condid, offset=0, year=2013, age=32,
                                        var="PN", rx=1, site=2, start_tpa=231)

    def test_importer_badcondid(self):
        self.assertEqual(len(Stand.objects.all()), 0)
        s = StandImporter(self.user)
        with self.assertRaises(Exception):
            # haven't populated the fvsaggregate table so upload is invalid
            s.import_ogr(self.condid_shp_path, new_property_name="Locked Property")

    def test_importer_condid(self):
        self.assertEqual(len(Stand.objects.all()), 0)

        self._populate_fvsaggregate()
        s = StandImporter(self.user)
        s.import_ogr(self.condid_shp_path, new_property_name="Locked Property")

        new_property = ForestProperty.objects.get(name="Locked Property")
        self.assertEqual(len(new_property.feature_set(feature_classes=[Stand])), 37)
        self.assertEqual(len([x for x in new_property.feature_set(feature_classes=[Stand])
                              if x.is_locked]), 37)
        self.assertEqual(len([x for x in new_property.feature_set(feature_classes=[Stand])
                              if x.cond_id is None]), 0)
        self.assertEqual(len([x for x in new_property.feature_set(feature_classes=[Stand])
                              if x.cond_id != x.locked_cond_id]), 0)
        self.assertTrue(new_property.is_locked)

        self.assertEqual(len([x for x in new_property.feature_set(feature_classes=[Stand])
                              if x.strata is None]), 0)
        self.assertEqual(len(Strata.objects.all()), 4)

    def _extract_gz(self, zipfile):
        tmpfile = '/tmp/forestplanner_test_data.db'
        with open(tmpfile, "wb") as tmp:
            shutil.copyfileobj(gzip.open(zipfile), tmp)
        return tmpfile

    def test_import_gyb(self):
        tmpdata_db = self._extract_gz(self.datagz)
        call_command('import_gyb', tmpdata_db, verbosity=2, interactive=False)

    def test_importer_preimpute(self):
        self.assertEqual(len(Stand.objects.all()), 0)

        self._populate_fvsaggregate()

        s = StandImporter(self.user)
        s.import_ogr(self.condid_shp_path, new_property_name="Locked Property", pre_impute=True)

        new_property = ForestProperty.objects.get(name="Locked Property")
        self.assertEqual(len(new_property.feature_set(feature_classes=[Stand])), 37)

    def test_condid_strata(self):
        from trees.utils import condid_strata
        self._populate_fvsaggregate()

        st = condid_strata(9820)
        self.assertEqual(st['search_tpa'], 231)
        self.assertEqual(st['search_age'], 32)