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


Python pipmanager.PipManager类代码示例

本文整理汇总了Python中fades.pipmanager.PipManager的典型用法代码示例。如果您正苦于以下问题:Python PipManager类的具体用法?Python PipManager怎么用?Python PipManager使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: test_install_raise_error

 def test_install_raise_error(self):
     mgr = PipManager(BIN_PATH, pip_installed=True)
     with patch.object(helpers, 'logged_exec') as mock:
         mock.side_effect = Exception("Kapow!")
         with self.assertRaises(Exception):
             mgr.install('foo')
     self.assertLoggedError("Error installing foo: Kapow!")
开发者ID:malderete,项目名称:fades,代码行数:7,代码来源:test_pipmanager.py

示例2: create_venv

def create_venv(requested_deps, interpreter, is_current):
    """Create a new virtualvenv with the requirements of this script."""
    # create virtualenv
    env = FadesEnvBuilder()
    env_path, env_bin_path, pip_installed = env.create_env(interpreter, is_current)
    venv_data = {}
    venv_data['env_path'] = env_path
    venv_data['env_bin_path'] = env_bin_path
    venv_data['pip_installed'] = pip_installed

    # install deps
    installed = {}
    for repo in requested_deps.keys():
        if repo == REPO_PYPI:
            mgr = PipManager(env_bin_path, pip_installed=pip_installed)
        else:
            logger.warning("Install from %r not implemented", repo)
            continue
        installed[repo] = {}

        repo_requested = requested_deps[repo]
        logger.debug("Installing dependencies for repo %r: requested=%s", repo, repo_requested)
        for dependency in repo_requested:
            mgr.install(dependency)

            # always store the installed dependency, as in the future we'll select the venv
            # based on what is installed, not what used requested (remember that user may
            # request >, >=, etc!)
            project = dependency.project_name
            installed[repo][project] = mgr.get_version(project)

        logger.debug("Installed dependencies: %s", installed)
    return venv_data, installed
开发者ID:luciotorre,项目名称:fades,代码行数:33,代码来源:envbuilder.py

示例3: test_install_without_pip

 def test_install_without_pip(self):
     mgr = PipManager('/usr/bin', pip_installed=False)
     with patch.object(helpers, 'logged_exec') as mocked_exec:
         with patch.object(mgr, '_brute_force_install_pip') as mocked_install_pip:
             mgr.install('foo')
             self.assertEqual(mocked_install_pip.call_count, 1)
         mocked_exec.assert_called_with(['/usr/bin/pip', 'install', 'foo'])
开发者ID:arielrossanigo,项目名称:fades,代码行数:7,代码来源:test_pipmanager.py

示例4: test_say_hi_on_first_install

 def test_say_hi_on_first_install(self):
     mgr = PipManager(BIN_PATH, pip_installed=True, options=['--bar=baz'])
     with patch.object(helpers, 'logged_exec'):
         mgr.install('foo')
         self.assertLoggedInfo("Hi! This is fades")
         logassert.setup(self, 'fades.pipmanager')
         mgr.install('bar')
         self.assertNotLoggedInfo("Hi! This is fades")
开发者ID:malderete,项目名称:fades,代码行数:8,代码来源:test_pipmanager.py

示例5: test_install_without_pip

 def test_install_without_pip(self):
     mgr = PipManager(BIN_PATH, pip_installed=False)
     pip_path = os.path.join(BIN_PATH, 'pip')
     with patch.object(helpers, 'logged_exec') as mocked_exec:
         with patch.object(mgr, '_brute_force_install_pip') as mocked_install_pip:
             mgr.install('foo')
             self.assertEqual(mocked_install_pip.call_count, 1)
         mocked_exec.assert_called_with([pip_path, 'install', 'foo'])
开发者ID:malderete,项目名称:fades,代码行数:8,代码来源:test_pipmanager.py

示例6: test_get_parsing_ok

 def test_get_parsing_ok(self):
     mocked_stdout = ['Name: foo',
                      'Version: 2.0.0',
                      'Location: ~/.local/share/fades/86cc492/lib/python3.4/site-packages',
                      'Requires: ']
     mgr = PipManager(BIN_PATH, pip_installed=True)
     with patch.object(helpers, 'logged_exec') as mock:
         mock.return_value = mocked_stdout
         version = mgr.get_version('foo')
     self.assertEqual(version, '2.0.0')
开发者ID:malderete,项目名称:fades,代码行数:10,代码来源:test_pipmanager.py

示例7: test_real_case_levenshtein

 def test_real_case_levenshtein(self):
     mocked_stdout = [
         'Metadata-Version: 1.1',
         'Name: python-Levenshtein',
         'Version: 0.12.0',
         'License: GPL',
     ]
     mgr = PipManager(BIN_PATH, pip_installed=True)
     with patch.object(helpers, 'logged_exec') as mock:
         mock.return_value = mocked_stdout
         version = mgr.get_version('foo')
     self.assertEqual(version, '0.12.0')
开发者ID:malderete,项目名称:fades,代码行数:12,代码来源:test_pipmanager.py

示例8: test_get_parsing_error

 def test_get_parsing_error(self):
     mocked_stdout = ['Name: foo',
                      'Release: 2.0.0',
                      'Location: ~/.local/share/fades/86cc492/lib/python3.4/site-packages',
                      'Requires: ']
     mgr = PipManager(BIN_PATH, pip_installed=True)
     with patch.object(helpers, 'logged_exec') as mock:
         version = mgr.get_version('foo')
         mock.return_value = mocked_stdout
     self.assertEqual(version, '')
     self.assertLoggedError('Fades is having problems getting the installed version. '
                            'Run with -v or check the logs for details')
开发者ID:malderete,项目名称:fades,代码行数:12,代码来源:test_pipmanager.py

示例9: test_download_pip_installer

    def test_download_pip_installer(self):
        mgr = PipManager(BIN_PATH, pip_installed=False)

        # get a tempfile and remove it, so later the installer is downloaded there
        tempfile = get_tempfile(self)
        os.remove(tempfile)

        mgr.pip_installer_fname = tempfile
        with patch('fades.pipmanager.request.urlopen') as urlopen:
            urlopen.return_value = io.BytesIO(b'hola')
            mgr._download_pip_installer()
        self.assertTrue(os.path.exists(mgr.pip_installer_fname))
        urlopen.assert_called_once_with(pipmanager.PIP_INSTALLER)
开发者ID:malderete,项目名称:fades,代码行数:13,代码来源:test_pipmanager.py

示例10: test_brute_force_install_pip_installer_exists

    def test_brute_force_install_pip_installer_exists(self):
        mgr = PipManager(BIN_PATH, pip_installed=False)
        python_path = os.path.join(BIN_PATH, 'python')
        with patch.object(helpers, 'logged_exec') as mocked_exec, \
                patch.object(mgr, '_download_pip_installer') as download_installer:

            # get the tempfile but leave it there to be found
            mgr.pip_installer_fname = get_tempfile(self)
            mgr._brute_force_install_pip()

            self.assertEqual(download_installer.call_count, 0)
            mocked_exec.assert_called_with([python_path, mgr.pip_installer_fname, '-I'])
        self.assertTrue(mgr.pip_installed)
开发者ID:malderete,项目名称:fades,代码行数:13,代码来源:test_pipmanager.py

示例11: test_brute_force_install_pip_no_installer

    def test_brute_force_install_pip_no_installer(self):
        mgr = PipManager(BIN_PATH, pip_installed=False)
        python_path = os.path.join(BIN_PATH, 'python')
        with patch.object(helpers, 'logged_exec') as mocked_exec, \
                patch.object(mgr, '_download_pip_installer') as download_installer:

            # get the tempfile and remove it so then it's not found
            tempfile = get_tempfile(self)
            os.remove(tempfile)

            mgr.pip_installer_fname = tempfile
            mgr._brute_force_install_pip()

            download_installer.assert_called_once_with()
        mocked_exec.assert_called_with([python_path, mgr.pip_installer_fname, '-I'])
        self.assertTrue(mgr.pip_installed)
开发者ID:malderete,项目名称:fades,代码行数:16,代码来源:test_pipmanager.py

示例12: create_venv

def create_venv(requested_deps, interpreter, is_current, options, pip_options):
    """Create a new virtualvenv with the requirements of this script."""
    # create virtualenv
    env = _FadesEnvBuilder()
    env_path, env_bin_path, pip_installed = env.create_env(interpreter, is_current, options)
    venv_data = {}
    venv_data['env_path'] = env_path
    venv_data['env_bin_path'] = env_bin_path
    venv_data['pip_installed'] = pip_installed

    # install deps
    installed = {}
    for repo in requested_deps.keys():
        if repo in (REPO_PYPI, REPO_VCS):
            mgr = PipManager(env_bin_path, pip_installed=pip_installed, options=pip_options)
        else:
            logger.warning("Install from %r not implemented", repo)
            continue
        installed[repo] = {}

        repo_requested = requested_deps[repo]
        logger.debug("Installing dependencies for repo %r: requested=%s", repo, repo_requested)
        for dependency in repo_requested:
            try:
                mgr.install(dependency)
            except Exception:
                logger.debug("Installation Step failed, removing virtualenv")
                destroy_venv(env_path)
                raise FadesError('Dependency installation failed')

            if repo == REPO_VCS:
                # no need to request the installed version, as we'll always compare
                # to the url itself
                project = dependency.url
                version = None
            else:
                # always store the installed dependency, as in the future we'll select the venv
                # based on what is installed, not what used requested (remember that user may
                # request >, >=, etc!)
                project = dependency.project_name
                version = mgr.get_version(project)
            installed[repo][project] = version

        logger.debug("Installed dependencies: %s", installed)
    return venv_data, installed
开发者ID:PyAr,项目名称:fades,代码行数:45,代码来源:envbuilder.py

示例13: test_install_with_options_using_equal

 def test_install_with_options_using_equal(self):
     mgr = PipManager(BIN_PATH, pip_installed=True, options=['--bar=baz'])
     pip_path = os.path.join(BIN_PATH, 'pip')
     with patch.object(helpers, 'logged_exec') as mock:
         mgr.install('foo')
         mock.assert_called_with([pip_path, 'install', 'foo', '--bar=baz'])
开发者ID:malderete,项目名称:fades,代码行数:6,代码来源:test_pipmanager.py

示例14: test_install_multiword_dependency

 def test_install_multiword_dependency(self):
     mgr = PipManager(BIN_PATH, pip_installed=True)
     pip_path = os.path.join(BIN_PATH, 'pip')
     with patch.object(helpers, 'logged_exec') as mock:
         mgr.install('foo bar')
         mock.assert_called_with([pip_path, 'install', 'foo', 'bar'])
开发者ID:malderete,项目名称:fades,代码行数:6,代码来源:test_pipmanager.py

示例15: test_install_with_options_using_equal

 def test_install_with_options_using_equal(self):
     mgr = PipManager('/usr/bin', pip_installed=True, options=['--bar=baz'])
     with patch.object(helpers, 'logged_exec') as mock:
         mgr.install('foo')
         mock.assert_called_with(['/usr/bin/pip', 'install', 'foo', '--bar=baz'])
开发者ID:arielrossanigo,项目名称:fades,代码行数:5,代码来源:test_pipmanager.py


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