test for issue #2816

This commit is contained in:
goblin 2017-01-27 00:04:09 +01:00
parent a4b44d1297
commit 0833e4b81f

View file

@ -0,0 +1,74 @@
package org.mage.test.cards.abilities.oneshot.damage;
import mage.constants.PhaseStep;
import mage.constants.Zone;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestPlayerBase;
/**
*
* @author goblin
*/
public class FlameheartWerewolfTest extends CardTestPlayerBase {
/**
* https://github.com/magefree/mage/issues/2816
*/
@Test
public void testBlockingKalitas() {
// this card is the second face of double-faced card
// Flameheart Werewolf is a 3/2 with:
// Whenever Flameheart Werewolf blocks or becomes blocked by a creature, Flameheart Werewolf deals 2 damage to that creature.
// Kalitas, Traitor of Ghet is a 3/4 with:
// Lifelink
// If a nontoken creature an opponent controls would die, instead exile that card and put a 2/2 black Zombie creature token onto the battlefield
addCard(Zone.BATTLEFIELD, playerA, "Flameheart Werewolf");
addCard(Zone.BATTLEFIELD, playerB, "Kalitas, Traitor of Ghet");
attack(2, playerB, "Kalitas, Traitor of Ghet");
block(2, playerA, "Flameheart Werewolf", "Kalitas, Traitor of Ghet");
setStopAt(2, PhaseStep.POSTCOMBAT_MAIN);
execute();
assertLife(playerA, 20);
assertLife(playerB, 23); // lifelinked
// both should die
assertPermanentCount(playerA, "Flameheart Werewolf", 0);
assertExileCount("Flameheart Werewolf", 1); // exiled by Kalitas
assertPermanentCount(playerB, "Kalitas, Traitor of Ghet", 0);
assertGraveyardCount(playerB, "Kalitas, Traitor of Ghet", 1);
}
@Test
public void testBlockedByTwo22s() {
addCard(Zone.BATTLEFIELD, playerA, "Flameheart Werewolf");
// Both 2/2 creatures should die before the combat starts
addCard(Zone.BATTLEFIELD, playerB, "Falkenrath Reaver");
addCard(Zone.BATTLEFIELD, playerB, "Wind Drake");
attack(3, playerA, "Flameheart Werewolf");
block(3, playerB, "Falkenrath Reaver", "Flameheart Werewolf");
block(3, playerB, "Wind Drake", "Flameheart Werewolf");
setStopAt(3, PhaseStep.POSTCOMBAT_MAIN);
execute();
// Flameheart Werewolf was blocked, no trample
assertLife(playerA, 20);
assertLife(playerB, 20);
// both 2/2s should die before they had a chance to deal damage
// to Flameheart Werewolf
assertPermanentCount(playerA, "Flameheart Werewolf", 1);
assertGraveyardCount(playerA, "Flameheart Werewolf", 0);
assertPermanentCount(playerB, "Falkenrath Reaver", 0);
assertGraveyardCount(playerB, "Falkenrath Reaver", 1);
assertPermanentCount(playerB, "Wind Drake", 0);
assertGraveyardCount(playerB, "Wind Drake", 1);
}
}