1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
|
# Copyright 2017 Alethea Katherine Flowers
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
import argparse
import builtins
import copy
import json
import os
import platform
from textwrap import dedent
from unittest import mock
import pytest
import nox
from nox import _options, sessions, tasks
from nox.manifest import WARN_PYTHONS_IGNORED, Manifest
RESOURCES = os.path.join(os.path.dirname(__file__), "resources")
def session_func():
pass
session_func.python = None
session_func.venv_backend = None
session_func.should_warn = {}
session_func.tags = []
session_func.default = True
def session_func_with_python():
pass
session_func_with_python.python = "3.8"
session_func_with_python.venv_backend = None
session_func_with_python.default = True
def session_func_venv_pythons_warning():
pass
session_func_venv_pythons_warning.python = ["3.7"]
session_func_venv_pythons_warning.venv_backend = "none"
session_func_venv_pythons_warning.should_warn = {WARN_PYTHONS_IGNORED: ["3.7"]}
def test_load_nox_module():
config = _options.options.namespace(noxfile=os.path.join(RESOURCES, "noxfile.py"))
noxfile_module = tasks.load_nox_module(config)
assert noxfile_module.SIGIL == "123"
def test_load_nox_module_expandvars():
# Assert that variables are expanded when looking up the path to the Noxfile
# This is particular importand in Windows when one needs to use variables like
# %TEMP% to point to the noxfile.py
with mock.patch.dict(os.environ, {"RESOURCES_PATH": RESOURCES}):
if platform.system().lower().startswith("win"):
config = _options.options.namespace(noxfile="%RESOURCES_PATH%/noxfile.py")
else:
config = _options.options.namespace(noxfile="${RESOURCES_PATH}/noxfile.py")
noxfile_module = tasks.load_nox_module(config)
assert noxfile_module.__file__ == os.path.join(RESOURCES, "noxfile.py")
assert noxfile_module.SIGIL == "123"
def test_load_nox_module_not_found(caplog, tmp_path):
bogus_noxfile = tmp_path / "bogus.py"
config = _options.options.namespace(noxfile=str(bogus_noxfile))
assert tasks.load_nox_module(config) == 2
assert (
f"Failed to load Noxfile {bogus_noxfile}, no such file exists." in caplog.text
)
def test_load_nox_module_os_error(caplog):
noxfile = os.path.join(RESOURCES, "noxfile.py")
config = _options.options.namespace(noxfile=noxfile)
with mock.patch("nox.tasks.check_nox_version", autospec=True) as version_checker:
version_checker.side_effect = OSError
assert tasks.load_nox_module(config) == 2
assert f"Failed to load Noxfile {noxfile}" in caplog.text
@pytest.fixture
def reset_needs_version():
"""Do not leak ``nox.needs_version`` between tests."""
try:
yield
finally:
nox.needs_version = None
@pytest.fixture
def reset_global_nox_options():
nox.options = _options.options.noxfile_namespace()
def test_load_nox_module_needs_version_static(reset_needs_version, tmp_path):
text = dedent(
"""
import nox
nox.needs_version = ">=9999.99.99"
"""
)
noxfile = tmp_path / "noxfile.py"
noxfile.write_text(text)
config = _options.options.namespace(noxfile=str(noxfile))
assert tasks.load_nox_module(config) == 2
def test_load_nox_module_needs_version_dynamic(reset_needs_version, tmp_path):
text = dedent(
"""
import nox
NOX_NEEDS_VERSION = ">=9999.99.99"
nox.needs_version = NOX_NEEDS_VERSION
"""
)
noxfile = tmp_path / "noxfile.py"
noxfile.write_text(text)
config = _options.options.namespace(noxfile=str(noxfile))
tasks.load_nox_module(config)
# Dynamic version requirements are not checked.
assert nox.needs_version == ">=9999.99.99"
def test_discover_session_functions_decorator():
# Define sessions using the decorator.
@nox.session
def foo():
pass
@nox.session
def bar():
pass
@nox.session(name="not-a-bar")
def not_a_bar():
pass
def notasession():
pass
# Mock up a noxfile.py module and configuration.
mock_module = argparse.Namespace(
__name__=foo.__module__, foo=foo, bar=bar, notasession=notasession
)
config = _options.options.namespace(sessions=(), keywords=(), posargs=[])
# Get the manifest and establish that it looks like what we expect.
manifest = tasks.discover_manifest(mock_module, config)
sessions = list(manifest)
assert [s.func for s in sessions] == [foo, bar, not_a_bar]
assert [i.friendly_name for i in sessions] == ["foo", "bar", "not-a-bar"]
def test_filter_manifest():
config = _options.options.namespace(
sessions=None, pythons=(), keywords=(), posargs=[]
)
manifest = Manifest({"foo": session_func, "bar": session_func}, config)
return_value = tasks.filter_manifest(manifest, config)
assert return_value is manifest
assert len(manifest) == 2
def test_filter_manifest_not_found():
config = _options.options.namespace(
sessions=("baz",), pythons=(), keywords=(), posargs=[]
)
manifest = Manifest({"foo": session_func, "bar": session_func}, config)
return_value = tasks.filter_manifest(manifest, config)
assert return_value == 3
def test_filter_manifest_pythons():
config = _options.options.namespace(
sessions=None, pythons=("3.8",), keywords=(), posargs=[]
)
manifest = Manifest(
{"foo": session_func_with_python, "bar": session_func, "baz": session_func},
config,
)
return_value = tasks.filter_manifest(manifest, config)
assert return_value is manifest
assert len(manifest) == 1
def test_filter_manifest_pythons_not_found(caplog):
config = _options.options.namespace(
sessions=None, pythons=("1.2",), keywords=(), posargs=[]
)
manifest = Manifest(
{"foo": session_func_with_python, "bar": session_func, "baz": session_func},
config,
)
return_value = tasks.filter_manifest(manifest, config)
assert return_value == 3
assert "Python version selection caused no sessions to be selected." in caplog.text
def test_filter_manifest_keywords():
config = _options.options.namespace(
sessions=None, pythons=(), keywords="foo or bar", posargs=[]
)
manifest = Manifest(
{"foo": session_func, "bar": session_func, "baz": session_func}, config
)
return_value = tasks.filter_manifest(manifest, config)
assert return_value is manifest
assert len(manifest) == 2
def test_filter_manifest_keywords_not_found(caplog):
config = _options.options.namespace(
sessions=None, pythons=(), keywords="mouse or python", posargs=[]
)
manifest = Manifest(
{"foo": session_func, "bar": session_func, "baz": session_func}, config
)
return_value = tasks.filter_manifest(manifest, config)
assert return_value == 3
assert "No sessions selected after filtering by keyword." in caplog.text
def test_filter_manifest_keywords_syntax_error():
config = _options.options.namespace(
sessions=None, pythons=(), keywords="foo:bar", posargs=[]
)
manifest = Manifest({"foo_bar": session_func, "foo_baz": session_func}, config)
return_value = tasks.filter_manifest(manifest, config)
assert return_value == 3
@pytest.mark.parametrize(
"tags,session_count",
[
(None, 4),
(["foo"], 3),
(["bar"], 3),
(["baz"], 1),
(["foo", "bar"], 4),
(["foo", "baz"], 3),
(["foo", "bar", "baz"], 4),
],
)
def test_filter_manifest_tags(tags, session_count):
@nox.session(tags=["foo"])
def qux():
pass
@nox.session(tags=["bar"])
def quux():
pass
@nox.session(tags=["foo", "bar"])
def quuz():
pass
@nox.session(tags=["foo", "bar", "baz"])
def corge():
pass
config = _options.options.namespace(
sessions=None, pythons=(), posargs=[], tags=tags
)
manifest = Manifest(
{
"qux": qux,
"quux": quux,
"quuz": quuz,
"corge": corge,
},
config,
)
return_value = tasks.filter_manifest(manifest, config)
assert return_value is manifest
assert len(manifest) == session_count
@pytest.mark.parametrize(
"tags",
[
["Foo"],
["not-found"],
],
ids=[
"tags-are-case-insensitive",
"tag-does-not-exist",
],
)
def test_filter_manifest_tags_not_found(tags, caplog):
@nox.session(tags=["foo"])
def quux():
pass
config = _options.options.namespace(
sessions=None, pythons=(), posargs=[], tags=tags
)
manifest = Manifest({"quux": quux}, config)
return_value = tasks.filter_manifest(manifest, config)
assert return_value == 3
assert "Tag selection caused no sessions to be selected." in caplog.text
def test_merge_sessions_and_tags(reset_global_nox_options, generate_noxfile_options):
@nox.session(tags=["foobar"])
def test():
pass
@nox.session(tags=["foobar"])
def bar():
pass
noxfile_path = generate_noxfile_options(reuse_existing_virtualenvs=True)
config = _options.options.namespace(
noxfile=noxfile_path,
sessions=None,
pythons=(),
posargs=[],
tags=["foobar"],
)
nox_module = tasks.load_nox_module(config)
tasks.merge_noxfile_options(nox_module, config)
manifest = Manifest({"test": test, "bar": bar}, config)
return_value = tasks.filter_manifest(manifest, config)
assert return_value is manifest
assert len(manifest) == 2
@pytest.mark.parametrize("selection", [None, ["qux"], ["quuz"], ["qux", "quuz"]])
def test_default_false(selection):
@nox.session()
def qux():
pass
@nox.session()
def quux():
pass
@nox.session(default=False)
def quuz():
pass
@nox.session(default=False)
def corge():
pass
config = _options.options.namespace(sessions=selection, pythons=(), posargs=[])
manifest = Manifest(
{
"qux": qux,
"quux": quux,
"quuz": quuz,
"corge": corge,
},
config,
)
return_value = tasks.filter_manifest(manifest, config)
assert return_value is manifest
expected = 2 if selection is None else len(selection)
assert len(manifest) == expected
def test_honor_list_request_noop():
config = _options.options.namespace(list_sessions=False)
manifest = {"thing": mock.sentinel.THING}
return_value = tasks.honor_list_request(manifest, global_config=config)
assert return_value is manifest
@pytest.mark.parametrize(
"description, module_docstring",
[
(None, None),
(None, "hello docstring"),
("Bar", None),
("Bar", "hello docstring"),
],
)
def test_honor_list_request(description, module_docstring):
config = _options.options.namespace(
list_sessions=True, noxfile="noxfile.py", color=False
)
manifest = mock.create_autospec(Manifest)
manifest.module_docstring = module_docstring
manifest.list_all_sessions.return_value = [
(argparse.Namespace(friendly_name="foo", description=description), True)
]
return_value = tasks.honor_list_request(manifest, global_config=config)
assert return_value == 0
def test_honor_list_request_skip_and_selected(capsys):
config = _options.options.namespace(
list_sessions=True, noxfile="noxfile.py", color=False
)
manifest = mock.create_autospec(Manifest)
manifest.module_docstring = None
manifest.list_all_sessions.return_value = [
(argparse.Namespace(friendly_name="foo", description=None), True),
(argparse.Namespace(friendly_name="bar", description=None), False),
]
return_value = tasks.honor_list_request(manifest, global_config=config)
assert return_value == 0
out = capsys.readouterr().out
assert "* foo" in out
assert "- bar" in out
def test_honor_list_request_prints_docstring_if_present(capsys):
config = _options.options.namespace(
list_sessions=True, noxfile="noxfile.py", color=False
)
manifest = mock.create_autospec(Manifest)
manifest.module_docstring = "Hello I'm a docstring"
manifest.list_all_sessions.return_value = [
(argparse.Namespace(friendly_name="foo", description=None), True),
(argparse.Namespace(friendly_name="bar", description=None), False),
]
return_value = tasks.honor_list_request(manifest, global_config=config)
assert return_value == 0
out = capsys.readouterr().out
assert "Hello I'm a docstring" in out
def test_honor_list_request_doesnt_print_docstring_if_not_present(capsys):
config = _options.options.namespace(
list_sessions=True, noxfile="noxfile.py", color=False
)
manifest = mock.create_autospec(Manifest)
manifest.module_docstring = None
manifest.list_all_sessions.return_value = [
(argparse.Namespace(friendly_name="foo", description=None), True),
(argparse.Namespace(friendly_name="bar", description=None), False),
]
return_value = tasks.honor_list_request(manifest, global_config=config)
assert return_value == 0
out = capsys.readouterr().out
assert "Hello I'm a docstring" not in out
def test_honor_list_json_request(capsys):
config = _options.options.namespace(
list_sessions=True, noxfile="noxfile.py", json=True
)
manifest = mock.create_autospec(Manifest)
manifest.list_all_sessions.return_value = [
(
argparse.Namespace(
name="bar",
friendly_name="foo",
description="simple",
func=argparse.Namespace(python="123"),
tags=[],
),
True,
),
(
argparse.Namespace(),
False,
),
]
return_value = tasks.honor_list_request(manifest, global_config=config)
assert return_value == 0
assert json.loads(capsys.readouterr().out) == [
{
"session": "foo",
"name": "bar",
"description": "simple",
"python": "123",
"tags": [],
"call_spec": {},
}
]
def test_refuse_json_nolist_request(caplog):
config = _options.options.namespace(
list_sessions=False, noxfile="noxfile.py", json=True
)
manifest = mock.create_autospec(Manifest)
manifest.list_all_sessions.return_value = [
(
argparse.Namespace(
name="bar",
friendly_name="foo",
description="simple",
func=argparse.Namespace(python="123"),
tags=[],
),
True,
)
]
return_value = tasks.honor_list_request(manifest, global_config=config)
assert return_value == 3
(record,) = caplog.records
assert record.message == "Must specify --list-sessions with --json"
def test_empty_session_list_in_noxfile(capsys):
config = _options.options.namespace(noxfile="noxfile.py", sessions=(), posargs=[])
manifest = Manifest({"session": session_func}, config)
return_value = tasks.filter_manifest(manifest, global_config=config)
assert return_value == 0
assert "No sessions selected." in capsys.readouterr().out
def test_empty_session_None_in_noxfile(capsys):
config = _options.options.namespace(noxfile="noxfile.py", sessions=None, posargs=[])
manifest = Manifest({"session": session_func}, config)
return_value = tasks.filter_manifest(manifest, global_config=config)
assert return_value == manifest
def test_verify_manifest_empty():
config = _options.options.namespace(sessions=(), keywords=())
manifest = Manifest({}, config)
return_value = tasks.filter_manifest(manifest, global_config=config)
assert return_value == 3
def test_verify_manifest_nonempty():
config = _options.options.namespace(sessions=None, keywords=(), posargs=[])
manifest = Manifest({"session": session_func}, config)
return_value = tasks.filter_manifest(manifest, global_config=config)
assert return_value == manifest
def test_verify_manifest_list(capsys):
config = _options.options.namespace(sessions=(), keywords=(), posargs=[])
manifest = Manifest({"session": session_func}, config)
return_value = tasks.filter_manifest(manifest, global_config=config)
assert return_value == 0
assert "Please select a session" in capsys.readouterr().out
@pytest.mark.parametrize("with_warnings", [False, True], ids="with_warnings={}".format)
def test_run_manifest(with_warnings):
# Set up a valid manifest.
config = _options.options.namespace(stop_on_first_error=False)
sessions_ = [
mock.Mock(spec=sessions.SessionRunner),
mock.Mock(spec=sessions.SessionRunner),
]
manifest = Manifest({}, config)
manifest._queue = copy.copy(sessions_)
# Ensure each of the mocks returns a successful result
for mock_session in sessions_:
mock_session.execute.return_value = sessions.Result(
session=mock_session, status=sessions.Status.SUCCESS
)
# we need the should_warn attribute, add some func
if with_warnings:
mock_session.name = "hello"
mock_session.func = session_func_venv_pythons_warning
else:
mock_session.func = session_func
# Run the manifest.
results = tasks.run_manifest(manifest, global_config=config)
# Verify the results look correct.
assert len(results) == 2
assert results[0].session == sessions_[0]
assert results[1].session == sessions_[1]
for result in results:
assert isinstance(result, sessions.Result)
assert result.status == sessions.Status.SUCCESS
def test_run_manifest_abort_on_first_failure():
# Set up a valid manifest.
config = _options.options.namespace(stop_on_first_error=True)
sessions_ = [
mock.Mock(spec=sessions.SessionRunner),
mock.Mock(spec=sessions.SessionRunner),
]
manifest = Manifest({}, config)
manifest._queue = copy.copy(sessions_)
# Ensure each of the mocks returns a successful result.
for mock_session in sessions_:
mock_session.execute.return_value = sessions.Result(
session=mock_session, status=sessions.Status.FAILED
)
# we need the should_warn attribute, add some func
mock_session.func = session_func
# Run the manifest.
results = tasks.run_manifest(manifest, global_config=config)
# Verify the results look correct.
assert len(results) == 1
assert isinstance(results[0], sessions.Result)
assert results[0].session == sessions_[0]
assert results[0].status == sessions.Status.FAILED
# Verify that only the first session was called.
assert sessions_[0].execute.called
assert not sessions_[1].execute.called
def test_print_summary_one_result():
results = [mock.sentinel.RESULT]
with mock.patch("nox.tasks.logger", autospec=True) as logger:
answer = tasks.print_summary(results, object())
assert not logger.warning.called
assert not logger.success.called
assert not logger.error.called
assert answer is results
def test_print_summary():
results = [
sessions.Result(
session=argparse.Namespace(friendly_name="foo"),
status=sessions.Status.SUCCESS,
),
sessions.Result(
session=argparse.Namespace(friendly_name="bar"),
status=sessions.Status.FAILED,
),
]
with mock.patch.object(sessions.Result, "log", autospec=True) as log:
answer = tasks.print_summary(results, object())
assert log.call_count == 2
assert answer is results
def test_create_report_noop():
config = _options.options.namespace(report=None)
with mock.patch.object(builtins, "open", autospec=True) as open_:
results = tasks.create_report(mock.sentinel.RESULTS, config)
assert not open_.called
assert results is mock.sentinel.RESULTS
def test_create_report():
config = _options.options.namespace(report="/path/to/report")
results = [
sessions.Result(
session=argparse.Namespace(
signatures=["foosig"], name="foo", func=object()
),
status=sessions.Status.SUCCESS,
)
]
with mock.patch.object(builtins, "open", autospec=True) as open_:
with mock.patch.object(json, "dump", autospec=True) as dump:
answer = tasks.create_report(results, config)
assert answer is results
dump.assert_called_once_with(
{
"result": 1,
"sessions": [
{
"name": "foo",
"signatures": ["foosig"],
"result": "success",
"result_code": 1,
"args": {},
}
],
},
mock.ANY,
indent=2,
)
open_.assert_called_once_with("/path/to/report", "w")
def test_final_reduce():
config = object()
assert tasks.final_reduce([True, True], config) == 0
assert tasks.final_reduce([True, False], config) == 1
assert tasks.final_reduce([], config) == 0
|