本文整理汇总了Python中YouTubeStorage.YouTubeStorage._getResultSetStorageKey方法的典型用法代码示例。如果您正苦于以下问题:Python YouTubeStorage._getResultSetStorageKey方法的具体用法?Python YouTubeStorage._getResultSetStorageKey怎么用?Python YouTubeStorage._getResultSetStorageKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类YouTubeStorage.YouTubeStorage
的用法示例。
在下文中一共展示了YouTubeStorage._getResultSetStorageKey方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_getStorageKey_should_call_getResultSetStorageKey_if_type_is_not_set
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getStorageKey_should_call_getResultSetStorageKey_if_type_is_not_set(self):
storage = YouTubeStorage()
storage._getResultSetStorageKey = Mock()
result = storage.getStorageKey({"some_param": "param_value"})
storage._getResultSetStorageKey.assert_called_with({"some_param": "param_value"})
示例2: test_getResultSetStorageKey_should_handle_external_correctly
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getResultSetStorageKey_should_handle_external_correctly(self):
storage = YouTubeStorage()
result = storage._getResultSetStorageKey(
{"user_feed": "playlist", "playlist": "some_playlist", "external": "true", "contact": "some_contact"}
)
assert result.find("external") > 0
示例3: test_getResultSetStorageKey_should_return_correct_key_for_generic_stores
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getResultSetStorageKey_should_return_correct_key_for_generic_stores(self):
storage = YouTubeStorage()
result = storage._getResultSetStorageKey({"store": "pokeystore"})
assert result == "store_pokeystore"
示例4: test_getResultSetStorageKey_should_return_correct_key_for_stored_searches
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getResultSetStorageKey_should_return_correct_key_for_stored_searches(self):
storage = YouTubeStorage()
result = storage._getResultSetStorageKey({"feed": "search"})
assert result == "store_searches"
示例5: test_getResultSetStorageKey_should_return_correct_key_for_subscription_path
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getResultSetStorageKey_should_return_correct_key_for_subscription_path(self):
storage = YouTubeStorage()
result = storage._getResultSetStorageKey({"user_feed": "subscriptions", "channel": "some_channel"})
assert result == "result_subscriptions_some_channel"
示例6: test_getResultSetStorageKey_should_return_correct_key_for_playlist_path
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getResultSetStorageKey_should_return_correct_key_for_playlist_path(self):
storage = YouTubeStorage()
result = storage._getResultSetStorageKey({"user_feed": "playlist", "playlist": "some_playlist"})
assert result == "result_playlist_some_playlist"
示例7: test_getResultSetStorageKey_should_return_correct_key_for_category_path
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getResultSetStorageKey_should_return_correct_key_for_category_path(self):
storage = YouTubeStorage()
result = storage._getResultSetStorageKey({"scraper": "categories", "category": "some_category"})
assert result == "s_categories_category_some_category"
示例8: test_getResultSetStorageKey_should_return_correct_key_for_disco_search_path
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getResultSetStorageKey_should_return_correct_key_for_disco_search_path(self):
storage = YouTubeStorage()
result = storage._getResultSetStorageKey({"scraper": "disco_search", "search": "some_search"})
assert result == "store_disco_searches"
示例9: test_getResultSetStorageKey_should_return_correct_key_for_for_show_scraper
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getResultSetStorageKey_should_return_correct_key_for_for_show_scraper(self):
storage = YouTubeStorage()
result = storage._getResultSetStorageKey({"scraper": "show", "show": "some_show"})
assert result == "s_show_some_show_season_0"
示例10: test_getResultSetStorageKey_should_return_correct_key_for_music_artist_path
# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import _getResultSetStorageKey [as 别名]
def test_getResultSetStorageKey_should_return_correct_key_for_music_artist_path(self):
storage = YouTubeStorage()
result = storage._getResultSetStorageKey({"scraper": "music_artist", "artist": "some_artist"})
assert result == "s_music_artist_some_artist"