當前位置: 首頁>>代碼示例>>Python>>正文


Python GeminiHarvester._process_responsible_organisation方法代碼示例

本文整理匯總了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)']))
開發者ID:GSA,項目名稱:ckanext-spatial,代碼行數:10,代碼來源:test_harvest.py

示例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)']))
開發者ID:GSA,項目名稱:ckanext-spatial,代碼行數:11,代碼來源:test_harvest.py

示例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)']))
開發者ID:GSA,項目名稱:ckanext-spatial,代碼行數:11,代碼來源:test_harvest.py

示例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)',
                             ]))
開發者ID:GSA,項目名稱:ckanext-spatial,代碼行數:14,代碼來源:test_harvest.py

示例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)',
                             ]))
開發者ID:GSA,項目名稱:ckanext-spatial,代碼行數:15,代碼來源:test_harvest.py

示例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),
                  ('', []))
開發者ID:GSA,項目名稱:ckanext-spatial,代碼行數:7,代碼來源:test_harvest.py


注:本文中的ckanext.spatial.harvesters.gemini.GeminiHarvester._process_responsible_organisation方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。