This commit is contained in:
BetaSteward 2012-03-15 22:29:37 -04:00
parent f5acfcc58a
commit 9e5dd044e3
4 changed files with 202 additions and 0 deletions

View file

@ -0,0 +1,56 @@
package org.mage.test.cards;
import mage.Constants;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestPlayerBase;
/**
*
* also tests regenerate and
* tests that permanents with protection can be sacrificed
*
* @author BetaSteward
*/
public class TestFaithsShield extends CardTestPlayerBase {
@Test
public void testCard() {
addCard(Constants.Zone.BATTLEFIELD, playerA, "White Knight");
addCard(Constants.Zone.BATTLEFIELD, playerA, "Plains");
addCard(Constants.Zone.BATTLEFIELD, playerA, "Mountain");
addCard(Constants.Zone.HAND, playerA, "Faith's Shield");
addCard(Constants.Zone.HAND, playerA, "Lightning Bolt");
setChoice(playerA, "Red");
castSpell(1, Constants.PhaseStep.PRECOMBAT_MAIN, playerA, "Faith's Shield", "White Knight");
castSpell(1, Constants.PhaseStep.POSTCOMBAT_MAIN, playerA, "Lightning Bolt", "White Knight");
setStopAt(1, Constants.PhaseStep.END_TURN);
execute();
assertLife(playerA, 20);
assertLife(playerB, 17);
assertPermanentCount(playerA, "White Knight", 1);
}
@Test
public void testCardExile1() {
setLife(playerA, 5);
addCard(Constants.Zone.BATTLEFIELD, playerA, "White Knight");
addCard(Constants.Zone.BATTLEFIELD, playerA, "Plains");
addCard(Constants.Zone.BATTLEFIELD, playerA, "Mountain");
addCard(Constants.Zone.HAND, playerA, "Faith's Shield");
addCard(Constants.Zone.HAND, playerA, "Lightning Bolt");
setChoice(playerA, "Red");
castSpell(1, Constants.PhaseStep.PRECOMBAT_MAIN, playerA, "Faith's Shield", "White Knight");
castSpell(1, Constants.PhaseStep.POSTCOMBAT_MAIN, playerA, "Lightning Bolt", playerA);
setStopAt(1, Constants.PhaseStep.END_TURN);
execute();
assertLife(playerA, 5);
assertLife(playerB, 20);
}
}

View file

@ -38,6 +38,7 @@ import mage.MageObject;
import mage.abilities.Ability;
import mage.abilities.ActivatedAbility;
import mage.cards.Card;
import mage.choices.Choice;
import mage.counters.Counter;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterAttackingCreature;
@ -57,6 +58,7 @@ import org.junit.Ignore;
public class TestPlayer extends ComputerPlayer<TestPlayer> {
private List<PlayerAction> actions = new ArrayList<PlayerAction>();
private List<String> choices = new ArrayList<String>();
public TestPlayer(String name, Constants.RangeOfInfluence range) {
super(name, range);
@ -71,6 +73,10 @@ public class TestPlayer extends ComputerPlayer<TestPlayer> {
actions.add(new PlayerAction(turnNum, step, action));
}
public void addChoice(String choice) {
choices.add(choice);
}
@Override
public TestPlayer copy() {
return new TestPlayer(this);
@ -153,6 +159,22 @@ public class TestPlayer extends ComputerPlayer<TestPlayer> {
}
}
@Override
public boolean choose(Constants.Outcome outcome, Choice choice, Game game) {
if (!choices.isEmpty()) {
for (String choose1: choice.getChoices()) {
for (String choose2: choices) {
if (choose1.equals(choose2)) {
choice.setChoice(choose2);
choices.remove(choose2);
return true;
}
}
}
}
return super.choose(outcome, choice, game);
}
protected Permanent findPermanent(FilterPermanent filter, UUID controllerId, Game game) {
List<Permanent> permanents = game.getBattlefield().getAllActivePermanents(filter, controllerId);
if (permanents.size() > 0)

View file

@ -559,4 +559,8 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement
public void block(int turnNum, TestPlayer player, String blocker, String attacker) {
player.addAction(turnNum, PhaseStep.DECLARE_BLOCKERS, "block:"+blocker+";"+attacker);
}
public void setChoice(TestPlayer player, String choice) {
player.addChoice(choice);
}
}