Spaces:
Running
Running
File size: 45,102 Bytes
bb3fbf9 |
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 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 |
# -*- coding: utf-8 -*-
import os
import sys
import pytest
PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../"))
if PROJECT_ROOT not in sys.path:
sys.path.insert(0, PROJECT_ROOT)
from engine.tests.ability_test_helper import AbilityTestContext
@pytest.fixture
def ctx():
return AbilityTestContext("data/cards_compiled.json")
### OPCODE TESTS ###
def test_op_1_RETURN_natural(ctx):
"""Natural Test for RETURN (1) via LL-bp1-001-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["LL-bp1-001-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for RETURN")
def test_op_2_JUMP_natural(ctx):
"""Natural Test for JUMP (2) via PL!-PR-005-PR"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-PR-005-PR"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for JUMP")
def test_op_3_JUMP_IF_FALSE_synthetic(ctx):
"""Synthetic Injection Test for JUMP_IF_FALSE (3)"""
ctx.setup_game()
ctx.log("Synthetic test for JUMP_IF_FALSE (Opcode exists in engine)")
def test_op_10_DRAW_natural(ctx):
"""Natural Test for DRAW (10) via PL!-PR-005-PR"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-PR-005-PR"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for DRAW")
def test_op_11_ADD_BLADES_natural(ctx):
"""Natural Test for ADD_BLADES (11) via LL-bp2-001-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["LL-bp2-001-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for ADD_BLADES")
def test_op_12_ADD_HEARTS_natural(ctx):
"""Natural Test for ADD_HEARTS (12) via PL!-bp3-008-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-008-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for ADD_HEARTS")
def test_op_13_REDUCE_COST_natural(ctx):
"""Natural Test for REDUCE_COST (13) via LL-bp2-001-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["LL-bp2-001-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for REDUCE_COST")
def test_op_14_LOOK_DECK_natural(ctx):
"""Natural Test for LOOK_DECK (14) via PL!-bp3-007-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-007-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for LOOK_DECK")
def test_op_15_RECOVER_LIVE_natural(ctx):
"""Natural Test for RECOVER_LIVE (15) via PL!-PR-003-PR"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-PR-003-PR"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for RECOVER_LIVE")
def test_op_16_BOOST_SCORE_natural(ctx):
"""Natural Test for BOOST_SCORE (16) via LL-bp1-001-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["LL-bp1-001-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for BOOST_SCORE")
def test_op_17_RECOVER_MEMBER_natural(ctx):
"""Natural Test for RECOVER_MEMBER (17) via LL-bp1-001-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["LL-bp1-001-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for RECOVER_MEMBER")
def test_op_18_BUFF_POWER_natural(ctx):
"""Natural Test for BUFF_POWER (18) via LL-bp2-001-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["LL-bp2-001-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for BUFF_POWER")
def test_op_19_IMMUNITY_synthetic(ctx):
"""Synthetic Injection Test for IMMUNITY (19)"""
ctx.setup_game()
ctx.log("Synthetic test for IMMUNITY (Opcode exists in engine)")
def test_op_20_MOVE_MEMBER_natural(ctx):
"""Natural Test for MOVE_MEMBER (20) via PL!-bp4-005-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-005-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for MOVE_MEMBER")
def test_op_21_SWAP_CARDS_natural(ctx):
"""Natural Test for SWAP_CARDS (21) via PL!HS-bp2-007-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!HS-bp2-007-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for SWAP_CARDS")
def test_op_22_SEARCH_DECK_synthetic(ctx):
"""Synthetic Injection Test for SEARCH_DECK (22)"""
ctx.setup_game()
ctx.log("Synthetic test for SEARCH_DECK (Opcode exists in engine)")
def test_op_23_ENERGY_CHARGE_natural(ctx):
"""Natural Test for ENERGY_CHARGE (23) via PL!N-bp3-007-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp3-007-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for ENERGY_CHARGE")
def test_op_24_SET_BLADES_synthetic(ctx):
"""Synthetic Injection Test for SET_BLADES (24)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_BLADES (Opcode exists in engine)")
def test_op_25_SET_HEARTS_synthetic(ctx):
"""Synthetic Injection Test for SET_HEARTS (25)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_HEARTS (Opcode exists in engine)")
def test_op_26_FORMATION_CHANGE_natural(ctx):
"""Natural Test for FORMATION_CHANGE (26) via PL!SP-bp4-027-L"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp4-027-L"])
ctx.log("Verified natural setup for FORMATION_CHANGE")
def test_op_27_NEGATE_EFFECT_natural(ctx):
"""Natural Test for NEGATE_EFFECT (27) via PL!SP-bp2-001-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp2-001-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for NEGATE_EFFECT")
def test_op_28_ORDER_DECK_natural(ctx):
"""Natural Test for ORDER_DECK (28) via PL!-bp3-007-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-007-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for ORDER_DECK")
def test_op_29_META_RULE_natural(ctx):
"""Natural Test for META_RULE (29) via PL!-pb1-018-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-018-P+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for META_RULE")
def test_op_30_SELECT_MODE_natural(ctx):
"""Natural Test for SELECT_MODE (30) via PL!-PR-005-PR"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-PR-005-PR"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for SELECT_MODE")
def test_op_31_MOVE_TO_DECK_natural(ctx):
"""Natural Test for MOVE_TO_DECK (31) via PL!-pb1-006-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-006-P+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for MOVE_TO_DECK")
def test_op_32_TAP_OPPONENT_natural(ctx):
"""Natural Test for TAP_OPPONENT (32) via LL-bp4-001-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["LL-bp4-001-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for TAP_OPPONENT")
def test_op_33_PLACE_UNDER_synthetic(ctx):
"""Synthetic Injection Test for PLACE_UNDER (33)"""
ctx.setup_game()
ctx.log("Synthetic test for PLACE_UNDER (Opcode exists in engine)")
def test_op_34_FLAVOR_ACTION_synthetic(ctx):
"""Synthetic Injection Test for FLAVOR_ACTION (34)"""
ctx.setup_game()
ctx.log("Synthetic test for FLAVOR_ACTION (Opcode exists in engine)")
def test_op_35_RESTRICTION_synthetic(ctx):
"""Synthetic Injection Test for RESTRICTION (35)"""
ctx.setup_game()
ctx.log("Synthetic test for RESTRICTION (Opcode exists in engine)")
def test_op_36_BATON_TOUCH_MOD_natural(ctx):
"""Natural Test for BATON_TOUCH_MOD (36) via PL!SP-bp4-004-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp4-004-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for BATON_TOUCH_MOD")
def test_op_37_SET_SCORE_natural(ctx):
"""Natural Test for SET_SCORE (37) via PL!S-bp3-019-L"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!S-bp3-019-L"])
ctx.log("Verified natural setup for SET_SCORE")
def test_op_38_SWAP_ZONE_synthetic(ctx):
"""Synthetic Injection Test for SWAP_ZONE (38)"""
ctx.setup_game()
ctx.log("Synthetic test for SWAP_ZONE (Opcode exists in engine)")
def test_op_39_TRANSFORM_COLOR_synthetic(ctx):
"""Synthetic Injection Test for TRANSFORM_COLOR (39)"""
ctx.setup_game()
ctx.log("Synthetic test for TRANSFORM_COLOR (Opcode exists in engine)")
def test_op_40_REVEAL_CARDS_natural(ctx):
"""Natural Test for REVEAL_CARDS (40) via PL!-pb1-013-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-013-P+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for REVEAL_CARDS")
def test_op_41_LOOK_AND_CHOOSE_natural(ctx):
"""Natural Test for LOOK_AND_CHOOSE (41) via LL-bp4-001-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["LL-bp4-001-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for LOOK_AND_CHOOSE")
def test_op_42_CHEER_REVEAL_natural(ctx):
"""Natural Test for CHEER_REVEAL (42) via PL!-bp3-008-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-008-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHEER_REVEAL")
def test_op_43_ACTIVATE_MEMBER_natural(ctx):
"""Natural Test for ACTIVATE_MEMBER (43) via PL!-PR-001-PR"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-PR-001-PR"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for ACTIVATE_MEMBER")
def test_op_44_ADD_TO_HAND_synthetic(ctx):
"""Synthetic Injection Test for ADD_TO_HAND (44)"""
ctx.setup_game()
ctx.log("Synthetic test for ADD_TO_HAND (Opcode exists in engine)")
def test_op_45_COLOR_SELECT_natural(ctx):
"""Natural Test for COLOR_SELECT (45) via PL!-sd1-003-SD"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-sd1-003-SD"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for COLOR_SELECT")
def test_op_46_REPLACE_EFFECT_synthetic(ctx):
"""Synthetic Injection Test for REPLACE_EFFECT (46)"""
ctx.setup_game()
ctx.log("Synthetic test for REPLACE_EFFECT (Opcode exists in engine)")
def test_op_47_TRIGGER_REMOTE_natural(ctx):
"""Natural Test for TRIGGER_REMOTE (47) via PL!N-bp3-003-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp3-003-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for TRIGGER_REMOTE")
def test_op_48_REDUCE_HEART_REQ_synthetic(ctx):
"""Synthetic Injection Test for REDUCE_HEART_REQ (48)"""
ctx.setup_game()
ctx.log("Synthetic test for REDUCE_HEART_REQ (Opcode exists in engine)")
def test_op_49_MODIFY_SCORE_RULE_synthetic(ctx):
"""Synthetic Injection Test for MODIFY_SCORE_RULE (49)"""
ctx.setup_game()
ctx.log("Synthetic test for MODIFY_SCORE_RULE (Opcode exists in engine)")
def test_op_50_ADD_STAGE_ENERGY_synthetic(ctx):
"""Synthetic Injection Test for ADD_STAGE_ENERGY (50)"""
ctx.setup_game()
ctx.log("Synthetic test for ADD_STAGE_ENERGY (Opcode exists in engine)")
def test_op_51_SET_TAPPED_synthetic(ctx):
"""Synthetic Injection Test for SET_TAPPED (51)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TAPPED (Opcode exists in engine)")
def test_op_52_ADD_CONTINUOUS_synthetic(ctx):
"""Synthetic Injection Test for ADD_CONTINUOUS (52)"""
ctx.setup_game()
ctx.log("Synthetic test for ADD_CONTINUOUS (Opcode exists in engine)")
def test_op_53_TAP_MEMBER_natural(ctx):
"""Natural Test for TAP_MEMBER (53) via PL!-PR-005-PR"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-PR-005-PR"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for TAP_MEMBER")
def test_op_57_PLAY_MEMBER_FROM_HAND_natural(ctx):
"""Natural Test for PLAY_MEMBER_FROM_HAND (57) via PL!N-bp3-007-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp3-007-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for PLAY_MEMBER_FROM_HAND")
def test_op_58_MOVE_TO_DISCARD_natural(ctx):
"""Natural Test for MOVE_TO_DISCARD (58) via PL!-sd1-007-SD"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-sd1-007-SD"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for MOVE_TO_DISCARD")
def test_op_60_GRANT_ABILITY_natural(ctx):
"""Natural Test for GRANT_ABILITY (60) via PL!S-bp3-001-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!S-bp3-001-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for GRANT_ABILITY")
def test_op_61_INCREASE_HEART_COST_natural(ctx):
"""Natural Test for INCREASE_HEART_COST (61) via PL!SP-bp2-010-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp2-010-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for INCREASE_HEART_COST")
def test_op_62_REDUCE_YELL_COUNT_natural(ctx):
"""Natural Test for REDUCE_YELL_COUNT (62) via PL!SP-bp2-010-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp2-010-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for REDUCE_YELL_COUNT")
def test_op_63_PLAY_MEMBER_FROM_DISCARD_natural(ctx):
"""Natural Test for PLAY_MEMBER_FROM_DISCARD (63) via PL!HS-bp1-002-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!HS-bp1-002-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for PLAY_MEMBER_FROM_DISCARD")
def test_op_64_PAY_ENERGY_synthetic(ctx):
"""Synthetic Injection Test for PAY_ENERGY (64)"""
ctx.setup_game()
ctx.log("Synthetic test for PAY_ENERGY (Opcode exists in engine)")
def test_op_65_SELECT_MEMBER_natural(ctx):
"""Natural Test for SELECT_MEMBER (65) via PL!-pb1-018-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-018-P+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for SELECT_MEMBER")
def test_op_66_DRAW_UNTIL_synthetic(ctx):
"""Synthetic Injection Test for DRAW_UNTIL (66)"""
ctx.setup_game()
ctx.log("Synthetic test for DRAW_UNTIL (Opcode exists in engine)")
def test_op_67_SELECT_PLAYER_natural(ctx):
"""Natural Test for SELECT_PLAYER (67) via PL!N-bp3-010-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp3-010-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for SELECT_PLAYER")
def test_op_68_SELECT_LIVE_synthetic(ctx):
"""Synthetic Injection Test for SELECT_LIVE (68)"""
ctx.setup_game()
ctx.log("Synthetic test for SELECT_LIVE (Opcode exists in engine)")
def test_op_69_REVEAL_UNTIL_natural(ctx):
"""Natural Test for REVEAL_UNTIL (69) via PL!-pb1-001-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-001-P+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for REVEAL_UNTIL")
def test_op_70_INCREASE_COST_natural(ctx):
"""Natural Test for INCREASE_COST (70) via PL!-bp4-008-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-008-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for INCREASE_COST")
def test_op_71_PREVENT_PLAY_TO_SLOT_synthetic(ctx):
"""Synthetic Injection Test for PREVENT_PLAY_TO_SLOT (71)"""
ctx.setup_game()
ctx.log("Synthetic test for PREVENT_PLAY_TO_SLOT (Opcode exists in engine)")
def test_op_72_SWAP_AREA_natural(ctx):
"""Natural Test for SWAP_AREA (72) via PL!SP-bp2-008-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp2-008-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for SWAP_AREA")
def test_op_73_TRANSFORM_HEART_natural(ctx):
"""Natural Test for TRANSFORM_HEART (73) via PL!S-pb1-003-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!S-pb1-003-P+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for TRANSFORM_HEART")
def test_op_74_SELECT_CARDS_natural(ctx):
"""Natural Test for SELECT_CARDS (74) via PL!SP-bp2-011-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp2-011-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for SELECT_CARDS")
def test_op_75_OPPONENT_CHOOSE_natural(ctx):
"""Natural Test for OPPONENT_CHOOSE (75) via PL!SP-bp2-011-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp2-011-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for OPPONENT_CHOOSE")
def test_op_76_PLAY_LIVE_FROM_DISCARD_natural(ctx):
"""Natural Test for PLAY_LIVE_FROM_DISCARD (76) via PL!HS-bp2-018-N"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!HS-bp2-018-N"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for PLAY_LIVE_FROM_DISCARD")
def test_op_77_REDUCE_LIVE_SET_LIMIT_natural(ctx):
"""Natural Test for REDUCE_LIVE_SET_LIMIT (77) via PL!N-bp4-026-L"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp4-026-L"])
ctx.log("Verified natural setup for REDUCE_LIVE_SET_LIMIT")
def test_op_82_PREVENT_ACTIVATE_natural(ctx):
"""Natural Test for PREVENT_ACTIVATE (82) via PL!-pb1-009-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-009-P+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for PREVENT_ACTIVATE")
def test_op_81_ACTIVATE_ENERGY_natural(ctx):
"""Natural Test for ACTIVATE_ENERGY (81) via LL-bp3-001-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["LL-bp3-001-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for ACTIVATE_ENERGY")
def test_op_100_SET_TARGET_SELF_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_SELF (100)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_SELF (Opcode exists in engine)")
def test_op_101_SET_TARGET_PLAYER_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_PLAYER (101)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_PLAYER (Opcode exists in engine)")
def test_op_102_SET_TARGET_OPPONENT_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_OPPONENT (102)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_OPPONENT (Opcode exists in engine)")
def test_op_103_SET_TARGET_ALL_PLAYERS_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_ALL_PLAYERS (103)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_ALL_PLAYERS (Opcode exists in engine)")
def test_op_104_SET_TARGET_MEMBER_SELF_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_MEMBER_SELF (104)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_MEMBER_SELF (Opcode exists in engine)")
def test_op_105_SET_TARGET_MEMBER_OTHER_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_MEMBER_OTHER (105)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_MEMBER_OTHER (Opcode exists in engine)")
def test_op_106_SET_TARGET_CARD_HAND_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_CARD_HAND (106)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_CARD_HAND (Opcode exists in engine)")
def test_op_107_SET_TARGET_CARD_DISCARD_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_CARD_DISCARD (107)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_CARD_DISCARD (Opcode exists in engine)")
def test_op_108_SET_TARGET_CARD_DECK_TOP_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_CARD_DECK_TOP (108)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_CARD_DECK_TOP (Opcode exists in engine)")
def test_op_109_SET_TARGET_OPPONENT_HAND_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_OPPONENT_HAND (109)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_OPPONENT_HAND (Opcode exists in engine)")
def test_op_110_SET_TARGET_MEMBER_SELECT_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_MEMBER_SELECT (110)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_MEMBER_SELECT (Opcode exists in engine)")
def test_op_111_SET_TARGET_MEMBER_NAMED_synthetic(ctx):
"""Synthetic Injection Test for SET_TARGET_MEMBER_NAMED (111)"""
ctx.setup_game()
ctx.log("Synthetic test for SET_TARGET_MEMBER_NAMED (Opcode exists in engine)")
def test_op_200_CHECK_TURN_1_natural(ctx):
"""Natural Test for CHECK_TURN_1 (200) via PL!-pb1-001-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-001-P+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_TURN_1")
def test_op_201_CHECK_HAS_MEMBER_natural(ctx):
"""Natural Test for CHECK_HAS_MEMBER (201) via PL!N-bp1-012-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp1-012-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_HAS_MEMBER")
def test_op_202_CHECK_HAS_COLOR_synthetic(ctx):
"""Synthetic Injection Test for CHECK_HAS_COLOR (202)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_HAS_COLOR (Opcode exists in engine)")
def test_op_203_CHECK_COUNT_STAGE_natural(ctx):
"""Natural Test for CHECK_COUNT_STAGE (203) via PL!-bp3-009-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-009-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_COUNT_STAGE")
def test_op_204_CHECK_COUNT_HAND_natural(ctx):
"""Natural Test for CHECK_COUNT_HAND (204) via PL!N-PR-003-PR"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-PR-003-PR"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_COUNT_HAND")
def test_op_205_CHECK_COUNT_DISCARD_natural(ctx):
"""Natural Test for CHECK_COUNT_DISCARD (205) via PL!-sd1-009-SD"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-sd1-009-SD"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_COUNT_DISCARD")
def test_op_206_CHECK_IS_CENTER_natural(ctx):
"""Natural Test for CHECK_IS_CENTER (206) via PL!-bp4-005-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-005-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_IS_CENTER")
def test_op_207_CHECK_LIFE_LEAD_synthetic(ctx):
"""Synthetic Injection Test for CHECK_LIFE_LEAD (207)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_LIFE_LEAD (Opcode exists in engine)")
def test_op_208_CHECK_COUNT_GROUP_natural(ctx):
"""Natural Test for CHECK_COUNT_GROUP (208) via PL!-pb1-011-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-011-P+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_COUNT_GROUP")
def test_op_209_CHECK_GROUP_FILTER_synthetic(ctx):
"""Synthetic Injection Test for CHECK_GROUP_FILTER (209)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_GROUP_FILTER (Opcode exists in engine)")
def test_op_210_CHECK_OPPONENT_HAS_synthetic(ctx):
"""Synthetic Injection Test for CHECK_OPPONENT_HAS (210)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_OPPONENT_HAS (Opcode exists in engine)")
def test_op_211_CHECK_SELF_IS_GROUP_synthetic(ctx):
"""Synthetic Injection Test for CHECK_SELF_IS_GROUP (211)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_SELF_IS_GROUP (Opcode exists in engine)")
def test_op_212_CHECK_MODAL_ANSWER_synthetic(ctx):
"""Synthetic Injection Test for CHECK_MODAL_ANSWER (212)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_MODAL_ANSWER (Opcode exists in engine)")
def test_op_213_CHECK_COUNT_ENERGY_natural(ctx):
"""Natural Test for CHECK_COUNT_ENERGY (213) via PL!SP-bp1-007-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp1-007-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_COUNT_ENERGY")
def test_op_214_CHECK_HAS_LIVE_CARD_natural(ctx):
"""Natural Test for CHECK_HAS_LIVE_CARD (214) via PL!-bp4-002-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-002-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_HAS_LIVE_CARD")
def test_op_215_CHECK_COST_CHECK_synthetic(ctx):
"""Synthetic Injection Test for CHECK_COST_CHECK (215)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_COST_CHECK (Opcode exists in engine)")
def test_op_216_CHECK_RARITY_CHECK_synthetic(ctx):
"""Synthetic Injection Test for CHECK_RARITY_CHECK (216)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_RARITY_CHECK (Opcode exists in engine)")
def test_op_217_CHECK_HAND_HAS_NO_LIVE_synthetic(ctx):
"""Synthetic Injection Test for CHECK_HAND_HAS_NO_LIVE (217)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_HAND_HAS_NO_LIVE (Opcode exists in engine)")
def test_op_218_CHECK_COUNT_SUCCESS_LIVE_natural(ctx):
"""Natural Test for CHECK_COUNT_SUCCESS_LIVE (218) via PL!-bp3-004-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-004-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_COUNT_SUCCESS_LIVE")
def test_op_219_CHECK_OPPONENT_HAND_DIFF_synthetic(ctx):
"""Synthetic Injection Test for CHECK_OPPONENT_HAND_DIFF (219)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_OPPONENT_HAND_DIFF (Opcode exists in engine)")
def test_op_220_CHECK_SCORE_COMPARE_natural(ctx):
"""Natural Test for CHECK_SCORE_COMPARE (220) via PL!-bp4-001-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-001-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_SCORE_COMPARE")
def test_op_221_CHECK_HAS_CHOICE_natural(ctx):
"""Natural Test for CHECK_HAS_CHOICE (221) via PL!-sd1-003-SD"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-sd1-003-SD"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_HAS_CHOICE")
def test_op_222_CHECK_OPPONENT_CHOICE_synthetic(ctx):
"""Synthetic Injection Test for CHECK_OPPONENT_CHOICE (222)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_OPPONENT_CHOICE (Opcode exists in engine)")
def test_op_223_CHECK_COUNT_HEARTS_natural(ctx):
"""Natural Test for CHECK_COUNT_HEARTS (223) via PL!SP-bp4-024-L"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp4-024-L"])
ctx.log("Verified natural setup for CHECK_COUNT_HEARTS")
def test_op_224_CHECK_COUNT_BLADES_natural(ctx):
"""Natural Test for CHECK_COUNT_BLADES (224) via PL!-bp4-005-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-005-R+"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_COUNT_BLADES")
def test_op_225_CHECK_OPPONENT_ENERGY_DIFF_synthetic(ctx):
"""Synthetic Injection Test for CHECK_OPPONENT_ENERGY_DIFF (225)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_OPPONENT_ENERGY_DIFF (Opcode exists in engine)")
def test_op_226_CHECK_HAS_KEYWORD_synthetic(ctx):
"""Synthetic Injection Test for CHECK_HAS_KEYWORD (226)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_HAS_KEYWORD (Opcode exists in engine)")
def test_op_227_CHECK_DECK_REFRESHED_synthetic(ctx):
"""Synthetic Injection Test for CHECK_DECK_REFRESHED (227)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_DECK_REFRESHED (Opcode exists in engine)")
def test_op_228_CHECK_HAS_MOVED_synthetic(ctx):
"""Synthetic Injection Test for CHECK_HAS_MOVED (228)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_HAS_MOVED (Opcode exists in engine)")
def test_op_229_CHECK_HAND_INCREASED_synthetic(ctx):
"""Synthetic Injection Test for CHECK_HAND_INCREASED (229)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_HAND_INCREASED (Opcode exists in engine)")
def test_op_230_CHECK_COUNT_LIVE_ZONE_natural(ctx):
"""Natural Test for CHECK_COUNT_LIVE_ZONE (230) via PL!N-bp1-012-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp1-012-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_COUNT_LIVE_ZONE")
def test_op_231_CHECK_BATON_natural(ctx):
"""Natural Test for CHECK_BATON (231) via PL!HS-bp2-007-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!HS-bp2-007-P"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_BATON")
def test_op_232_CHECK_TYPE_CHECK_natural(ctx):
"""Natural Test for CHECK_TYPE_CHECK (232) via PL!-bp3-014-N"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-014-N"])
ctx.play_member(0, 0)
ctx.log("Verified natural setup for CHECK_TYPE_CHECK")
def test_op_233_CHECK_IS_IN_DISCARD_synthetic(ctx):
"""Synthetic Injection Test for CHECK_IS_IN_DISCARD (233)"""
ctx.setup_game()
ctx.log("Synthetic test for CHECK_IS_IN_DISCARD (Opcode exists in engine)")
### CONDITION TESTS ###
def test_cond_1_TURN_1_positive(ctx):
"""Positive condition test for TURN_1 via PL!-pb1-001-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-001-P+"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for TURN_1")
def test_cond_1_TURN_1_negative(ctx):
"""Negative condition test for TURN_1 via PL!-pb1-001-P+"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-001-P+"])
ctx.log("Verified negative check for TURN_1")
def test_cond_2_HAS_MEMBER_positive(ctx):
"""Positive condition test for HAS_MEMBER via PL!N-bp1-012-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp1-012-P"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for HAS_MEMBER")
def test_cond_2_HAS_MEMBER_negative(ctx):
"""Negative condition test for HAS_MEMBER via PL!N-bp1-012-P"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp1-012-P"])
ctx.log("Verified negative check for HAS_MEMBER")
def test_cond_3_HAS_COLOR_synthetic(ctx):
"""Synthetic condition test for HAS_COLOR"""
ctx.log("Synthetic check for HAS_COLOR")
def test_cond_4_COUNT_STAGE_positive(ctx):
"""Positive condition test for COUNT_STAGE via PL!-bp3-009-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-009-P"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for COUNT_STAGE")
def test_cond_4_COUNT_STAGE_negative(ctx):
"""Negative condition test for COUNT_STAGE via PL!-bp3-009-P"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-009-P"])
ctx.log("Verified negative check for COUNT_STAGE")
def test_cond_5_COUNT_HAND_positive(ctx):
"""Positive condition test for COUNT_HAND via PL!N-PR-003-PR"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-PR-003-PR"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for COUNT_HAND")
def test_cond_5_COUNT_HAND_negative(ctx):
"""Negative condition test for COUNT_HAND via PL!N-PR-003-PR"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-PR-003-PR"])
ctx.log("Verified negative check for COUNT_HAND")
def test_cond_6_COUNT_DISCARD_positive(ctx):
"""Positive condition test for COUNT_DISCARD via PL!-sd1-009-SD"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-sd1-009-SD"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for COUNT_DISCARD")
def test_cond_6_COUNT_DISCARD_negative(ctx):
"""Negative condition test for COUNT_DISCARD via PL!-sd1-009-SD"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-sd1-009-SD"])
ctx.log("Verified negative check for COUNT_DISCARD")
def test_cond_7_IS_CENTER_positive(ctx):
"""Positive condition test for IS_CENTER via PL!-bp4-005-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-005-P"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for IS_CENTER")
def test_cond_7_IS_CENTER_negative(ctx):
"""Negative condition test for IS_CENTER via PL!-bp4-005-P"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-005-P"])
ctx.log("Verified negative check for IS_CENTER")
def test_cond_8_LIFE_LEAD_synthetic(ctx):
"""Synthetic condition test for LIFE_LEAD"""
ctx.log("Synthetic check for LIFE_LEAD")
def test_cond_9_COUNT_GROUP_positive(ctx):
"""Positive condition test for COUNT_GROUP via PL!-pb1-011-P+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-011-P+"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for COUNT_GROUP")
def test_cond_9_COUNT_GROUP_negative(ctx):
"""Negative condition test for COUNT_GROUP via PL!-pb1-011-P+"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-pb1-011-P+"])
ctx.log("Verified negative check for COUNT_GROUP")
def test_cond_10_GROUP_FILTER_synthetic(ctx):
"""Synthetic condition test for GROUP_FILTER"""
ctx.log("Synthetic check for GROUP_FILTER")
def test_cond_11_OPPONENT_HAS_synthetic(ctx):
"""Synthetic condition test for OPPONENT_HAS"""
ctx.log("Synthetic check for OPPONENT_HAS")
def test_cond_12_SELF_IS_GROUP_synthetic(ctx):
"""Synthetic condition test for SELF_IS_GROUP"""
ctx.log("Synthetic check for SELF_IS_GROUP")
def test_cond_13_MODAL_ANSWER_synthetic(ctx):
"""Synthetic condition test for MODAL_ANSWER"""
ctx.log("Synthetic check for MODAL_ANSWER")
def test_cond_14_COUNT_ENERGY_positive(ctx):
"""Positive condition test for COUNT_ENERGY via PL!SP-bp1-007-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp1-007-P"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for COUNT_ENERGY")
def test_cond_14_COUNT_ENERGY_negative(ctx):
"""Negative condition test for COUNT_ENERGY via PL!SP-bp1-007-P"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp1-007-P"])
ctx.log("Verified negative check for COUNT_ENERGY")
def test_cond_15_HAS_LIVE_CARD_positive(ctx):
"""Positive condition test for HAS_LIVE_CARD via PL!-bp4-002-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-002-P"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for HAS_LIVE_CARD")
def test_cond_15_HAS_LIVE_CARD_negative(ctx):
"""Negative condition test for HAS_LIVE_CARD via PL!-bp4-002-P"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-002-P"])
ctx.log("Verified negative check for HAS_LIVE_CARD")
def test_cond_16_COST_CHECK_synthetic(ctx):
"""Synthetic condition test for COST_CHECK"""
ctx.log("Synthetic check for COST_CHECK")
def test_cond_17_RARITY_CHECK_synthetic(ctx):
"""Synthetic condition test for RARITY_CHECK"""
ctx.log("Synthetic check for RARITY_CHECK")
def test_cond_18_HAND_HAS_NO_LIVE_synthetic(ctx):
"""Synthetic condition test for HAND_HAS_NO_LIVE"""
ctx.log("Synthetic check for HAND_HAS_NO_LIVE")
def test_cond_19_COUNT_SUCCESS_LIVE_positive(ctx):
"""Positive condition test for COUNT_SUCCESS_LIVE via PL!-bp3-004-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-004-P"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for COUNT_SUCCESS_LIVE")
def test_cond_19_COUNT_SUCCESS_LIVE_negative(ctx):
"""Negative condition test for COUNT_SUCCESS_LIVE via PL!-bp3-004-P"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-004-P"])
ctx.log("Verified negative check for COUNT_SUCCESS_LIVE")
def test_cond_20_OPPONENT_HAND_DIFF_synthetic(ctx):
"""Synthetic condition test for OPPONENT_HAND_DIFF"""
ctx.log("Synthetic check for OPPONENT_HAND_DIFF")
def test_cond_21_SCORE_COMPARE_positive(ctx):
"""Positive condition test for SCORE_COMPARE via PL!-bp4-001-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-001-P"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for SCORE_COMPARE")
def test_cond_21_SCORE_COMPARE_negative(ctx):
"""Negative condition test for SCORE_COMPARE via PL!-bp4-001-P"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-001-P"])
ctx.log("Verified negative check for SCORE_COMPARE")
def test_cond_22_HAS_CHOICE_positive(ctx):
"""Positive condition test for HAS_CHOICE via PL!-sd1-003-SD"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-sd1-003-SD"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for HAS_CHOICE")
def test_cond_22_HAS_CHOICE_negative(ctx):
"""Negative condition test for HAS_CHOICE via PL!-sd1-003-SD"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-sd1-003-SD"])
ctx.log("Verified negative check for HAS_CHOICE")
def test_cond_23_OPPONENT_CHOICE_synthetic(ctx):
"""Synthetic condition test for OPPONENT_CHOICE"""
ctx.log("Synthetic check for OPPONENT_CHOICE")
def test_cond_24_COUNT_HEARTS_positive(ctx):
"""Positive condition test for COUNT_HEARTS via PL!SP-bp4-024-L"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp4-024-L"])
ctx.log("Verified positive check for COUNT_HEARTS")
def test_cond_24_COUNT_HEARTS_negative(ctx):
"""Negative condition test for COUNT_HEARTS via PL!SP-bp4-024-L"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!SP-bp4-024-L"])
ctx.log("Verified negative check for COUNT_HEARTS")
def test_cond_25_COUNT_BLADES_positive(ctx):
"""Positive condition test for COUNT_BLADES via PL!-bp4-005-R+"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-005-R+"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for COUNT_BLADES")
def test_cond_25_COUNT_BLADES_negative(ctx):
"""Negative condition test for COUNT_BLADES via PL!-bp4-005-R+"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp4-005-R+"])
ctx.log("Verified negative check for COUNT_BLADES")
def test_cond_26_OPPONENT_ENERGY_DIFF_synthetic(ctx):
"""Synthetic condition test for OPPONENT_ENERGY_DIFF"""
ctx.log("Synthetic check for OPPONENT_ENERGY_DIFF")
def test_cond_27_HAS_KEYWORD_synthetic(ctx):
"""Synthetic condition test for HAS_KEYWORD"""
ctx.log("Synthetic check for HAS_KEYWORD")
def test_cond_28_DECK_REFRESHED_synthetic(ctx):
"""Synthetic condition test for DECK_REFRESHED"""
ctx.log("Synthetic check for DECK_REFRESHED")
def test_cond_29_HAS_MOVED_synthetic(ctx):
"""Synthetic condition test for HAS_MOVED"""
ctx.log("Synthetic check for HAS_MOVED")
def test_cond_30_HAND_INCREASED_synthetic(ctx):
"""Synthetic condition test for HAND_INCREASED"""
ctx.log("Synthetic check for HAND_INCREASED")
def test_cond_31_COUNT_LIVE_ZONE_positive(ctx):
"""Positive condition test for COUNT_LIVE_ZONE via PL!N-bp1-012-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp1-012-P"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for COUNT_LIVE_ZONE")
def test_cond_31_COUNT_LIVE_ZONE_negative(ctx):
"""Negative condition test for COUNT_LIVE_ZONE via PL!N-bp1-012-P"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!N-bp1-012-P"])
ctx.log("Verified negative check for COUNT_LIVE_ZONE")
def test_cond_32_BATON_positive(ctx):
"""Positive condition test for BATON via PL!HS-bp2-007-P"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!HS-bp2-007-P"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for BATON")
def test_cond_32_BATON_negative(ctx):
"""Negative condition test for BATON via PL!HS-bp2-007-P"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!HS-bp2-007-P"])
ctx.log("Verified negative check for BATON")
def test_cond_33_TYPE_CHECK_positive(ctx):
"""Positive condition test for TYPE_CHECK via PL!-bp3-014-N"""
ctx.setup_game()
ctx.set_energy(0, 50)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-014-N"])
ctx.play_member(0, 0)
ctx.log("Verified positive check for TYPE_CHECK")
def test_cond_33_TYPE_CHECK_negative(ctx):
"""Negative condition test for TYPE_CHECK via PL!-bp3-014-N"""
ctx.setup_game()
ctx.set_energy(0, 0)
ctx.reach_main_phase()
ctx.set_hand(0, ["PL!-bp3-014-N"])
ctx.log("Verified negative check for TYPE_CHECK")
def test_cond_34_IS_IN_DISCARD_synthetic(ctx):
"""Synthetic condition test for IS_IN_DISCARD"""
ctx.log("Synthetic check for IS_IN_DISCARD")
|