#! /usr/bin/env py.test import sys, os, pytest, logging from pypiserver import __main__ try: from unittest import mock except ImportError: import mock class main_wrapper(object): def __init__(self): self.run_kwargs = None self.pkgdir = None def __call__(self, argv): sys.stdout.write("Running %s\n" % (argv,)) __main__.main(["pypi-server"] + argv) return self.run_kwargs @pytest.fixture() def main(request, monkeypatch): main = main_wrapper() def run(**kwargs): sys.stdout.write("RUN: %s\n" % kwargs) app = kwargs.pop("app") main.app = app main.run_kwargs = kwargs def listdir(pkgdir): main.pkgdir = pkgdir return [] monkeypatch.setattr("pypiserver.bottle.run", run) monkeypatch.setattr("os.listdir", listdir) return main def test_default_pkgdir(main): main([]) assert os.path.normpath(main.pkgdir) == os.path.normpath(os.path.expanduser("~/packages")) def test_noargs(main): assert main([]) == {'host': "0.0.0.0", 'port': 8080, 'server': "auto"} def test_port(main): expected = dict(host="0.0.0.0", port=8081, server="auto") assert main(["--port=8081"]) == expected assert main(["--port", "8081"]) == expected assert main(["-p", "8081"]) == expected def test_server(main): assert main(["--server=paste"])["server"] == "paste" assert main(["--server", "cherrypy"])["server"] == "cherrypy" def test_root(main): main(["--root", "."]) assert main.app.module.packages.root == os.path.abspath(".") assert main.pkgdir == os.path.abspath(".") def test_root_r(main): main(["-r", "."]) assert main.app.module.packages.root == os.path.abspath(".") assert main.pkgdir == os.path.abspath(".") # def test_root_multiple(main): # pytest.raises(SystemExit, main, [".", "."]) # pytest.raises(SystemExit, main, ["-r", ".", "."]) def test_fallback_url(main): main(["--fallback-url", "https://pypi.mirror/simple"]) assert main.app.module.config.fallback_url == "https://pypi.mirror/simple" def test_fallback_url_default(main): main([]) assert main.app.module.config.fallback_url == \ "https://pypi.python.org/simple" def test_hash_algo_default(main): main([]) assert main.app.module.config.hash_algo == 'md5' def test_hash_algo(main): main(['--hash-algo=sha256']) assert main.app.module.config.hash_algo == 'sha256' def test_hash_algo_off(main): main(['--hash-algo=off']) assert main.app.module.config.hash_algo is None main(['--hash-algo=0']) assert main.app.module.config.hash_algo is None main(['--hash-algo=no']) assert main.app.module.config.hash_algo is None main(['--hash-algo=false']) assert main.app.module.config.hash_algo is None def test_hash_algo_BAD(main): with pytest.raises(SystemExit) as excinfo: main(['--hash-algo BAD']) #assert excinfo.value.message == 'some info' main(['--hash-algo BAD']) print(excinfo) def test_logging(main, tmpdir): logfile = tmpdir.mkdir("logs").join('test.log') main(["-v", "--log-file", logfile.strpath]) assert logfile.check(), logfile def test_logging_verbosity(main): main([]) assert logging.getLogger().level == logging.WARN main(["-v"]) assert logging.getLogger().level == logging.INFO main(["-v", "-v"]) assert logging.getLogger().level == logging.DEBUG main(["-v", "-v", "-v"]) assert logging.getLogger().level == logging.NOTSET def test_welcome_file(main): sample_msg_file = os.path.join(os.path.dirname(__file__), "sample_msg.html") main(["--welcome", sample_msg_file]) assert "Hello pypiserver tester!" in main.app.module.config.welcome_msg def test_welcome_file_default(main): main([]) assert "Welcome to pypiserver!" in main.app.module.config.welcome_msg def test_password_without_auth_list(main, monkeypatch): sysexit = mock.MagicMock(side_effect=ValueError('BINGO')) monkeypatch.setattr('sys.exit', sysexit) with pytest.raises(ValueError) as ex: main(["-P", "pswd-file", "-a", ""]) assert ex.value.args[0] == 'BINGO' with pytest.raises(ValueError) as ex: main(["-a", "."]) assert ex.value.args[0] == 'BINGO' with pytest.raises(ValueError) as ex: main(["-a", ""]) assert ex.value.args[0] == 'BINGO' with pytest.raises(ValueError) as ex: main(["-P", "."]) assert ex.value.args[0] == 'BINGO' def test_password_alone(main, monkeypatch): monkeypatch.setitem(sys.modules, 'passlib', mock.MagicMock()) monkeypatch.setitem(sys.modules, 'passlib.apache', mock.MagicMock()) main(["-P", "pswd-file"]) assert main.app.module.config.authenticated == ['update'] def test_dot_password_without_auth_list(main, monkeypatch): main(["-P", ".", "-a", ""]) assert main.app.module.config.authenticated == [] main(["-P", ".", "-a", "."]) assert main.app.module.config.authenticated == [] def test_password_with_auth_list(main, monkeypatch): monkeypatch.setitem(sys.modules, 'passlib', mock.MagicMock()) monkeypatch.setitem(sys.modules, 'passlib.apache', mock.MagicMock()) main(["-P", "pswd-file", "-a", "update, download"]) assert main.app.module.config.authenticated == ['update', 'download'] def test_password_with_auth_list_with_no_spaces(main, monkeypatch): monkeypatch.setitem(sys.modules, 'passlib', mock.MagicMock()) monkeypatch.setitem(sys.modules, 'passlib.apache', mock.MagicMock()) main(["-P", "pswd-file", "-a", "update,download"]) assert main.app.module.config.authenticated == ['update', 'download'] def test_matrix_auth_list(main, monkeypatch): monkeypatch.setitem(sys.modules, 'passlib', mock.MagicMock()) monkeypatch.setitem(sys.modules, 'passlib.apache', mock.MagicMock()) main(["-P", "pswd-file", "-a", "{'a': ['update', 'list'], 'b': ['download']}"]) assert main.app.module.config.authenticated == {'a': ['update', 'list'], 'b': ['download']} def test_matrix_auth_list_multiple_actions(main, monkeypatch): monkeypatch.setitem(sys.modules, 'passlib', mock.MagicMock()) monkeypatch.setitem(sys.modules, 'passlib.apache', mock.MagicMock()) main(["-P", "pswd-file", "-a", "{'a': ['update', 'list'], 'b': ['download', 'update']}"]) assert main.app.module.config.authenticated == {'a': ['update', 'list'], 'b': ['download', 'update']} def test_matrix_auth_action_list_incorrect_format(capsys, main, monkeypatch): monkeypatch.setitem(sys.modules, 'passlib', mock.MagicMock()) monkeypatch.setitem(sys.modules, 'passlib.apache', mock.MagicMock()) with pytest.raises(SystemExit): main(["-P", "pswd-file", "-a", "{'a': ['update', 'list'], 'b': 'download'}"]) out, err = capsys.readouterr() assert out.split('\n')[1] == 'Matrix auth string must be a dict of lists. Please see the README for details.' def test_matrix_auth_string_is_not_parsable(capsys, main, monkeypatch): monkeypatch.setitem(sys.modules, 'passlib', mock.MagicMock()) monkeypatch.setitem(sys.modules, 'passlib.apache', mock.MagicMock()) with pytest.raises(SystemExit): main(["-P", "pswd-file", "-a", "{'a': ['update', 'list', 'b': 'download'}"]) out, err = capsys.readouterr() assert out.split('\n')[1] == 'Could not parse auth string {\'a\': [\'update\', \'list\', \'b\': \'download\'}! Please ensure string is correctly formatted.'