mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Added and updated tests for attacker/blocker test assertions
This commit is contained in:
parent
f97fc6f708
commit
096701cd1e
4 changed files with 295 additions and 9 deletions
|
@ -25,7 +25,7 @@
|
|||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
package org.mage.test.token;
|
||||
package org.mage.test.cards.abilities.activated;
|
||||
|
||||
import mage.constants.ManaType;
|
||||
import mage.constants.PhaseStep;
|
||||
|
@ -38,7 +38,7 @@ import org.mage.test.serverside.base.CardTestPlayerBase;
|
|||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class ActivatedAbilityTest extends CardTestPlayerBase {
|
||||
public class TokenActivatedAbilityTest extends CardTestPlayerBase {
|
||||
|
||||
/**
|
||||
* Check that activated ability of created token works
|
|
@ -178,8 +178,8 @@ public class DoublingSeasonTest extends CardTestPlayerBase {
|
|||
|
||||
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Rite of the Raging Storm");
|
||||
|
||||
attack(2, playerB, "Lightning Rager"); // Can't attack
|
||||
attack(2, playerA, "Lightning Rager"); // Can't attack
|
||||
attack(2, playerB, "Lightning Rager:0"); // Can't attack
|
||||
attack(2, playerB, "Lightning Rager:1"); // Can't attack
|
||||
|
||||
setStopAt(2, PhaseStep.POSTCOMBAT_MAIN);
|
||||
execute();
|
||||
|
|
|
@ -1,9 +1,30 @@
|
|||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification, are
|
||||
* permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||
* conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||
* provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* The views and conclusions contained in the software and documentation are those of the
|
||||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
|
||||
package org.mage.test.testapi;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
|
@ -12,7 +33,6 @@ import org.junit.Test;
|
|||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author noxx
|
||||
*/
|
||||
public class TestAPITest extends CardTestPlayerBase {
|
||||
|
|
|
@ -0,0 +1,266 @@
|
|||
/*
|
||||
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification, are
|
||||
* permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||
* conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||
* provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* The views and conclusions contained in the software and documentation are those of the
|
||||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
package org.mage.test.testapi;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
/**
|
||||
* @author Simown
|
||||
*/
|
||||
// Tests the expected errors for illegal attacks/blocks or other moves when writing tests for players
|
||||
public class TestPlayerExpectedErrorsTest extends CardTestPlayerBase {
|
||||
|
||||
@Test
|
||||
public void blockerNotFoundTest() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Ember Swallower");
|
||||
|
||||
attack(3, playerA, "Ember Swallower");
|
||||
// Blocking but playerB doesn't control a Sedge Scorpion
|
||||
block(3, playerB, "Sedge Scorpion", "Ember Swallower");
|
||||
|
||||
setStopAt(3, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
fail("Expected exception not thrown");
|
||||
} catch (AssertionError e) {
|
||||
// Error - blocking with permanents you don't control
|
||||
TestCase.assertEquals("No permanents found called Sedge Scorpion that match the filter criteria \"permanent you control\"", e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void blockerNotFoundIndexOutOfRangeTest() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Polis Crusher", 2);
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Nessian Asp");
|
||||
|
||||
// Try and block with 3 Polis Crusher - player only has 2 under their control
|
||||
attack(2, playerB, "Nessian Asp");
|
||||
block(2, playerA, "Polis Crusher:0", "Nessian Asp");
|
||||
block(2, playerA, "Polis Crusher:1", "Nessian Asp");
|
||||
block(2, playerA, "Polis Crusher:2", "Nessian Asp");
|
||||
|
||||
setStopAt(3, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
fail("Expected exception not thrown");
|
||||
} catch (AssertionError e) {
|
||||
// Error - attacking with a permanent you don't control
|
||||
TestCase.assertEquals("Cannot find Polis Crusher:2 that match the filter criteria \"permanent you control\".\n" +
|
||||
"Only 2 called Polis Crusher found for this controller(zero indexed).", e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void attackerNotFoundTest() {
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Ember Swallower");
|
||||
|
||||
// Attacking but playerA doesn't control a "Fleshmad Steed" creature
|
||||
attack(3, playerA, "Fleshmad Steed");
|
||||
|
||||
setStopAt(3, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
fail("Expected exception not thrown");
|
||||
} catch (AssertionError e) {
|
||||
// Error - attacking with a permanent you don't control
|
||||
TestCase.assertEquals("No permanents found called Fleshmad Steed that match the filter criteria \"permanent you control\"", e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void attackerNotFoundIndexOutOfRangeTest() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Yoked Ox", 3);
|
||||
|
||||
// Try and attack with 4 Yoked Ox - will fail as the player only has 3
|
||||
attack(3, playerA, "Yoked Ox:0");
|
||||
attack(3, playerA, "Yoked Ox:1");
|
||||
attack(3, playerA, "Yoked Ox:2");
|
||||
attack(3, playerA, "Yoked Ox:3");
|
||||
|
||||
setStopAt(3, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
fail("Expected exception not thrown");
|
||||
} catch (AssertionError e) {
|
||||
// Error - attacking with a permanent you don't control
|
||||
TestCase.assertEquals("Cannot find Yoked Ox:3 that match the filter criteria \"permanent you control\".\n" +
|
||||
"Only 3 called Yoked Ox found for this controller(zero indexed).", e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void blockOnYourTurnTestA() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Leonin Snarecaster");
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Bronze Sable");
|
||||
|
||||
attack(1, playerA, "Bronze Satyr");
|
||||
// Illegal block on your own turn and blocking one of your own creatures
|
||||
block(1, playerA, "Leonin Snarecaster", "Bronze Sable");
|
||||
|
||||
setStopAt(3, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
fail("Expected exception not thrown");
|
||||
} catch(UnsupportedOperationException ue) {
|
||||
TestCase.assertEquals("PlayerA can't block on turn 1 as it is their turn", ue.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void blockOnYourTurnTestB() {
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Leonin Snarecaster");
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Bronze Sable");
|
||||
|
||||
attack(6, playerB, "Bronze Satyr");
|
||||
// Illegal block on your own turn and blocking one of your own creatures
|
||||
block(6, playerB, "Leonin Snarecaster", "Bronze Sable");
|
||||
|
||||
setStopAt(7, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
} catch(UnsupportedOperationException ue) {
|
||||
TestCase.assertEquals("PlayerB can't block on turn 6 as it is their turn", ue.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void attackOnOthersTurnTestA() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Nemesis of Mortals");
|
||||
// Invalid attack - turn 2 is playerB's turn so attacking is not allowed
|
||||
attack(2, playerA, "Nemesis of Mortals");
|
||||
|
||||
setStopAt(3, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
} catch(UnsupportedOperationException ue) {
|
||||
TestCase.assertEquals("PlayerA can't attack on turn 2 as it is not their turn", ue.getMessage());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void attackOnOthersTurnTestB() {
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Nemesis of Mortals");
|
||||
// Invalid attack - turn 2 is playerB's turn so attacking is not allowed
|
||||
attack(1, playerB, "Nemesis of Mortals");
|
||||
|
||||
setStopAt(3, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
} catch(UnsupportedOperationException ue) {
|
||||
TestCase.assertEquals("PlayerB can't attack on turn 1 as it is not their turn", ue.getMessage());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void cantBlockAnotherTest() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Fabled Hero");
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Leafcrown Dryad");
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Nemesis of Mortals");
|
||||
|
||||
attack(1, playerA, "Fabled Hero");
|
||||
attack(1, playerA, "Leafcrown Dryad");
|
||||
// Failure - Nemesis of mortals can't block both creatures at the same time
|
||||
block(1, playerB, "Nemesis of Mortals", "Fabled Hero");
|
||||
block(1, playerB, "Nemesis of Mortals", "Leafcrown Dryad");
|
||||
|
||||
setStopAt(3, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
fail("Expected exception not thrown");
|
||||
} catch(UnsupportedOperationException ue) {
|
||||
TestCase.assertEquals("Nemesis of Mortals cannot block Leafcrown Dryad it is already blocking the maximum amount of creatures.", ue.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void maximumBlockNotReachedTest() {
|
||||
// 3/2 with Menace
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Boggart Brute");
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Akroan Skyguard");
|
||||
|
||||
attack(3, playerA, "Boggart Brute");
|
||||
// Block has to fail, because Two-Headed Sliver can't be blocked except by two or more creatures
|
||||
block(3, playerB, "Akroan Skyguard", "Boggart Brute");
|
||||
|
||||
setStopAt(3, PhaseStep.END_TURN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
fail("Expected exception not thrown");
|
||||
} catch (UnsupportedOperationException e) {
|
||||
TestCase.assertEquals("Boggart Brute is blocked by 1 creature(s). It has to be blocked by 2 or more.", e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void minimumBlockNotReachedTest() {
|
||||
/* Underworld Cerberus {3}{B}{3} 6/6
|
||||
* Underworld Cerberus can't be blocked except by three or more creatures.
|
||||
* Cards in graveyards can't be the targets of spells or abilities.
|
||||
* When Underworld Cerberus dies, exile it and each player returns all creature cards from his or her graveyard to his or her hand.
|
||||
*/
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Underworld Cerberus");
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Memnite", 2); // 1/1
|
||||
|
||||
attack(3, playerA, "Underworld Cerberus");
|
||||
block(3, playerB, "Memnite:0", "Underworld Cerberus");
|
||||
block(3, playerB, "Memnite:1", "Underworld Cerberus");
|
||||
|
||||
setStopAt(3, PhaseStep.POSTCOMBAT_MAIN);
|
||||
|
||||
try {
|
||||
execute();
|
||||
fail("Expected exception not thrown");
|
||||
} catch(UnsupportedOperationException e) {
|
||||
assertEquals("Underworld Cerberus is blocked by 2 creature(s). It has to be blocked by 3 or more.", e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue