本文整理汇总了Python中tconfig.TConfig类的典型用法代码示例。如果您正苦于以下问题:Python TConfig类的具体用法?Python TConfig怎么用?Python TConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TConfig类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_build_fail_no_spec_or_src
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()
示例2: test_make_spec
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
示例3: test_bad_pub_key
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
示例4: test_set_uploader_bad_settings
def test_set_uploader_bad_settings():
config = TConfig()
config.ACCESS_KEY_ID = None
config.SECRET_ACCESS_KEY = u'Not an actual secret'
config.BUCKET_NAME = u'Bucket Name'
s_nst = PyiUpdater(config)
uploader = Uploader(s_nst)
uploader.set_uploader(u's3')
示例5: test_manifest_filesystem
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
示例6: test_process_packages
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()
示例7: test_no_patch_support
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()
示例8: test_init
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')
示例9: test_http
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
示例10: test_http
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
示例11: test_manifest_filesystem
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
示例12: test_directory_creation
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'))
示例13: test_callback
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
示例14: test_callback
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
示例15: test_async_http
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