Source code for meta_package_manager.tests.test_cli_restore

# Copyright Kevin Deldycke <kevin@deldycke.com> and contributors.
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

from __future__ import annotations

import pytest

from meta_package_manager.pool import pool

from .conftest import default_manager_ids
from .test_cli import CLISubCommandTests


[docs]@pytest.fixture() def subcmd(create_config): """Seed common subcommand tests with a dummy file and content to allow the CLI to not fail on required file input.""" toml_path = create_config( "dummy.toml", """ [dummy_manager] fancy_package = "0.0.1" """, ) return "restore", str(toml_path)
[docs]@pytest.mark.skip(reason="Generated config file is not isolated from other tests.") class TestRestore(CLISubCommandTests):
[docs] @staticmethod def evaluate_signals(mid, stdout, stderr): yield from ( # Warning message for restore command. f"warning: No [{mid}] section found." in stderr, # Restoring message. f"Restore {mid} packages..." in stderr, # Common "not found" warning message. f"warning: Skip unavailable {mid} manager." in stderr, )
[docs] @pytest.mark.destructive() def test_default_all_managers(self, invoke, create_config): toml_path = create_config( "all-managers.toml", "".join( f""" [{m}] blah = 123 """ for m in pool.all_manager_ids ), ) result = invoke("--verbosity", "INFO", "restore", str(toml_path)) assert result.exit_code == 0 assert "all-managers.toml" in result.stderr self.check_manager_selection(result)
[docs] @pytest.mark.destructive() @default_manager_ids def test_single_manager(self, invoke, create_config, manager_id): toml_path = create_config( "all-managers.toml", "".join( f""" [{m}] blah = 123 """ for m in pool.all_manager_ids ), ) result = invoke( "--verbosity", "INFO", f"--{manager_id}", "restore", str(toml_path) ) assert result.exit_code == 0 self.check_manager_selection(result, {manager_id})
[docs] def test_ignore_unrecognized_manager(self, invoke, create_config): toml_path = create_config( "unrecognized.toml", """ [random_section] blah = 123 """, ) result = invoke("--verbosity", "INFO", "restore", str(toml_path)) assert result.exit_code == 0 assert "unrecognized.toml" in result.stderr assert "Ignore [random_section] section" in result.stderr
[docs] @pytest.mark.destructive() def test_restore_single_manager(self, invoke, create_config): toml_path = create_config( "pip-npm-dummy.toml", """ [pip] leftpad = "0.1.2" [npm] chance = "1.1.9" """, ) result = invoke( "--verbosity", "INFO", "--npm", "restore", str(toml_path), color=False ) assert result.exit_code == 0 assert "pip-npm-dummy.toml" in result.stderr assert "Restore pip packages..." not in result.stderr assert "Restore npm packages..." in result.stderr
[docs] @pytest.mark.destructive() def test_restore_excluded_manager(self, invoke, create_config): toml_path = create_config( "pip-npm-dummy.toml", """ [pip] leftpad = "0.1.2" [npm] chance = "1.1.9" """, ) result = invoke( "--verbosity", "INFO", "--exclude", "npm", "restore", str(toml_path), color=False, ) assert result.exit_code == 0 assert "pip-npm-dummy.toml" in result.stderr assert "Restore pip packages..." in result.stderr assert "Restore npm packages..." not in result.stderr
[docs] def test_empty_manager(self, invoke, create_config): toml_path = create_config( "pip-empty.toml", """ [pip] """, ) result = invoke("--verbosity", "INFO", "restore", str(toml_path), color=False) assert result.exit_code == 0 assert "pip-empty.toml" in result.stderr assert "Restore pip packages..." in result.stderr