本文整理匯總了Python中ckanext.spatial.harvesters.gemini.GeminiHarvester.get_gemini_string_and_guid方法的典型用法代碼示例。如果您正苦於以下問題:Python GeminiHarvester.get_gemini_string_and_guid方法的具體用法?Python GeminiHarvester.get_gemini_string_and_guid怎麽用?Python GeminiHarvester.get_gemini_string_and_guid使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ckanext.spatial.harvesters.gemini.GeminiHarvester
的用法示例。
在下文中一共展示了GeminiHarvester.get_gemini_string_and_guid方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: TestGatherMethods
# 需要導入模塊: from ckanext.spatial.harvesters.gemini import GeminiHarvester [as 別名]
# 或者: from ckanext.spatial.harvesters.gemini.GeminiHarvester import get_gemini_string_and_guid [as 別名]
class TestGatherMethods(HarvestFixtureBase):
def setup(self):
HarvestFixtureBase.setup(self)
# Create source
source_fixture = {
'title': 'Test Source',
'name': 'test-source',
'url': u'http://127.0.0.1:8999/gemini2.1/dataset1.xml',
'source_type': u'gemini-single'
}
source, job = self._create_source_and_job(source_fixture)
self.harvester = GeminiHarvester()
self.harvester.harvest_job = job
def teardown(self):
model.repo.rebuild_db()
def test_get_gemini_string_and_guid(self):
res = self.harvester.get_gemini_string_and_guid(BASIC_GEMINI, url=None)
assert_equal(res, (BASIC_GEMINI, GUID))
def test_get_gemini_string_and_guid__no_guid(self):
res = self.harvester.get_gemini_string_and_guid(GEMINI_MISSING_GUID, url=None)
assert_equal(res, (GEMINI_MISSING_GUID, ''))
def test_get_gemini_string_and_guid__non_parsing(self):
content = '<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco">' # no closing tag
assert_raises(lxml.etree.XMLSyntaxError, self.harvester.get_gemini_string_and_guid, content)
def test_get_gemini_string_and_guid__empty(self):
content = ''
assert_raises(lxml.etree.XMLSyntaxError, self.harvester.get_gemini_string_and_guid, content)