本文整理汇总了Python中pants.backend.android.distribution.android_distribution.AndroidDistribution类的典型用法代码示例。如果您正苦于以下问题:Python AndroidDistribution类的具体用法?Python AndroidDistribution怎么用?Python AndroidDistribution使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AndroidDistribution类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_caching_multiple_sdks
def test_caching_multiple_sdks(self):
with distribution() as first_sdk_path:
with distribution() as second_sdk_path:
first_sdk_instance = AndroidDistribution.cached(first_sdk_path)
second_sdk_instance = AndroidDistribution.cached(second_sdk_path)
self.assertEquals(AndroidDistribution._CACHED_SDK[first_sdk_path], first_sdk_instance)
self.assertEquals(AndroidDistribution._CACHED_SDK[second_sdk_path], second_sdk_instance)
示例2: test_get_bad_tool_path
def test_get_bad_tool_path(self):
with self.assertRaises(AndroidDistribution.DistributionError):
with distribution() as sdk:
android_sdk = AndroidDistribution.cached(sdk)
android_jar = os.path.join("platforms", "android-19", "no.jar")
tool_path = android_sdk._get_tool_path(android_jar)
self.assertEquals(tool_path, os.path.join(sdk, android_jar))
示例3: test_register_tool_returns_file
def test_register_tool_returns_file(self):
with distribution() as sdk:
with temporary_dir() as workdir:
android_sdk = AndroidDistribution.cached(sdk)
android_jar = os.path.join("platforms", "android-19", "android.jar")
android_sdk.register_android_tool(android_jar, workdir=workdir)
self.assertEquals(os.path.isfile(android_sdk._validated_tools[android_jar]), True)
示例4: test_register_copy_is_validated
def test_register_copy_is_validated(self):
with distribution() as sdk:
with temporary_dir() as workdir:
android_sdk = AndroidDistribution.cached(sdk)
android_jar = os.path.join("platforms", "android-19", "android.jar")
android_sdk.register_android_tool(android_jar, workdir=workdir)
self.assertIn(android_jar, android_sdk._validated_tools)
示例5: test_register_copy_but_no_tool
def test_register_copy_but_no_tool(self):
with distribution() as sdk:
with temporary_dir() as workdir:
android_sdk = AndroidDistribution.cached(sdk)
android_jar = os.path.join("platforms", "android-19", "no.jar")
with self.assertRaises(AndroidDistribution.DistributionError):
android_sdk.register_android_tool(android_jar, workdir=workdir)
示例6: test_register_tool_no_permission
def test_register_tool_no_permission(self):
with self.assertRaises(AndroidDistribution.DistributionError):
with distribution() as sdk:
with temporary_dir() as workdir:
os.chmod(workdir, 0o400)
android_sdk = AndroidDistribution.cached(sdk)
android_jar = os.path.join("platforms", "android-19", "android.jar")
android_sdk.register_android_tool(android_jar, workdir=workdir)
示例7: test_locate_sdk_path
def test_locate_sdk_path(self, path=None):
# We can set good/bad paths alike. No checks until tools are called.
@contextmanager
def env(**kwargs):
environment = dict(ANDROID_HOME=None, ANDROID_SDK_HOME=None, ANDROID_SDK=None)
environment.update(**kwargs)
with environment_as(**environment):
yield
with self.distribution() as sdk:
with env(ANDROooooD_HOME=sdk):
AndroidDistribution.locate_sdk_path(path)
with self.distribution() as sdk:
with env(ANDROID_HOME=sdk):
AndroidDistribution.locate_sdk_path(path)
示例8: test_sdk_path_is_none
def test_sdk_path_is_none(self):
with self.env() as sdk:
with self.assertRaises(AndroidDistribution.DistributionError):
AndroidDistribution.cached(sdk)
示例9: android_sdk
def android_sdk(self):
"""Instantiate an Android SDK distribution that provides tools to android tasks."""
return AndroidDistribution.cached(self._sdk_path)
示例10: test_register_android_tool_bad_sdk
def test_register_android_tool_bad_sdk(self):
with self.assertRaises(AndroidDistribution.DistributionError):
sdk = os.path.join('/no', 'sdk', 'here')
android_sdk = AndroidDistribution.cached(sdk)
aapt = os.path.join('build-tools', '19.1.0', 'aapt')
android_sdk.register_android_tool(aapt)
示例11: test_validated_tools
def test_validated_tools(self):
with distribution() as sdk:
android_sdk = AndroidDistribution.cached(sdk)
aapt = os.path.join("build-tools", "19.1.0", "aapt")
android_sdk.register_android_tool(aapt)
self.assertIn(aapt, android_sdk._validated_tools)
示例12: test_register_nonexistent_android_tool
def test_register_nonexistent_android_tool(self):
with self.assertRaises(AndroidDistribution.DistributionError):
with self.distribution() as sdk:
android_sdk = AndroidDistribution.cached(sdk)
android_sdk.register_android_tool(os.path.join('build-tools', '19.1.0', 'random_tool'))
示例13: test_empty_sdk_path
def test_empty_sdk_path(self):
# Shows that an AndroidDistribution can be created as long as an sdk path is declared.
with temporary_dir() as sdk:
android_sdk = AndroidDistribution.cached(sdk)
self.assertEquals(android_sdk._sdk_path, sdk)
示例14: test_validated_tools
def test_validated_tools(self):
with self.distribution() as sdk:
android_sdk = AndroidDistribution.cached(sdk)
aapt = os.path.join('build-tools', '19.1.0', 'aapt')
android_sdk.register_android_tool(aapt)
self.assertIn(aapt, android_sdk._validated_tools)
示例15: test_locate_sdk_path
def test_locate_sdk_path(self):
with distribution() as sdk:
with self.env(ANDROID_HOME=sdk):
dist = AndroidDistribution.locate_sdk_path()
self.assertEquals(dist._sdk_path, sdk)