本文整理匯總了Python中ckanext.spatial.harvesters.gemini.GeminiHarvester._process_responsible_organisation方法的典型用法代碼示例。如果您正苦於以下問題:Python GeminiHarvester._process_responsible_organisation方法的具體用法?Python GeminiHarvester._process_responsible_organisation怎麽用?Python GeminiHarvester._process_responsible_organisation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ckanext.spatial.harvesters.gemini.GeminiHarvester
的用法示例。
在下文中一共展示了GeminiHarvester._process_responsible_organisation方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_responsible_organisation_basic
# 需要導入模塊: from ckanext.spatial.harvesters.gemini import GeminiHarvester [as 別名]
# 或者: from ckanext.spatial.harvesters.gemini.GeminiHarvester import _process_responsible_organisation [as 別名]
def test_responsible_organisation_basic(self):
responsible_organisation = [{'organisation-name': 'Ordnance Survey',
'role': 'owner'},
{'organisation-name': 'Maps Ltd',
'role': 'distributor'}]
assert_equal(GeminiHarvester._process_responsible_organisation(responsible_organisation),
('Ordnance Survey', ['Maps Ltd (distributor)',
'Ordnance Survey (owner)']))
示例2: test_responsible_organisation_publisher
# 需要導入模塊: from ckanext.spatial.harvesters.gemini import GeminiHarvester [as 別名]
# 或者: from ckanext.spatial.harvesters.gemini.GeminiHarvester import _process_responsible_organisation [as 別名]
def test_responsible_organisation_publisher(self):
# no owner, so falls back to publisher
responsible_organisation = [{'organisation-name': 'Ordnance Survey',
'role': 'publisher'},
{'organisation-name': 'Maps Ltd',
'role': 'distributor'}]
assert_equal(GeminiHarvester._process_responsible_organisation(responsible_organisation),
('Ordnance Survey', ['Maps Ltd (distributor)',
'Ordnance Survey (publisher)']))
示例3: test_responsible_organisation_blank_provider
# 需要導入模塊: from ckanext.spatial.harvesters.gemini import GeminiHarvester [as 別名]
# 或者: from ckanext.spatial.harvesters.gemini.GeminiHarvester import _process_responsible_organisation [as 別名]
def test_responsible_organisation_blank_provider(self):
# no owner or publisher, so blank provider
responsible_organisation = [{'organisation-name': 'Ordnance Survey',
'role': 'resourceProvider'},
{'organisation-name': 'Maps Ltd',
'role': 'distributor'}]
assert_equal(GeminiHarvester._process_responsible_organisation(responsible_organisation),
('', ['Maps Ltd (distributor)',
'Ordnance Survey (resourceProvider)']))
示例4: test_responsible_organisation_multiple_roles
# 需要導入模塊: from ckanext.spatial.harvesters.gemini import GeminiHarvester [as 別名]
# 或者: from ckanext.spatial.harvesters.gemini.GeminiHarvester import _process_responsible_organisation [as 別名]
def test_responsible_organisation_multiple_roles(self):
# provider is the owner (ignores publisher)
responsible_organisation = [{'organisation-name': 'Ordnance Survey',
'role': 'publisher'},
{'organisation-name': 'Ordnance Survey',
'role': 'custodian'},
{'organisation-name': 'Distributor',
'role': 'distributor'}]
assert_equal(GeminiHarvester._process_responsible_organisation(responsible_organisation),
('Ordnance Survey', ['Distributor (distributor)',
'Ordnance Survey (publisher, custodian)',
]))
示例5: test_responsible_organisation_owner
# 需要導入模塊: from ckanext.spatial.harvesters.gemini import GeminiHarvester [as 別名]
# 或者: from ckanext.spatial.harvesters.gemini.GeminiHarvester import _process_responsible_organisation [as 別名]
def test_responsible_organisation_owner(self):
# provider is the owner (ignores publisher)
responsible_organisation = [{'organisation-name': 'Ordnance Survey',
'role': 'publisher'},
{'organisation-name': 'Owner',
'role': 'owner'},
{'organisation-name': 'Maps Ltd',
'role': 'distributor'}]
assert_equal(GeminiHarvester._process_responsible_organisation(responsible_organisation),
('Owner', ['Owner (owner)',
'Maps Ltd (distributor)',
'Ordnance Survey (publisher)',
]))
示例6: test_responsible_organisation_blank
# 需要導入模塊: from ckanext.spatial.harvesters.gemini import GeminiHarvester [as 別名]
# 或者: from ckanext.spatial.harvesters.gemini.GeminiHarvester import _process_responsible_organisation [as 別名]
def test_responsible_organisation_blank(self):
# no owner or publisher, so blank provider
responsible_organisation = []
assert_equal(GeminiHarvester._process_responsible_organisation(responsible_organisation),
('', []))