コード例 #1
0
ファイル: tests.py プロジェクト: zerotk/virtualenv-api
class LongPathTestCase(BaseTest):
    def setUp(self):
        self.env_path = self.setup_env()
        self.virtual_env_obj = VirtualEnvironment(self.env_path)

    def setup_env(self):
        env_path = self.env_path
        if env_path is None:
            # See: https://github.com/pypa/pip/issues/1773 This test may not be 100% accurate, tips on improving?
            # Windows and OSX have their own limits so this may not work 100% of the time
            long_path = "".join(
                [random.choice(string.digits) for _ in range(0, 129)])
            env_path = tempfile.mkdtemp('test_long_env-' + long_path)
            virt_env = VirtualEnvironment(env_path)
            virt_env._create()
            for pack in packages_for_pre_install:
                virt_env.install(pack)

        return env_path

    def test_pip_error(self):
        self.assertRaises(OSError,
                          self.virtual_env_obj._execute_pip, ['-V'],
                          raw_pip=True)
        try:
            self.virtual_env_obj._execute_pip(['-V'])
        except OSError:
            self.fail("_execute_pip raised OSError unexpectedly")
コード例 #2
0
class LongPathTestCase(BaseTest):

    def setUp(self):
        self.env_path = self.setup_env()
        self.virtual_env_obj = VirtualEnvironment(self.env_path)

    def setup_env(self):
        env_path = self.env_path
        if env_path is None:
            # See: https://github.com/pypa/pip/issues/1773 This test may not be 100% accurate, tips on improving?
            # Windows and OSX have their own limits so this may not work 100% of the time
            long_path = "".join([random.choice(string.digits) for _ in range(0, 129)])
            env_path = tempfile.mkdtemp('test_long_env-'+long_path)
            virt_env = VirtualEnvironment(env_path)
            virt_env._create()
            for pack in packages_for_pre_install:
                virt_env.install(pack)

        return env_path

    def test_pip_error(self):
        self.assertRaises(OSError, self.virtual_env_obj._execute_pip, ['-V'], raw_pip=True)
        try:
            self.virtual_env_obj._execute_pip(['-V'])
        except OSError:
            self.fail("_execute_pip raised OSError unexpectedly")
コード例 #3
0
class LongPathTestCase(TestBase):
    """
    Verify that environments that have extremely long paths can be managed.
    See https://github.com/sjkingo/virtualenv-api/issues/30 for more details.
    """
    def setUp(self):
        # See: https://github.com/pypa/pip/issues/1773 This test may not be 100% accurate, tips on improving?
        # Windows and OSX have their own limits so this may not work 100% of the time
        long_path = "".join(
            [random.choice(string.digits) for _ in range(0, 129)])
        self.env_path = tempfile.mkdtemp(long_path)
        self.virtual_env_obj = VirtualEnvironment(self.env_path)

    def test_pip_error(self):
        self.assertRaises(OSError, self.virtual_env_obj._execute,
                          os.path.join('bin', 'pip'), ['-V'])
        try:
            self.virtual_env_obj._execute_pip(['-V'])
        except OSError:
            self.fail("_execute_pip raised OSError unexpectedly")