Пример #1
0
    def test_python_type(self):
        test_property = UrlProperty('test url', QUrl('http://inasafe.org'),
                                    'gmd:URL')

        # type should be read-only
        with self.assertRaises(AttributeError):
            test_property.python_type = 'random string'
    def test_value_url(self):
        test_property = UrlProperty("test url", QUrl("http://inasafe.org"), "gmd:URL")

        with self.assertRaises(TypeError):
            test_property.value = 20150607

        # this should work due to casting
        test_property.value = "http://inasafe.org"
Пример #3
0
    def test_value_url(self):
        test_property = UrlProperty('test url', QUrl('http://inasafe.org'),
                                    'gmd:URL')

        with self.assertRaises(TypeError):
            test_property.value = 20150607

        # this should work due to casting
        test_property.value = 'http://inasafe.org'
Пример #4
0
    def test_python_type(self):
        test_property = UrlProperty(
            'test url',
            QUrl('http://inasafe.org'),
            'gmd:URL'
        )

        # type should be read-only
        with self.assertRaises(AttributeError):
            test_property.python_type = 'random string'
    def test_xml_path(self):
        valid_path = "gmd:URL"
        invalid_path = 2345

        test_property = UrlProperty("test url", QUrl("http://inasafe.org"), valid_path)
        # xml_path should be read-only
        with self.assertRaises(AttributeError):
            test_property.xml_path = "random string"

        with self.assertRaises(MetadataInvalidPathError):
            UrlProperty("test url", QUrl("http://inasafe.org"), invalid_path)
Пример #6
0
    def test_xml_path(self):
        valid_path = 'gmd:URL'
        invalid_path = 2345

        test_property = UrlProperty('test url', QUrl('http://inasafe.org'),
                                    valid_path)
        # xml_path should be read-only
        with self.assertRaises(AttributeError):
            test_property.xml_path = 'random string'

        with self.assertRaises(MetadataInvalidPathError):
            UrlProperty('test url', QUrl('http://inasafe.org'), invalid_path)
Пример #7
0
    def test_value_url(self):
        test_property = UrlProperty(
            'test url',
            QUrl('http://inasafe.org'),
            'gmd:URL'
        )

        with self.assertRaises(TypeError):
            test_property.value = 20150607

        # this should work due to casting
        test_property.value = 'http://inasafe.org'
Пример #8
0
    def test_xml_path(self):
        valid_path = 'gmd:URL'
        invalid_path = 2345

        test_property = UrlProperty(
            'test url',
            QUrl('http://inasafe.org'),
            valid_path
        )
        # xml_path should be read-only
        with self.assertRaises(AttributeError):
            test_property.xml_path = 'random string'

        with self.assertRaises(MetadataInvalidPathError):
            UrlProperty(
                'test url',
                QUrl('http://inasafe.org'),
                invalid_path
            )
Пример #9
0
 def test_xml_path_stronger(self):
     # TODO (MB): remove expected failure when a better _is_valid_path is
     # implemented
     error_path = '\\test\\path'
     with self.assertRaises(MetadataInvalidPathError):
         UrlProperty(
             'test url',
             QUrl('http://inasafe.org'),
             error_path
         )
    def test_python_type(self):
        test_property = UrlProperty("test url", QUrl("http://inasafe.org"), "gmd:URL")

        # type should be read-only
        with self.assertRaises(AttributeError):
            test_property.python_type = "random string"