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 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
|
import os
from copy import deepcopy
from textwrap import dedent
import mozunit
import pytest
from mach.util import get_state_dir
from taskgraph.taskgraph import TaskGraph
from tryselect.tasks import add_chunk_patterns
@pytest.fixture(scope="module")
def monkeymodule():
with pytest.MonkeyPatch.context() as mp:
yield mp
@pytest.fixture(scope="module", autouse=True)
def setup_state_dir(monkeymodule, tmp_path_factory, run_mach):
state_dir = tmp_path_factory.mktemp("mozbuild")
machrc = state_dir / "machrc"
machrc.write_text(
dedent(
"""
[try]
default=fuzzy
"""
).lstrip()
)
monkeymodule.setenv("EDITOR", "cat")
monkeymodule.setenv("MOZBUILD_STATE_PATH", str(state_dir))
monkeymodule.setenv("MACH_TRY_PRESET_PATHS", str(state_dir / "try_presets.yml"))
monkeymodule.setenv("MACHRC", machrc)
get_state_dir(specific_to_topsrcdir=True)
try:
run_mach(["try", "--help"]) # create the virtualenv
except SystemExit:
pass
@pytest.fixture
def target_task_set():
return {
"test/foo-opt": {
"kind": "test",
"label": "test/foo-opt",
"attributes": {},
"task": {},
"optimization": {},
"dependencies": {},
},
"test/foo-debug": {
"kind": "test",
"label": "test/foo-debug",
"attributes": {},
"task": {},
"optimization": {},
"dependencies": {},
},
"build-baz": {
"kind": "build",
"label": "build-baz",
"attributes": {},
"task": {},
"optimization": {},
"dependencies": {},
},
}
@pytest.fixture
def full_task_set(target_task_set):
full_task_set = deepcopy(target_task_set)
full_task_set.update(
{
"test/bar-opt": {
"kind": "test",
"label": "test/bar-opt",
"attributes": {},
"task": {},
"optimization": {},
"dependencies": {},
},
"test/bar-debug": {
"kind": "test",
"label": "test/bar-debug",
"attributes": {},
"task": {},
"optimization": {},
"dependencies": {},
},
}
)
return full_task_set
@pytest.mark.skipif(os.name == "nt", reason="site validation fails in CI")
@pytest.mark.parametrize(
"selector,commands,expected",
(
pytest.param(
"fuzzy",
["try", "fuzzy", "-q", "'foo"],
dedent(
"""
Commit message:
Fuzzy query='foo
mach try command: `./mach try fuzzy -q 'foo`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="fuzzy",
),
pytest.param(
"fuzzy",
["try", "fuzzy", "-q", "'bar"],
"no tasks selected\n",
id="fuzzy",
),
pytest.param(
"fuzzy",
["try", "fuzzy", "--full", "-q", "'bar"],
dedent(
"""
Commit message:
Fuzzy query='bar
mach try command: `./mach try fuzzy --full -q 'bar`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/bar-debug",
"test/bar-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="fuzzy",
),
pytest.param(
"fuzzy",
["try", "fuzzy", "--full", "-q", "'foo", "-q", "'bar"],
dedent(
"""
Commit message:
Fuzzy query='foo&query='bar
mach try command: `./mach try fuzzy --full -q 'foo -q 'bar`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/bar-debug",
"test/bar-opt",
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="fuzzy multiple selectors",
),
pytest.param(
"fuzzy",
["try", "fuzzy", "--and", "-q", "'foo", "-q", "'opt"],
dedent(
"""
Commit message:
Fuzzy query='foo&query='opt
mach try command: `./mach try fuzzy --and -q 'foo -q 'opt`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="fuzzy query intersection",
),
pytest.param(
"fuzzy",
[
["try", "fuzzy", "--save", "foo", "-q", "'test", "-q", "'opt"],
["try", "fuzzy", "--preset", "foo", "-xq", "'test"],
],
dedent(
"""
preset saved, run with: --preset=foo
Commit message:
Fuzzy (preset: foo) query='test&query='opt&query='test
mach try command: `./mach try fuzzy --preset foo -xq 'test`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="fuzzy intersection with preset containing multiple queries",
),
pytest.param(
"fuzzy",
["try", "fuzzy", "--full", "-q", "testfoo | 'testbar"],
dedent(
"""
Commit message:
Fuzzy query=testfoo | 'testbar
mach try command: `./mach try fuzzy --full -q testfoo | 'testbar`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="fuzzy exact match",
),
pytest.param(
"fuzzy",
["try", "fuzzy", "--full", "--exact", "-q", "testfoo | 'testbar"],
dedent(
"""
Commit message:
Fuzzy query=testfoo | 'testbar
mach try command: `./mach try fuzzy --full --exact -q testfoo | 'testbar`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/bar-debug",
"test/bar-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="fuzzy exact match",
),
pytest.param(
"fuzzy",
["try", "fuzzy", "--env", "FOO=1", "--env", "BAR=baz", "-q", "'foo"],
dedent(
"""
Commit message:
Fuzzy query='foo
mach try command: `./mach try fuzzy --env FOO=1 --env BAR=baz -q 'foo`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"BAR": "baz",
"FOO": "1",
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="fuzzy task config",
),
pytest.param(
"auto",
["try", "auto"],
dedent(
"""
Commit message:
Tasks automatically selected.
mach try command: `./mach try auto`
Pushed via `mach try auto`
Calculated try_task_config.json:
{
"parameters": {
"filters": [
"try_auto"
],
"optimize_strategies": "gecko_taskgraph.optimize:tryselect.bugbug_reduced_manifests_config_selection_medium",
"optimize_target_tasks": true,
"test_manifest_loader": "bugbug",
"try_mode": "try_auto",
"try_task_config": {}
},
"version": 2
}
"""
).lstrip(),
id="auto selector",
),
pytest.param(
"auto",
["try", "auto", "--closed-tree"],
dedent(
"""
Commit message:
Tasks automatically selected. ON A CLOSED TREE
mach try command: `./mach try auto --closed-tree`
Pushed via `mach try auto`
Calculated try_task_config.json:
{
"parameters": {
"filters": [
"try_auto"
],
"optimize_strategies": "gecko_taskgraph.optimize:tryselect.bugbug_reduced_manifests_config_selection_medium",
"optimize_target_tasks": true,
"test_manifest_loader": "bugbug",
"try_mode": "try_auto",
"try_task_config": {}
},
"version": 2
}
"""
).lstrip(),
id="auto",
),
pytest.param(
"auto",
["try", "auto", "--closed-tree", "-m", "foo {msg} bar"],
dedent(
"""
Commit message:
foo Tasks automatically selected. bar ON A CLOSED TREE
mach try command: `./mach try auto --closed-tree -m foo {msg} bar`
Pushed via `mach try auto`
Calculated try_task_config.json:
{
"parameters": {
"filters": [
"try_auto"
],
"optimize_strategies": "gecko_taskgraph.optimize:tryselect.bugbug_reduced_manifests_config_selection_medium",
"optimize_target_tasks": true,
"test_manifest_loader": "bugbug",
"try_mode": "try_auto",
"try_task_config": {}
},
"version": 2
}
"""
).lstrip(),
id="auto",
),
pytest.param(
"empty",
["try", "empty"],
dedent(
"""
Commit message:
No try selector specified, use "Add New Jobs" to select tasks.
mach try command: `./mach try empty`
Pushed via `mach try empty`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "empty"
},
"tasks": []
}
},
"version": 2
}
"""
).lstrip(),
id="empty",
),
pytest.param(
"empty",
["try", "empty", "--closed-tree"],
dedent(
"""
Commit message:
No try selector specified, use "Add New Jobs" to select tasks. ON A CLOSED TREE
mach try command: `./mach try empty --closed-tree`
Pushed via `mach try empty`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "empty"
},
"tasks": []
}
},
"version": 2
}
"""
).lstrip(),
id="empty",
),
pytest.param(
"empty",
["try", "empty", "--closed-tree", "-m", "foo {msg} bar"],
dedent(
"""
Commit message:
foo No try selector specified, use "Add New Jobs" to select tasks. bar ON A CLOSED TREE
mach try command: `./mach try empty --closed-tree -m foo {msg} bar`
Pushed via `mach try empty`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "empty"
},
"tasks": []
}
},
"version": 2
}
"""
).lstrip(),
id="empty",
),
pytest.param(
"fuzzy",
["try", "fuzzy", "-q", "foo", "--message", "Foobar"],
dedent(
"""
Commit message:
Foobar
Fuzzy query=foo
mach try command: `./mach try fuzzy -q foo --message Foobar`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="message fuzzy",
),
pytest.param(
"fuzzy",
["try", "fuzzy", "-q", "foo", "-m", "Foobar: {msg}"],
dedent(
"""
Commit message:
Foobar: Fuzzy query=foo
mach try command: `./mach try fuzzy -q foo -m Foobar: {msg}`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="message fuzzy",
),
pytest.param(
"fuzzy",
[
["try", "fuzzy", "--save", "foo", "-q", "'foo", "--rebuild", "5"],
["try", "fuzzy", "--preset", "foo"],
["try", "--preset", "foo"],
["try", "--edit-presets"],
],
dedent(
"""
preset saved, run with: --preset=foo
Commit message:
Fuzzy (preset: foo) query='foo
mach try command: `./mach try fuzzy --preset foo`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"rebuild": 5,
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
Commit message:
Fuzzy (preset: foo) query='foo
mach try command: `./mach try --preset foo`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"rebuild": 5,
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
foo:
dry_run: true
no_artifact: true
query:
- "'foo"
rebuild: 5
selector: fuzzy
"""
).lstrip(),
id="preset with fuzzy subcommand",
),
pytest.param(
"fuzzy",
[
["try", "fuzzy", "--save", "foo", "-q", "'foo", "--rebuild", "5"],
["try", "fuzzy", "--preset", "foo", "-q" "'build"],
["try", "fuzzy", "--preset", "foo", "-xq" "'opt"],
],
dedent(
"""
preset saved, run with: --preset=foo
Commit message:
Fuzzy (preset: foo) query='foo&query='build
mach try command: `./mach try fuzzy --preset foo -q'build`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"rebuild": 5,
"tasks": [
"build-baz",
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
Commit message:
Fuzzy (preset: foo) query='foo&query='opt
mach try command: `./mach try fuzzy --preset foo -xq'opt`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"rebuild": 5,
"tasks": [
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="preset queries can be appended",
),
pytest.param(
"fuzzy",
[
["try", "fuzzy", "--save", "foo", "-q", "'foo", "--rebuild", "5"],
[
"try",
"fuzzy",
"--preset",
"foo",
"--gecko-profile-features=nostacksampling,cpu",
],
],
dedent(
"""
preset saved, run with: --preset=foo
Commit message:
Fuzzy (preset: foo) query='foo
mach try command: `./mach try fuzzy --preset foo --gecko-profile-features=nostacksampling,cpu`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"gecko-profile": true,
"gecko-profile-features": "nostacksampling,cpu",
"rebuild": 5,
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
"""
).lstrip(),
id="gecko-profile handling",
),
pytest.param(
"fuzzy",
[
[
"try",
"fuzzy",
"--save",
"foo",
"-q",
"'foo",
"--rebuild",
"5",
"--gecko-profile-features=nostacksampling,cpu",
],
["try", "fuzzy", "--preset", "foo"],
["try", "fuzzy", "--edit-presets", "foo"],
],
dedent(
"""
preset saved, run with: --preset=foo
Commit message:
Fuzzy (preset: foo) query='foo
mach try command: `./mach try fuzzy --preset foo`
Pushed via `mach try fuzzy`
Calculated try_task_config.json:
{
"parameters": {
"optimize_target_tasks": false,
"try_task_config": {
"env": {
"TRY_SELECTOR": "fuzzy"
},
"gecko-profile": true,
"gecko-profile-features": "nostacksampling,cpu",
"rebuild": 5,
"tasks": [
"test/foo-debug",
"test/foo-opt"
]
}
},
"version": 2
}
foo:
dry_run: true
gecko_profile_features: nostacksampling,cpu
no_artifact: true
query:
- "'foo"
rebuild: 5
selector: fuzzy
"""
).lstrip(),
id="gecko-profile handling",
),
),
)
def test_run_mach(
capfd,
mocker,
run_mach,
target_task_set,
full_task_set,
selector,
commands,
expected,
):
"""These tests were initially converted from the `cramtest` framework. It's
likely there is duplication of test coverage between here and the specific
selector tests."""
capfd.readouterr()
if isinstance(commands[0], str):
commands = [commands]
for cmd in commands:
m = mocker.patch("tryselect.push.get_sys_argv")
m.return_value = f"./mach {' '.join(cmd)}"
cmd.append("--no-push")
if selector in cmd:
cmd.append("--no-artifact")
if selector == "fuzzy":
def fake_generate_tasks(*args, **kwargs):
task_set = target_task_set
if "--full" in cmd:
task_set = full_task_set
return add_chunk_patterns(TaskGraph.from_json(task_set)[1])
m = mocker.patch(f"tryselect.selectors.{selector}.generate_tasks")
m.side_effect = fake_generate_tasks
try:
cmd.insert(0, f"--settings={os.environ['MACHRC']}")
run_mach(cmd)
except SystemExit:
pass
out, _ = capfd.readouterr()
assert out == expected
if __name__ == "__main__":
mozunit.main()
|