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


Python TConfig.DATA_DIR方法代码示例

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


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

示例1: test_build_fail_no_spec_or_src

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
    def test_build_fail_no_spec_or_src(self):
        with pytest.raises(SystemExit):
            t_config = TConfig()
            t_config.DATA_DIR = os.getcwd()
            pyu = PyUpdater(t_config)
            pyu.setup()
            build_cmd = ['build', '--app-name', 'MyApp', '--clean'
                         '--app-version', '0.1.0', '-F']

            parser = get_parser()
            args, pyu_args = parser.parse_known_args(build_cmd)
            b = Builder(args, pyu_args)
            b.build()
开发者ID:timeyyy,项目名称:PyUpdater,代码行数:15,代码来源:test_builder.py

示例2: test_make_spec

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
    def test_make_spec(self):
        t_config = TConfig()
        t_config.DATA_DIR = os.getcwd()
        pyu = PyUpdater(t_config)
        pyu.setup()

        spec_cmd = ['make-spec', 'app.py', '-F', '--app-name', 'MyApp',
                    '--app-version', '0.1.0']
        spec_file_name = get_system() + '.spec'
        build_cmd = ['build', '--app-name', 'MyApp',
                     '--app-version', '0.1.0', spec_file_name]

        build_cmd = [str(b) for b in build_cmd]
        parser = get_parser()
        with open('app.py', 'w') as f:
            f.write('print "Hello, World!"')
        args, pyu_args = parser.parse_known_args(spec_cmd)
        b = Builder(args, pyu_args)
        b.make_spec()
        assert os.path.exists(spec_file_name)
        args, pyu_args = parser.parse_known_args(build_cmd)
        b = Builder(args, pyu_args)
        b.build()
        with ChDir(new_folder):
            assert len(os.listdir(os.getcwd())) == 1
开发者ID:timeyyy,项目名称:PyUpdater,代码行数:27,代码来源:test_builder.py

示例3: test_bad_pub_key

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_bad_pub_key(self):
     t_config = TConfig()
     # If changed ensure it's a valid key format
     t_config.PUBLIC_KEY = '25RSdhJ+xCsxxTjY5jffilatipp29tnKp/D5BelSMJM'
     t_config.DATA_DIR = os.getcwd()
     client = Client(t_config, refresh=True, test=True)
     assert client.update_check(client.app_name, '0.0.0') is None
开发者ID:awesome-python,项目名称:PyUpdater,代码行数:9,代码来源:test_client.py

示例4: test_manifest_filesystem

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_manifest_filesystem(self):
     t_config = TConfig()
     t_config.PUBLIC_KEYS = ['bad key']
     t_config.DATA_DIR = os.getcwd()
     client = Client(t_config, refresh=True, test=True)
     filesystem_data = client._get_manifest_filesystem()
     filesystem_data = json.loads(filesystem_data)
     del filesystem_data['sigs']
     assert client.json_data == filesystem_data
开发者ID:timeyyy,项目名称:PyUpdater,代码行数:11,代码来源:test_client.py

示例5: test_process_packages

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_process_packages(self):
     data_dir = os.getcwd()
     t_config = TConfig()
     t_config.DATA_DIR = data_dir
     t_config.UPDATE_PATCHES = False
     config = Config()
     config.from_object(t_config)
     p = PackageHandler(config)
     p.process_packages()
开发者ID:awesome-python,项目名称:PyUpdater,代码行数:11,代码来源:test_package_handler.py

示例6: test_no_patch_support

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_no_patch_support(self, db):
     data_dir = os.getcwd()
     t_config = TConfig()
     t_config.DATA_DIR = data_dir
     t_config.UPDATE_PATCHES = False
     config = TransistionDict()
     config.from_object(t_config)
     p = PackageHandler(config, db)
     p.process_packages()
开发者ID:timeyyy,项目名称:PyUpdater,代码行数:11,代码来源:test_package_handler.py

示例7: test_http

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_http(self):
     t_config = TConfig()
     t_config.DATA_DIR = os.getcwd()
     client = Client(t_config, refresh=True, test=True)
     update = client.update_check(client.app_name, '0.0.1')
     assert update is not None
     assert update.app_name == 'Acme'
     assert update.download() is True
     assert update.is_downloaded() is True
开发者ID:Encryptabit,项目名称:PyUpdater,代码行数:11,代码来源:test_client.py

示例8: test_init

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_init(self):
     data_dir = os.getcwd()
     t_config = TConfig()
     t_config.DATA_DIR = data_dir
     config = Config()
     config.from_object(t_config)
     p = PackageHandler(config)
     assert p.files_dir == os.path.join(data_dir, s_dir, 'files')
     assert p.deploy_dir == os.path.join(data_dir, s_dir, 'deploy')
开发者ID:awesome-python,项目名称:PyUpdater,代码行数:11,代码来源:test_package_handler.py

示例9: test_http

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_http(client):
     t_config = TConfig()
     t_config.DATA_DIR = os.getcwd()
     t_config.VERIFY_SERVER_CERT = False
     client = Client(t_config, refresh=True, test=True)
     update = client.update_check(client.app_name, '0.0.1')
     assert update is not None
     assert update.app_name == 'jms'
     assert update.download() is True
     assert update.is_downloaded() is True
开发者ID:timeyyy,项目名称:PyUpdater,代码行数:12,代码来源:test_client.py

示例10: test_directory_creation

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_directory_creation(self):
     data_dir = os.getcwd()
     pyu_data_dir = os.path.join(data_dir, 'pyu-data')
     t_config = TConfig()
     t_config.DATA_DIR = data_dir
     pyu = PyUpdater(t_config)
     pyu.setup()
     assert os.path.exists(pyu_data_dir)
     assert os.path.exists(os.path.join(pyu_data_dir, 'deploy'))
     assert os.path.exists(os.path.join(pyu_data_dir, 'files'))
     assert os.path.exists(os.path.join(pyu_data_dir, 'new'))
开发者ID:JMSwag,项目名称:PyUpdater,代码行数:13,代码来源:test_pyupdater.py

示例11: test_manifest_filesystem

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_manifest_filesystem(self):
     t_config = TConfig()
     t_config.DATA_DIR = os.getcwd()
     client = Client(t_config, refresh=True, test=True)
     filesystem_data = client._get_manifest_filesystem()
     assert filesystem_data is not None
     if six.PY3:
         filesystem_data = filesystem_data.decode()
     filesystem_data = json.loads(filesystem_data)
     del filesystem_data['signature']
     assert client.json_data == filesystem_data
开发者ID:Encryptabit,项目名称:PyUpdater,代码行数:13,代码来源:test_client.py

示例12: test_callback

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
    def test_callback(self):
        def cb(status):
            print(status)

        def cb2(status):
            raise IndexError

        t_config = TConfig()
        t_config.PUBLIC_KEY = '25RSdhJ+xCsxxTjY5jffilatipp29tnKp/D5BelSMJM'
        t_config.DATA_DIR = os.getcwd()
        client = Client(t_config, refresh=True, test=True, progress_hooks=[cb])
        client.add_progress_hook(cb2)
        assert client.update_check(client.app_name, '0.0.0') is None
开发者ID:awesome-python,项目名称:PyUpdater,代码行数:15,代码来源:test_client.py

示例13: test_callback

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
    def test_callback(self):
        def cb(status):
            print(status)

        def cb2(status):
            raise IndexError

        t_config = TConfig()
        t_config.PUBLIC_KEYS = ['bad key']
        t_config.DATA_DIR = os.getcwd()
        client = Client(t_config, refresh=True, test=True, call_back=cb,
                        callbacks=[cb, cb2])
        client.add_call_back(cb2)
        assert client.update_check('jms', '0.0.0') is None
开发者ID:timeyyy,项目名称:PyUpdater,代码行数:16,代码来源:test_client.py

示例14: test_async_http

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
 def test_async_http(self):
     t_config = TConfig()
     t_config.DATA_DIR = os.getcwd()
     client = Client(t_config, refresh=True, test=True)
     update = client.update_check(client.app_name, '0.0.1')
     assert update is not None
     assert update.app_name == 'Acme'
     update.download(async=True)
     count = 0
     while count < 61:
         if update.is_downloaded() is True:
             break
         time.sleep(1)
         count += 1
     assert update.is_downloaded() is True
开发者ID:Encryptabit,项目名称:PyUpdater,代码行数:17,代码来源:test_client.py

示例15: test_build_mac_dot_app

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import DATA_DIR [as 别名]
    def test_build_mac_dot_app(self):
        t_config = TConfig()
        t_config.DATA_DIR = os.getcwd()
        pyu = PyUpdater(t_config)
        pyu.setup()

        build_cmd = ['build', '-F', '-w', '--app-name', 'MyApp',
                     '--app-version', '0.1.0', 'app.py']
        build_cmd = [str(b) for b in build_cmd]
        parser = get_parser()
        with open('app.py', 'w') as f:
            f.write('print "Hello, World!"')
        args, pyu_args = parser.parse_known_args(build_cmd)
        b = Builder(args, pyu_args)
        b.build()
        with ChDir(new_folder):
            assert len(os.listdir(os.getcwd())) == 1
开发者ID:timeyyy,项目名称:PyUpdater,代码行数:19,代码来源:test_builder.py


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