当前位置: 首页>>代码示例>>Python>>正文


Python VimeoStorage.storeSettings方法代码示例

本文整理汇总了Python中VimeoStorage.VimeoStorage.storeSettings方法的典型用法代码示例。如果您正苦于以下问题:Python VimeoStorage.storeSettings方法的具体用法?Python VimeoStorage.storeSettings怎么用?Python VimeoStorage.storeSettings使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在VimeoStorage.VimeoStorage的用法示例。


在下文中一共展示了VimeoStorage.storeSettings方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_storeSettings_should_call_storeResultSetSettings_if_type_is_not_set

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_storeSettings_should_call_storeResultSetSettings_if_type_is_not_set(self):
        storage = VimeoStorage()
        storage.storeResultSetSettings = Mock()
        storage.getStorageKey = Mock()
        storage.getStorageKey.return_value = "key"

        storage.storeSettings({}, {"storeSettings": "pokeystoreSettings"})

        storage.storeResultSetSettings.assert_called_with("key", {"storeSettings": "pokeystoreSettings"})
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:11,代码来源:TestVimeoStorage.py

示例2: test_storeSettings_should_call_getStorageKey_to_fetch_correct_storage_key

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_storeSettings_should_call_getStorageKey_to_fetch_correct_storage_key(self):
        storage = VimeoStorage()
        storage.getStorageKey = Mock()

        result = storage.storeSettings({"storeSettings": "pokeystoreSettings"})

        storage.getStorageKey.assert_called_with({"storeSettings": "pokeystoreSettings"}, "", {})
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:9,代码来源:TestVimeoStorage.py

示例3: test_saveStoredSearch_should_limit_search_collection_before_calling_store

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_saveStoredSearch_should_limit_search_collection_before_calling_store(self):
        sys.modules["__main__"].settings.getSetting.return_value = "0"
        storage = VimeoStorage()
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = [
            "some_search4",
            "some_search2",
            "some_search3",
            "",
            "",
            "",
            "",
            "",
            "",
            "",
            "",
        ]
        storage.storeSettings = Mock()

        storage.saveStoredSearch({"search": "some_search1", "old_search": "some_search2"})

        assert len(storage.storeSettings.call_args[0][1]) == 10
        storage.storeSettings.assert_called_with(
            {"search": "some_search1", "old_search": "some_search2"},
            ["some_search1", "some_search4", "some_search3", "", "", "", "", "", "", ""],
        )
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:28,代码来源:TestVimeoStorage.py

示例4: test_getStoredSearches_should_call_quote_plus_on_search_items

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_getStoredSearches_should_call_quote_plus_on_search_items(self):
        patcher = patch("urllib.quote_plus")
        patcher.start()
        import urllib

        urllib.quote_plus.return_value = "some_quoted_search"
        storage = VimeoStorage()
        storage.retrieve = Mock()
        storage.retrieve.return_value = ["some_search"]
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search"]
        storage.storeSettings = Mock()

        (result, status) = storage.getStoredSearches({"path": "some_path"})
        args = urllib.quote_plus.call_args
        patcher.stop()

        print repr(result)
        assert args[0][0] == "some_search"
        assert result == [
            {
                "path": "some_path",
                "search": "some_quoted_search",
                "api": "search",
                "icon": "search",
                "thumbnail": ["some_search"],
                "Title": "some_search",
            }
        ]
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:31,代码来源:TestVimeoStorage.py

示例5: test_getStoredSearches_should_call_retrieve_to_get_searches

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_getStoredSearches_should_call_retrieve_to_get_searches(self):
        storage = VimeoStorage()
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search"]
        storage.storeSettings = Mock()

        storage.getStoredSearches({"path": "some_path"})

        assert storage.retrieveSettings.call_count > 0
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:11,代码来源:TestVimeoStorage.py

示例6: test_deleteStoredSearch_should_call_retrieve_to_get_searches

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_deleteStoredSearch_should_call_retrieve_to_get_searches(self):
        storage = VimeoStorage()
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search1"]
        storage.storeSettings = Mock()

        storage.deleteStoredSearch({"delete": "some_search2"})

        storage.retrieveSettings.assert_called_with({"delete": "some_search2"})
        assert storage.retrieveSettings.call_count == 1
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:12,代码来源:TestVimeoStorage.py

示例7: test_saveStoredSearch_should_call_store_to_save_searches_collection

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_saveStoredSearch_should_call_store_to_save_searches_collection(self):
        sys.modules["__main__"].settings.getSetting.return_value = "0"
        storage = VimeoStorage()
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search2"]
        storage.storeSettings = Mock()

        storage.saveStoredSearch({"search": "some_search1", "old_search": "some_search2"})

        assert storage.storeSettings.call_count > 0
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:12,代码来源:TestVimeoStorage.py

示例8: test_saveStoredSearch_should_call_getSettings_to_get_max_searches_count

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_saveStoredSearch_should_call_getSettings_to_get_max_searches_count(self):
        sys.modules["__main__"].settings.getSetting.return_value = "0"
        storage = VimeoStorage()
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search2"]
        storage.storeSettings = Mock()

        storage.saveStoredSearch({"search": "some_search1", "old_search": "some_search2"})

        sys.modules["__main__"].settings.getSetting.assert_called_with("saved_searches")
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:12,代码来源:TestVimeoStorage.py

示例9: test_storeSettings_should_call_storeValueSettings_if_type_is_set

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_storeSettings_should_call_storeValueSettings_if_type_is_set(self):
        storage = VimeoStorage()
        storage.storeValueSettings = Mock()
        storage.getStorageKey = Mock()
        storage.getStorageKey.return_value = "key"

        result = storage.storeSettings({}, {"storeSettings": "pokeystoreSettings"}, "value")

        print repr(result)

        storage.storeValueSettings.assert_called_with("key", {"storeSettings": "pokeystoreSettings"})
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:13,代码来源:TestVimeoStorage.py

示例10: test_deleteStoredSearch_should_call_executebuiltin

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_deleteStoredSearch_should_call_executebuiltin(self):
        storage = VimeoStorage()
        storage.retrieve = Mock()
        storage.retrieve.return_value = ["some_search2"]
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search"]
        storage.storeSettings = Mock()

        storage.deleteStoredSearch({"delete": "some_search2"})

        sys.modules["__main__"].xbmc.executebuiltin.assert_called_with("Container.Refresh")
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:13,代码来源:TestVimeoStorage.py

示例11: test_editStoredSearch_should_set_store_to_searches_if_editing_searches

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_editStoredSearch_should_set_store_to_searches_if_editing_searches(self):
        sys.modules["__main__"].settings.getSetting.return_value = "0"
        sys.modules["__main__"].language.return_value = "some_title"
        sys.modules["__main__"].common.getUserInput.return_value = "some_search3"
        storage = VimeoStorage()
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search2"]
        storage.storeSettings = Mock()

        storage.editStoredSearch({"search": "some_search1"})

        assert storage.storeSettings.call_args[0][0].has_key("api")
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:14,代码来源:TestVimeoStorage.py

示例12: test_saveStoredSearch_should_remove_old_search_from_collection_and_prepend_new_search

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_saveStoredSearch_should_remove_old_search_from_collection_and_prepend_new_search(self):
        sys.modules["__main__"].settings.getSetting.return_value = "0"
        storage = VimeoStorage()
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search4", "some_search2", "some_search3"]
        storage.storeSettings = Mock()

        storage.saveStoredSearch({"search": "some_search1", "old_search": "some_search2"})

        storage.storeSettings.assert_called_with(
            {"search": "some_search1", "old_search": "some_search2"}, ["some_search1", "some_search4", "some_search3"]
        )
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:14,代码来源:TestVimeoStorage.py

示例13: test_deleteStoredSearch_should_remove_search_from_list_before_calling_store

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_deleteStoredSearch_should_remove_search_from_list_before_calling_store(self):
        storage = VimeoStorage()
        storage.retrieve = Mock()
        storage.retrieve.return_value = ["some_search2"]
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search"]

        storage.storeSettings = Mock()

        storage.deleteStoredSearch({"delete": "some_search2"})

        storage.storeSettings.assert_called_with({"delete": "some_search2"}, ["some_search"])
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:14,代码来源:TestVimeoStorage.py

示例14: test_editStoredSearch_should_ask_user_for_new_search_phrase

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_editStoredSearch_should_ask_user_for_new_search_phrase(self):
        sys.modules["__main__"].settings.getSetting.return_value = "0"
        sys.modules["__main__"].language.return_value = "some_title"
        sys.modules["__main__"].common.getUserInput.return_value = "some_search3"
        storage = VimeoStorage()
        storage.retrieveSettings = Mock()
        storage.retrieveSettings.return_value = ["some_search2"]
        storage.storeSettings = Mock()

        storage.editStoredSearch({"search": "some_search1"})

        sys.modules["__main__"].common.getUserInput.assert_called_with("some_title", "some_search1")
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:14,代码来源:TestVimeoStorage.py

示例15: test_editStoredSearch_should_exit_cleanly_if_search_param_is_missing

# 需要导入模块: from VimeoStorage import VimeoStorage [as 别名]
# 或者: from VimeoStorage.VimeoStorage import storeSettings [as 别名]
    def test_editStoredSearch_should_exit_cleanly_if_search_param_is_missing(self):
        sys.modules["__main__"].settings.getSetting.return_value = "0"
        sys.modules["__main__"].common.getUserInput.return_value = "some_search3"
        storage = VimeoStorage()
        storage.retrieve = Mock()
        storage.retrieve.return_value = ["some_search2"]

        storage.storeSettings = Mock()

        storage.editStoredSearch({})

        assert storage.storeSettings.call_count == 0
        assert storage.retrieve.call_count == 0
开发者ID:HenrikDK,项目名称:vimeo-xbmc-plugin,代码行数:15,代码来源:TestVimeoStorage.py


注:本文中的VimeoStorage.VimeoStorage.storeSettings方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。