mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Add mulligan tests.
This commit is contained in:
parent
4a232b148c
commit
d77ad0ce1f
5 changed files with 1345 additions and 0 deletions
|
@ -0,0 +1,249 @@
|
|||
package org.mage.test.mulligan;
|
||||
|
||||
import mage.game.mulligan.MulliganType;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
public class CanadianHighlanderMulliganTest extends MulliganTestBase {
|
||||
|
||||
@Test
|
||||
public void testCanadianHighlanderMulligan_NoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.CANADIAN_HIGHLANDER, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, scenario.getHand());
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCanadianHighlanderMulligan_OneMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.CANADIAN_HIGHLANDER, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> scry = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
scry.add(scenario.getLibraryTopCard());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(scry, new HashSet<>(scenario.getNTopOfLibrary(1)));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCanadianHighlanderMulligan_OneMulligan_Scry() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.CANADIAN_HIGHLANDER, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> scry = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
scry.add(scenario.getLibraryTopCard());
|
||||
return true;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(scry, new HashSet<>(scenario.getNBottomOfLibrary(1)));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCanadianHighlanderMulligan_TwoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.CANADIAN_HIGHLANDER, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> hand3 = new HashSet<>();
|
||||
Set<UUID> scry = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(21, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(28, 6)));
|
||||
hand3.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(21, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(28, 6)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getHand()));
|
||||
scry.add(scenario.getLibraryTopCard());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(21, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(28, 6)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(scry, new HashSet<>(scenario.getNTopOfLibrary(1)));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCanadianHighlanderMulligan_ThreeMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.CANADIAN_HIGHLANDER, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> hand3 = new HashSet<>();
|
||||
Set<UUID> hand4 = new HashSet<>();
|
||||
Set<UUID> scry = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(21, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(28, 6)));
|
||||
hand3.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(5, 35);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(16, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(23, 6)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getLibraryRangeSize(29, 6)));
|
||||
hand4.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
scenario.assertSizes(5, 35);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(16, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(23, 6)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getLibraryRangeSize(29, 6)));
|
||||
assertEquals(hand4, scenario.getHand());
|
||||
scry.add(scenario.getLibraryTopCard());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(5, 35);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(16, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(23, 6)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getLibraryRangeSize(29, 6)));
|
||||
assertEquals(hand4, scenario.getHand());
|
||||
assertEquals(scry, new HashSet<>(scenario.getNTopOfLibrary(1)));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCanadianHighlanderMulligan_AlwaysMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.CANADIAN_HIGHLANDER, 0);
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(5, 35);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(5, 35);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(4, 36);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(4, 36);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(3, 37);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(3, 37);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(2, 38);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(2, 38);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(1, 39);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(1, 39);
|
||||
return true;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
scenario.assertSizes(0, 40);
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(0, 40);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,231 @@
|
|||
package org.mage.test.mulligan;
|
||||
|
||||
import com.google.common.collect.Sets;
|
||||
import mage.game.mulligan.MulliganType;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
public class LondonMulliganTest extends MulliganTestBase {
|
||||
|
||||
@Test
|
||||
public void testLondonMulligan_NoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.LONDON, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, scenario.getHand());
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLondonMulligan_OneMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.LONDON, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
List<UUID> discarded = new ArrayList<>();
|
||||
Set<UUID> remainingHand = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.discardBottom(count -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(1, count);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(hand2, scenario.getHand());
|
||||
scenario.getHand().stream().limit(count).forEach(discarded::add);
|
||||
remainingHand.addAll(Sets.difference(scenario.getHand(), new HashSet<>(discarded)));
|
||||
return discarded;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(remainingHand, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(discarded, scenario.getNBottomOfLibrary(1));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLondonMulligan_TwoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.LONDON, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> hand3 = new HashSet<>();
|
||||
List<UUID> discarded = new ArrayList<>();
|
||||
Set<UUID> remainingHand = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(19, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
hand3.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.discardBottom(count -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(2, count);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(19, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(hand3, scenario.getHand());
|
||||
scenario.getHand().stream().limit(count).forEach(discarded::add);
|
||||
remainingHand.addAll(Sets.difference(scenario.getHand(), new HashSet<>(discarded)));
|
||||
return discarded;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(5, 35);
|
||||
assertEquals(remainingHand, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(19, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(discarded, scenario.getNBottomOfLibrary(2));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLondonMulligan_FreeMulligan_NoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.LONDON, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, scenario.getHand());
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLondonMulligan_FreeMulligan_OneMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.LONDON, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand2.addAll(scenario.getHand());
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLondonMulligan_FreeMulligan_TwoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.LONDON, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> hand3 = new HashSet<>();
|
||||
List<UUID> discarded = new ArrayList<>();
|
||||
Set<UUID> remainingHand = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(19, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
hand3.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.discardBottom(count -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(1, count);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(19, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(hand3, scenario.getHand());
|
||||
scenario.getHand().stream().limit(count).forEach(discarded::add);
|
||||
remainingHand.addAll(Sets.difference(scenario.getHand(), new HashSet<>(discarded)));
|
||||
return discarded;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(19, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(remainingHand, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(discarded, scenario.getNBottomOfLibrary(1));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLondonMulligan_AlwaysMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.LONDON, 0);
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.discardBottom(count -> {
|
||||
assertEquals(7, count);
|
||||
return new ArrayList<>(scenario.getHand());
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(0, 40);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,433 @@
|
|||
|
||||
package org.mage.test.mulligan;
|
||||
|
||||
import mage.MageItem;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.Mode;
|
||||
import mage.abilities.Modes;
|
||||
import mage.abilities.TriggeredAbility;
|
||||
import mage.abilities.costs.VariableCost;
|
||||
import mage.abilities.costs.mana.ManaCost;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.basiclands.Forest;
|
||||
import mage.cards.decks.Deck;
|
||||
import mage.choices.Choice;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.RangeOfInfluence;
|
||||
import mage.game.Game;
|
||||
import mage.game.GameOptions;
|
||||
import mage.game.TwoPlayerDuel;
|
||||
import mage.game.combat.CombatGroup;
|
||||
import mage.game.draft.Draft;
|
||||
import mage.game.match.Match;
|
||||
import mage.game.mulligan.Mulligan;
|
||||
import mage.game.mulligan.MulliganType;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.tournament.Tournament;
|
||||
import mage.players.Player;
|
||||
import mage.players.PlayerImpl;
|
||||
import mage.target.Target;
|
||||
import mage.target.TargetAmount;
|
||||
import mage.target.TargetCard;
|
||||
import mage.target.TargetPlayer;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.*;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import static com.google.common.base.Preconditions.checkArgument;
|
||||
import static com.google.common.base.Preconditions.checkState;
|
||||
import static com.google.common.collect.Iterables.getOnlyElement;
|
||||
import static java.util.Collections.unmodifiableList;
|
||||
import static java.util.Collections.unmodifiableSet;
|
||||
import static java.util.stream.Collectors.toList;
|
||||
import static mage.constants.MultiplayerAttackOption.LEFT;
|
||||
import static mage.constants.RangeOfInfluence.ONE;
|
||||
import static mage.constants.Rarity.LAND;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
public class MulliganTestBase {
|
||||
|
||||
protected static Logger logger = Logger.getLogger(MulliganTestBase.class);
|
||||
|
||||
static class MulliganScenarioTest {
|
||||
|
||||
private final MulliganType mulliganType;
|
||||
private final int freeMulligans;
|
||||
private final List<Step> steps = new ArrayList<>();
|
||||
|
||||
private PlayerProxy player1;
|
||||
|
||||
public MulliganScenarioTest(MulliganType mulliganType, int freeMulligans) {
|
||||
this.mulliganType = mulliganType;
|
||||
this.freeMulligans = freeMulligans;
|
||||
}
|
||||
|
||||
public void mulligan(MulliganStep step) {
|
||||
steps.add(step);
|
||||
}
|
||||
|
||||
public void scry(ScryStep step) {
|
||||
steps.add(step);
|
||||
}
|
||||
|
||||
public void discardBottom(DiscardBottomStep step) {
|
||||
steps.add(step);
|
||||
}
|
||||
|
||||
public void run(Runnable callback) {
|
||||
Mulligan mulligan = mulliganType.getMulligan(freeMulligans);
|
||||
Game game = new TwoPlayerDuel(LEFT, ONE, mulligan, 20) {
|
||||
@Override
|
||||
public void fireStatusEvent(String message, boolean withTime) {
|
||||
super.fireStatusEvent(message, withTime);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void play(UUID nextPlayerId) {
|
||||
}
|
||||
};
|
||||
GameOptions options = new GameOptions();
|
||||
options.skipInitShuffling = true;
|
||||
game.setGameOptions(options);
|
||||
|
||||
this.player1 = new PlayerProxy("p1", ONE);
|
||||
player1.setSteps(steps);
|
||||
Deck deck1 = generateDeck(player1.getId(), 40);
|
||||
game.loadCards(deck1.getCards(), player1.getId());
|
||||
game.addPlayer(player1, deck1);
|
||||
|
||||
PlayerProxy player2 = new PlayerProxy("p2", ONE);
|
||||
Deck deck2 = generateDeck(player2.getId(), 40);
|
||||
game.loadCards(deck2.getCards(), player2.getId());
|
||||
game.addPlayer(player2, deck2);
|
||||
|
||||
game.start(player1.getId());
|
||||
|
||||
player1.assertStepsComplete();
|
||||
callback.run();
|
||||
}
|
||||
|
||||
public Set<UUID> getHand() {
|
||||
checkState(player1 != null);
|
||||
return unmodifiableSet(player1.getHand());
|
||||
}
|
||||
|
||||
public List<UUID> getLibrary() {
|
||||
checkState(player1 != null);
|
||||
return unmodifiableList(player1.getLibrary().getCardList());
|
||||
}
|
||||
|
||||
public List<UUID> getNTopOfLibrary(int n) {
|
||||
checkState(player1 != null);
|
||||
List<UUID> library = getLibrary();
|
||||
checkArgument(n <= library.size());
|
||||
return unmodifiableList(library.subList(0, n));
|
||||
}
|
||||
|
||||
public List<UUID> getNBottomOfLibrary(int n) {
|
||||
checkState(player1 != null);
|
||||
List<UUID> library = getLibrary();
|
||||
checkArgument(n <= library.size());
|
||||
return unmodifiableList(library.subList(library.size() - n, library.size()));
|
||||
}
|
||||
|
||||
|
||||
public List<UUID> getLibraryRangeSize(int start, int n) {
|
||||
return getLibraryRangeIndex(start, start + n);
|
||||
}
|
||||
|
||||
public List<UUID> getLibraryRangeIndex(int start, int end) {
|
||||
checkArgument(end >= start);
|
||||
checkState(player1 != null);
|
||||
List<UUID> library = getLibrary();
|
||||
checkArgument(end <= library.size());
|
||||
return unmodifiableList(library.subList(start, end));
|
||||
}
|
||||
|
||||
public UUID getLibraryTopCard() {
|
||||
return getOnlyElement(getNTopOfLibrary(1));
|
||||
}
|
||||
|
||||
public void assertSizes(int handSize, int librarySize) {
|
||||
assertEquals("hand size", handSize, getHand().size());
|
||||
assertEquals("library size", librarySize, getLibrary().size());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static Deck generateDeck(UUID playerId, int count) {
|
||||
Deck deck = new Deck();
|
||||
Stream.generate(() -> new Forest(playerId, new CardSetInfo("Forest", "TEST", "1", LAND)))
|
||||
.limit(count)
|
||||
.forEach(deck.getCards()::add);
|
||||
return deck;
|
||||
}
|
||||
|
||||
interface Step {}
|
||||
|
||||
interface MulliganStep extends Step {
|
||||
boolean mulligan();
|
||||
}
|
||||
|
||||
interface ScryStep extends Step {
|
||||
boolean scry();
|
||||
}
|
||||
|
||||
interface DiscardBottomStep extends Step {
|
||||
List<UUID> discardBottom(int count);
|
||||
}
|
||||
|
||||
static class PlayerProxy extends StubPlayer {
|
||||
|
||||
private List<Step> steps = null;
|
||||
private int current = 0;
|
||||
|
||||
public PlayerProxy(String name, RangeOfInfluence range) {
|
||||
super(name, range);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean chooseMulligan(Game game) {
|
||||
if (steps == null) {
|
||||
return super.chooseMulligan(game);
|
||||
}
|
||||
if (current >= steps.size()) {
|
||||
fail("Tried to mulligan without a test step.");
|
||||
}
|
||||
Step step = steps.get(current++);
|
||||
assertTrue("Expected mulligan step.",
|
||||
MulliganStep.class.isAssignableFrom(step.getClass()));
|
||||
return ((MulliganStep) step).mulligan();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean chooseScry(Game game, UUID cardId) {
|
||||
if (steps == null) {
|
||||
return super.chooseScry(game, cardId);
|
||||
}
|
||||
if (current >= steps.size()) {
|
||||
fail("Tried to scry without a test step.");
|
||||
}
|
||||
Step step = steps.get(current++);
|
||||
assertTrue("Expected scry step.",
|
||||
ScryStep.class.isAssignableFrom(step.getClass()));
|
||||
return ((ScryStep) step).scry();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UUID> chooseDiscardBottom(Game game, int count, List<UUID> cardIds) {
|
||||
if (steps == null) {
|
||||
return super.chooseDiscardBottom(game, count, cardIds);
|
||||
}
|
||||
if (current >= steps.size()) {
|
||||
fail("Tried to discard without a test step.");
|
||||
}
|
||||
Step step = steps.get(current++);
|
||||
assertTrue("Expected discard bottom step.",
|
||||
DiscardBottomStep.class.isAssignableFrom(step.getClass()));
|
||||
return ((DiscardBottomStep) step).discardBottom(count);
|
||||
}
|
||||
|
||||
public void setSteps(List<Step> steps) {
|
||||
this.steps = steps;
|
||||
}
|
||||
|
||||
public void assertStepsComplete() {
|
||||
assertEquals(steps.size(), current);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static class StubPlayer extends PlayerImpl implements Player {
|
||||
|
||||
public boolean choose(Outcome outcome, Target target, UUID sourceId, Game game) {
|
||||
if (target instanceof TargetPlayer) {
|
||||
for (Player player : game.getPlayers().values()) {
|
||||
if (player.getId().equals(getId()) && target.canTarget(getId(), game)) {
|
||||
target.add(player.getId(), game);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean choose(Outcome outcome, Cards cards, TargetCard target, Game game) {
|
||||
cards.getCards(game).stream().map(MageItem::getId).forEach(cardId -> target.add(cardId, game));
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean chooseTarget(Outcome outcome, Cards cards, TargetCard target, Ability source, Game game) {
|
||||
if ("cards to PUT on the BOTTOM of your library (Discard for Mulligan)".equals(target.getFilter().getMessage())) {
|
||||
chooseDiscardBottom(game, target.getMinNumberOfTargets(), cards.getCards(game)
|
||||
.stream().map(MageItem::getId).collect(toList())).forEach(cardId -> target.add(cardId, game));
|
||||
} else {
|
||||
UUID cardId = getOnlyElement(cards.getCards(game)).getId();
|
||||
if (chooseScry(game, cardId)) {
|
||||
target.add(cardId, game);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public List<UUID> chooseDiscardBottom(Game game, int count, List<UUID> cardIds) {
|
||||
return cardIds.subList(0, count);
|
||||
}
|
||||
|
||||
public boolean chooseScry(Game game, UUID cardId) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void shuffleLibrary(Ability source, Game game) {
|
||||
|
||||
}
|
||||
|
||||
public StubPlayer(String name, RangeOfInfluence range) {
|
||||
super(name, range);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void abort() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void skip() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Player copy() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean priority(Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean choose(Outcome outcome, Target target, UUID sourceId, Game game, Map<String, Serializable> options) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean chooseTarget(Outcome outcome, Target target, Ability source, Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean chooseTargetAmount(Outcome outcome, TargetAmount target, Ability source, Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean chooseMulligan(Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean chooseUse(Outcome outcome, String message, Ability source, Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean chooseUse(Outcome outcome, String message, String secondMessage, String trueText, String falseText, Ability source, Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean choose(Outcome outcome, Choice choice, Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean choosePile(Outcome outcome, String message, List<? extends Card> pile1, List<? extends Card> pile2, Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean playMana(Ability ability, ManaCost unpaid, String promptText, Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int announceXMana(int min, int max, String message, Game game, Ability ability) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int announceXCost(int min, int max, String message, Game game, Ability ability, VariableCost variableCost) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int chooseReplacementEffect(Map<String, String> abilityMap, Game game) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public TriggeredAbility chooseTriggeredAbility(List<TriggeredAbility> abilities, Game game) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Mode chooseMode(Modes modes, Ability source, Game game) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void selectAttackers(Game game, UUID attackingPlayerId) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void selectBlockers(Game game, UUID defendingPlayerId) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID chooseAttackerOrder(List<Permanent> attacker, Game game) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID chooseBlockerOrder(List<Permanent> blockers, CombatGroup combatGroup, List<UUID> blockerOrder, Game game) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void assignDamage(int damage, List<UUID> targets, String singleTargetName, UUID sourceId, Game game) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getAmount(int min, int max, String message, Game game) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sideboard(Match match, Deck deck) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void construct(Tournament tournament, Deck deck) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void pickCard(List<Card> cards, Deck deck, Draft draft) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,181 @@
|
|||
package org.mage.test.mulligan;
|
||||
|
||||
import mage.game.mulligan.MulliganType;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
public class ParisMulliganTest extends MulliganTestBase {
|
||||
|
||||
@Test
|
||||
public void testParisMulligan_NoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.PARIS, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, scenario.getHand());
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testParisMulligan_OneMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.PARIS, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
hand2.addAll(scenario.getHand());
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testParisMulligan_OneMulligan_Scry() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.PARIS, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
hand2.addAll(scenario.getHand());
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testParisMulligan_FreeMulligan_NoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.PARIS, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, scenario.getHand());
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testParisMulligan_FreeMulligan_OneMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.PARIS, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand2.addAll(scenario.getHand());
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testParisMulligan_FreeMulligan_TwoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.PARIS, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> hand3 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(20, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
hand3.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(20, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getHand()));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testParisMulligan_AlwaysMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.PARIS, 0);
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(5, 35);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(4, 36);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(3, 37);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(2, 38);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(1, 39);
|
||||
return true;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(0, 40);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,251 @@
|
|||
package org.mage.test.mulligan;
|
||||
|
||||
import mage.game.mulligan.MulliganType;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
public class VancouverMulliganTest extends MulliganTestBase {
|
||||
|
||||
@Test
|
||||
public void testVancouverMulligan_NoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.VANCOUVER, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, scenario.getHand());
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVancouverMulligan_OneMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.VANCOUVER, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> scry = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
scry.add(scenario.getLibraryTopCard());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(scry, new HashSet<>(scenario.getNTopOfLibrary(1)));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVancouverMulligan_OneMulligan_Scry() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.VANCOUVER, 0);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> scry = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
scry.add(scenario.getLibraryTopCard());
|
||||
return true;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(scry, new HashSet<>(scenario.getNBottomOfLibrary(1)));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVancouverMulligan_FreeMulligan_NoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.VANCOUVER, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, scenario.getHand());
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVancouverMulligan_FreeMulligan_OneMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.VANCOUVER, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand2.addAll(scenario.getHand());
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getHand()));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVancouverMulligan_FreeMulligan_TwoMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.VANCOUVER, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> hand3 = new HashSet<>();
|
||||
Set<UUID> scry = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(20, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
hand3.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(20, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getHand()));
|
||||
scry.add(scenario.getLibraryTopCard());
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(20, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(scry, new HashSet<>(scenario.getNTopOfLibrary(1)));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVancouverMulligan_FreeMulligan_TwoMulligan_Scry() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.VANCOUVER, 1);
|
||||
Set<UUID> hand1 = new HashSet<>();
|
||||
Set<UUID> hand2 = new HashSet<>();
|
||||
Set<UUID> hand3 = new HashSet<>();
|
||||
Set<UUID> scry = new HashSet<>();
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
hand1.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
hand2.addAll(scenario.getHand());
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(20, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
hand3.addAll(scenario.getHand());
|
||||
return false;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(20, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(27, 7)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getHand()));
|
||||
scry.add(scenario.getLibraryTopCard());
|
||||
return true;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
assertEquals(hand1, new HashSet<>(scenario.getLibraryRangeSize(19, 7)));
|
||||
assertEquals(hand2, new HashSet<>(scenario.getLibraryRangeSize(26, 7)));
|
||||
assertEquals(hand3, new HashSet<>(scenario.getHand()));
|
||||
assertEquals(scry, new HashSet<>(scenario.getNBottomOfLibrary(1)));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVancouverMulligan_AlwaysMulligan() {
|
||||
MulliganScenarioTest scenario = new MulliganScenarioTest(MulliganType.VANCOUVER, 0);
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(7, 33);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(6, 34);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(5, 35);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(4, 36);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(3, 37);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(2, 38);
|
||||
return true;
|
||||
});
|
||||
scenario.mulligan(() -> {
|
||||
scenario.assertSizes(1, 39);
|
||||
return true;
|
||||
});
|
||||
scenario.scry(() -> {
|
||||
scenario.assertSizes(0, 40);
|
||||
return false;
|
||||
});
|
||||
scenario.run(() -> {
|
||||
scenario.assertSizes(0, 40);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue