2011-05-04 17:33:46 +02:00
|
|
|
package jrummikub.control;
|
|
|
|
|
2011-05-08 22:46:31 +02:00
|
|
|
import static jrummikub.model.StoneColor.BLACK;
|
|
|
|
import static jrummikub.model.StoneColor.BLUE;
|
|
|
|
import static jrummikub.model.StoneColor.RED;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
import static org.junit.Assert.assertFalse;
|
|
|
|
import static org.junit.Assert.assertSame;
|
|
|
|
import static org.junit.Assert.assertTrue;
|
2011-05-04 18:47:13 +02:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Arrays;
|
2011-05-10 00:28:06 +02:00
|
|
|
import java.util.Collections;
|
2011-05-09 00:33:34 +02:00
|
|
|
import java.util.Iterator;
|
2011-05-04 22:37:26 +02:00
|
|
|
import java.util.List;
|
2011-05-04 17:33:46 +02:00
|
|
|
|
2011-05-09 00:33:34 +02:00
|
|
|
import jrummikub.model.IHand;
|
|
|
|
import jrummikub.model.ITable;
|
2011-05-05 00:00:16 +02:00
|
|
|
import jrummikub.model.MockHand;
|
2011-05-04 21:47:35 +02:00
|
|
|
import jrummikub.model.MockTable;
|
2011-05-05 00:00:16 +02:00
|
|
|
import jrummikub.model.Position;
|
2011-05-04 17:33:46 +02:00
|
|
|
import jrummikub.model.Stone;
|
2011-05-04 18:47:13 +02:00
|
|
|
import jrummikub.model.StoneColor;
|
2011-05-04 21:47:35 +02:00
|
|
|
import jrummikub.model.StoneSet;
|
2011-05-08 22:24:22 +02:00
|
|
|
import jrummikub.model.Table;
|
2011-05-04 17:33:46 +02:00
|
|
|
import jrummikub.util.Event;
|
|
|
|
import jrummikub.util.IEvent;
|
|
|
|
import jrummikub.util.IListener;
|
2011-05-05 00:00:16 +02:00
|
|
|
import jrummikub.util.Pair;
|
2011-05-04 17:33:46 +02:00
|
|
|
import jrummikub.view.MockView;
|
|
|
|
|
|
|
|
import org.junit.Before;
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
public class TurnControlTest {
|
2011-05-09 00:33:34 +02:00
|
|
|
static class AccessibleTable extends Table {
|
|
|
|
StoneSet[] getSetArray() {
|
2011-05-08 22:24:22 +02:00
|
|
|
return objects.keySet().toArray(new StoneSet[0]);
|
|
|
|
}
|
|
|
|
}
|
2011-05-04 17:33:46 +02:00
|
|
|
|
|
|
|
class MockTimer implements ITurnTimer {
|
2011-05-04 23:14:10 +02:00
|
|
|
public boolean timerRunning = false;
|
2011-05-04 18:47:12 +02:00
|
|
|
public Event timeRunOutEvent = new Event();
|
2011-05-04 17:33:46 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void startTimer() {
|
|
|
|
timerRunning = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void stopTimer() {
|
|
|
|
timerRunning = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IEvent getTimeRunOutEvent() {
|
2011-05-04 18:47:12 +02:00
|
|
|
return timeRunOutEvent;
|
2011-05-04 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-05-04 22:37:26 +02:00
|
|
|
TurnControl testControl;
|
2011-05-04 17:33:46 +02:00
|
|
|
MockView mockView;
|
|
|
|
MockTimer mockTimer;
|
2011-05-04 21:47:35 +02:00
|
|
|
MockTable mockTable;
|
2011-05-05 00:00:16 +02:00
|
|
|
MockHand mockHand;
|
2011-05-04 17:33:46 +02:00
|
|
|
boolean eventFired;
|
|
|
|
|
2011-05-09 00:33:34 +02:00
|
|
|
private void checkTableDisplay(ITable table) {
|
|
|
|
Iterator<Pair<StoneSet, Position>> stoneSetsView = mockView.tablePanel.stoneSets
|
|
|
|
.iterator();
|
|
|
|
Iterator<Pair<StoneSet, Position>> stoneSetsModel = table.iterator();
|
|
|
|
|
|
|
|
while (stoneSetsView.hasNext()) {
|
|
|
|
assertTrue(stoneSetsModel.hasNext());
|
|
|
|
assertSame(stoneSetsView.next(), stoneSetsModel.next());
|
|
|
|
}
|
|
|
|
assertFalse(stoneSetsModel.hasNext());
|
|
|
|
}
|
|
|
|
|
|
|
|
private void checkHandDisplay(IHand hand) {
|
|
|
|
Iterator<Pair<Stone, Position>> stoneSetsView = mockView.playerPanel.handPanel.stones
|
|
|
|
.iterator();
|
|
|
|
Iterator<Pair<Stone, Position>> stoneSetsModel = hand.iterator();
|
|
|
|
|
|
|
|
while (stoneSetsView.hasNext()) {
|
|
|
|
assertTrue(stoneSetsModel.hasNext());
|
|
|
|
assertSame(stoneSetsView.next(), stoneSetsModel.next());
|
|
|
|
}
|
|
|
|
assertFalse(stoneSetsModel.hasNext());
|
|
|
|
}
|
|
|
|
|
2011-05-04 17:33:46 +02:00
|
|
|
@Before
|
|
|
|
public void setUp() {
|
|
|
|
mockView = new MockView();
|
|
|
|
mockTimer = new MockTimer();
|
2011-05-04 21:47:35 +02:00
|
|
|
mockTable = new MockTable();
|
2011-05-05 00:00:16 +02:00
|
|
|
mockHand = new MockHand();
|
2011-05-05 00:19:02 +02:00
|
|
|
testControl = new TurnControl(mockHand, mockTable, mockView, mockTimer);
|
2011-05-04 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
2011-05-04 23:14:10 +02:00
|
|
|
@Test
|
|
|
|
public void startTimer() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
|
|
|
|
2011-05-04 23:14:10 +02:00
|
|
|
assertTrue(mockTimer.timerRunning);
|
|
|
|
}
|
2011-05-05 00:19:02 +02:00
|
|
|
|
2011-05-05 00:00:16 +02:00
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@Test
|
|
|
|
public void showInitialHand() {
|
2011-05-05 00:19:02 +02:00
|
|
|
mockView.displayStartTurnPanel = true;
|
|
|
|
|
2011-05-10 01:22:56 +02:00
|
|
|
List<Pair<Stone, Position>> stones = Arrays.asList(
|
|
|
|
new Pair<Stone, Position>(new Stone(RED), new Position(0, 0)),
|
|
|
|
new Pair<Stone, Position>(new Stone(BLACK), new Position(1, 0)));
|
2011-05-05 00:19:02 +02:00
|
|
|
|
2011-05-05 00:00:16 +02:00
|
|
|
mockHand.iterable = stones;
|
2011-05-05 00:19:02 +02:00
|
|
|
|
|
|
|
testControl = new TurnControl(mockHand, mockTable, mockView, mockTimer);
|
2011-05-08 18:10:07 +02:00
|
|
|
|
2011-05-05 19:49:58 +02:00
|
|
|
testControl.startTurn();
|
2011-05-05 00:19:02 +02:00
|
|
|
|
2011-05-05 00:00:16 +02:00
|
|
|
int i = 0;
|
|
|
|
for (Pair<Stone, Position> pair : mockView.playerPanel.handPanel.stones) {
|
|
|
|
assertSame(stones.get(i), pair);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
assertEquals(stones.size(), i);
|
2011-05-05 00:19:02 +02:00
|
|
|
|
|
|
|
assertFalse(mockView.displayStartTurnPanel);
|
2011-05-05 00:00:16 +02:00
|
|
|
}
|
2011-05-04 23:14:10 +02:00
|
|
|
|
2011-05-04 17:33:46 +02:00
|
|
|
@Test
|
|
|
|
public void viewEndOfTurn() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
|
|
|
|
2011-05-04 17:33:46 +02:00
|
|
|
eventFired = false;
|
|
|
|
mockTimer.timerRunning = true;
|
|
|
|
|
|
|
|
testControl.getEndOfTurnEvent().add(new IListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void handle() {
|
|
|
|
eventFired = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
mockView.playerPanel.endTurnEvent.emit();
|
2011-05-04 18:47:13 +02:00
|
|
|
|
2011-05-04 17:33:46 +02:00
|
|
|
assertTrue(eventFired);
|
|
|
|
assertFalse(mockTimer.timerRunning);
|
2011-05-05 19:49:56 +02:00
|
|
|
assertTrue(mockView.playerPanel.endTurnEvent.listeners.isEmpty());
|
2011-05-04 17:33:46 +02:00
|
|
|
}
|
2011-05-04 18:47:13 +02:00
|
|
|
|
2011-05-04 17:33:46 +02:00
|
|
|
@Test
|
|
|
|
public void timerEndOfTurn() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
|
|
|
|
2011-05-04 17:33:46 +02:00
|
|
|
eventFired = false;
|
|
|
|
mockTimer.timerRunning = true;
|
|
|
|
|
|
|
|
testControl.getEndOfTurnEvent().add(new IListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void handle() {
|
|
|
|
eventFired = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2011-05-04 18:47:12 +02:00
|
|
|
mockTimer.timeRunOutEvent.emit();
|
2011-05-04 18:47:13 +02:00
|
|
|
|
2011-05-04 17:33:46 +02:00
|
|
|
assertTrue(eventFired);
|
|
|
|
assertFalse(mockTimer.timerRunning);
|
|
|
|
}
|
2011-05-04 18:47:13 +02:00
|
|
|
|
2011-05-05 21:35:40 +02:00
|
|
|
@Test
|
|
|
|
public void deselctOnEndOfTurn() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-05 21:35:40 +02:00
|
|
|
|
|
|
|
Stone firstStone = new Stone(StoneColor.RED);
|
|
|
|
|
|
|
|
// Select first stone
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(firstStone, false);
|
|
|
|
mockTimer.timeRunOutEvent.emit();
|
2011-05-08 18:10:07 +02:00
|
|
|
|
2011-05-05 21:35:40 +02:00
|
|
|
assertCollection(new ArrayList<Stone>());
|
|
|
|
}
|
|
|
|
|
2011-05-04 18:47:13 +02:00
|
|
|
@Test
|
|
|
|
public void selectStoneInHand() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-04 18:47:13 +02:00
|
|
|
|
|
|
|
Stone firstStone = new Stone(StoneColor.RED);
|
|
|
|
|
|
|
|
// Select first stone
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(firstStone, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(firstStone));
|
|
|
|
|
|
|
|
// Select second stone
|
|
|
|
Stone secondStone = new Stone(StoneColor.BLACK);
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(secondStone, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(secondStone));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void collectStoneInHand() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-04 18:47:13 +02:00
|
|
|
|
|
|
|
Stone firstStone = new Stone(StoneColor.RED);
|
|
|
|
|
|
|
|
// Select first stone
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(firstStone, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(firstStone));
|
|
|
|
|
|
|
|
// Select second stone
|
|
|
|
Stone secondStone = new Stone(StoneColor.BLACK);
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(secondStone, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(firstStone, secondStone));
|
|
|
|
|
|
|
|
// De-select first stone
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(firstStone, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(secondStone));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void deselectStoneInCollection() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
|
|
|
|
2011-05-04 18:47:13 +02:00
|
|
|
Stone firstStone = new Stone(StoneColor.RED);
|
|
|
|
Stone secondStone = new Stone(StoneColor.BLACK);
|
|
|
|
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(firstStone, true);
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(secondStone, true);
|
|
|
|
|
2011-05-10 01:22:56 +02:00
|
|
|
mockView.tablePanel.stoneCollectionPanel.stoneClickEvent.emit(firstStone,
|
|
|
|
false);
|
2011-05-04 18:47:13 +02:00
|
|
|
|
|
|
|
assertCollection(Arrays.asList(secondStone));
|
|
|
|
}
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-04 19:08:14 +02:00
|
|
|
@Test
|
|
|
|
public void reorderCollection() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-04 19:08:14 +02:00
|
|
|
|
|
|
|
Stone firstStone = new Stone(StoneColor.RED);
|
|
|
|
Stone secondStone = new Stone(StoneColor.BLACK);
|
|
|
|
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(firstStone, true);
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(secondStone, true);
|
|
|
|
|
2011-05-10 01:22:56 +02:00
|
|
|
mockView.tablePanel.stoneCollectionPanel.stoneClickEvent.emit(firstStone,
|
|
|
|
true);
|
2011-05-04 19:08:14 +02:00
|
|
|
|
|
|
|
assertCollection(Arrays.asList(secondStone, firstStone));
|
|
|
|
}
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-04 19:08:14 +02:00
|
|
|
@Test
|
|
|
|
public void deselectWholeCollection() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-04 19:08:14 +02:00
|
|
|
|
|
|
|
Stone firstStone = new Stone(StoneColor.RED);
|
|
|
|
Stone secondStone = new Stone(StoneColor.BLACK);
|
|
|
|
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(firstStone, true);
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(secondStone, true);
|
|
|
|
|
2011-05-10 01:22:56 +02:00
|
|
|
mockView.tablePanel.stoneCollectionPanel.stoneClickEvent.emit(firstStone,
|
|
|
|
true);
|
2011-05-09 18:36:01 +02:00
|
|
|
|
2011-05-04 22:37:26 +02:00
|
|
|
mockView.tablePanel.stoneCollectionPanel.setClickEvent.emit(firstStone,
|
|
|
|
true);
|
2011-05-04 19:08:14 +02:00
|
|
|
|
|
|
|
assertCollection(new ArrayList<Stone>());
|
|
|
|
}
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-04 21:47:35 +02:00
|
|
|
@Test
|
|
|
|
public void selectStoneOnTable() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-04 21:47:35 +02:00
|
|
|
|
|
|
|
Stone firstStone = new Stone(StoneColor.RED);
|
|
|
|
|
|
|
|
// Select first stone
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(firstStone, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(firstStone));
|
|
|
|
|
|
|
|
// Select second stone
|
|
|
|
Stone secondStone = new Stone(StoneColor.BLACK);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(secondStone, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(secondStone));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void collectStoneOnTable() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-04 21:47:35 +02:00
|
|
|
|
|
|
|
Stone firstStone = new Stone(StoneColor.RED);
|
|
|
|
|
|
|
|
// Select first stone
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(firstStone, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(firstStone));
|
|
|
|
|
|
|
|
// Select second stone
|
|
|
|
Stone secondStone = new Stone(StoneColor.BLACK);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(secondStone, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(firstStone, secondStone));
|
|
|
|
|
|
|
|
// De-select first stone
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(firstStone, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(secondStone));
|
|
|
|
}
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-04 21:47:35 +02:00
|
|
|
@Test
|
|
|
|
public void selectSetOnTable() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-04 21:47:35 +02:00
|
|
|
Stone stone1 = new Stone(StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(StoneColor.BLACK);
|
|
|
|
StoneSet set1 = new StoneSet(Arrays.asList(stone1, stone2));
|
|
|
|
Stone stone3 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone4 = new Stone(1, StoneColor.BLACK);
|
|
|
|
StoneSet set2 = new StoneSet(Arrays.asList(stone3, stone4));
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-04 21:47:35 +02:00
|
|
|
mockTable.findStoneSet.put(stone1, set1);
|
|
|
|
mockTable.findStoneSet.put(stone4, set2);
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-09 18:36:01 +02:00
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone1, false);
|
2011-05-04 21:47:35 +02:00
|
|
|
mockView.tablePanel.setClickEvent.emit(stone1, false);
|
|
|
|
assertCollection(Arrays.asList(stone1, stone2));
|
2011-05-09 18:36:01 +02:00
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone4, false);
|
2011-05-04 21:47:35 +02:00
|
|
|
mockView.tablePanel.setClickEvent.emit(stone4, false);
|
|
|
|
assertCollection(Arrays.asList(stone3, stone4));
|
|
|
|
}
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-04 21:47:35 +02:00
|
|
|
@Test
|
|
|
|
public void collectSetOnTable() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-04 21:47:35 +02:00
|
|
|
Stone stone1 = new Stone(StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(StoneColor.BLACK);
|
|
|
|
StoneSet set1 = new StoneSet(Arrays.asList(stone1, stone2));
|
|
|
|
Stone stone3 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone4 = new Stone(1, StoneColor.BLACK);
|
|
|
|
StoneSet set2 = new StoneSet(Arrays.asList(stone3, stone4));
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-04 21:47:35 +02:00
|
|
|
mockTable.findStoneSet.put(stone1, set1);
|
|
|
|
mockTable.findStoneSet.put(stone4, set2);
|
2011-05-04 22:37:26 +02:00
|
|
|
|
2011-05-09 18:36:01 +02:00
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone1, true);
|
2011-05-04 21:47:35 +02:00
|
|
|
mockView.tablePanel.setClickEvent.emit(stone1, true);
|
|
|
|
assertCollection(Arrays.asList(stone1, stone2));
|
2011-05-09 18:36:01 +02:00
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone4, true);
|
2011-05-04 21:47:35 +02:00
|
|
|
mockView.tablePanel.setClickEvent.emit(stone4, true);
|
|
|
|
assertCollection(Arrays.asList(stone1, stone2, stone3, stone4));
|
|
|
|
}
|
2011-05-04 18:47:13 +02:00
|
|
|
|
2011-05-09 20:15:17 +02:00
|
|
|
@Test
|
|
|
|
public void rangeSelectOnTableReverse() {
|
|
|
|
testControl.startTurn();
|
|
|
|
|
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
Stone stone3 = new Stone(3, StoneColor.RED);
|
|
|
|
Stone stone4 = new Stone(4, StoneColor.RED);
|
2011-05-10 01:22:56 +02:00
|
|
|
StoneSet set1 = new StoneSet(Arrays.asList(stone1, stone2, stone3, stone4));
|
2011-05-09 20:15:17 +02:00
|
|
|
|
|
|
|
mockTable.findStoneSet.put(stone1, set1);
|
|
|
|
mockTable.findStoneSet.put(stone3, set1);
|
|
|
|
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone3, false);
|
|
|
|
mockView.tablePanel.rangeClickEvent.emit(stone1, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1, stone2, stone3));
|
|
|
|
|
|
|
|
}
|
2011-05-09 21:19:04 +02:00
|
|
|
|
2011-05-04 22:37:26 +02:00
|
|
|
@Test
|
|
|
|
public void rangeSelectOnTable() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
2011-05-04 22:37:26 +02:00
|
|
|
|
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
Stone stone3 = new Stone(3, StoneColor.RED);
|
|
|
|
Stone stone4 = new Stone(4, StoneColor.RED);
|
2011-05-10 01:22:56 +02:00
|
|
|
StoneSet set1 = new StoneSet(Arrays.asList(stone1, stone2, stone3, stone4));
|
2011-05-04 22:37:26 +02:00
|
|
|
|
|
|
|
mockTable.findStoneSet.put(stone1, set1);
|
|
|
|
mockTable.findStoneSet.put(stone3, set1);
|
|
|
|
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone1, false);
|
|
|
|
mockView.tablePanel.rangeClickEvent.emit(stone3, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1, stone2, stone3));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void rangeCollectOnTable() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
|
|
|
|
2011-05-04 22:37:26 +02:00
|
|
|
Stone extraStone = new Stone(StoneColor.RED);
|
|
|
|
|
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
Stone stone3 = new Stone(3, StoneColor.RED);
|
|
|
|
Stone stone4 = new Stone(4, StoneColor.RED);
|
2011-05-10 01:22:56 +02:00
|
|
|
StoneSet set1 = new StoneSet(Arrays.asList(stone1, stone2, stone3, stone4));
|
2011-05-04 22:37:26 +02:00
|
|
|
|
|
|
|
mockTable.findStoneSet.put(stone1, set1);
|
|
|
|
mockTable.findStoneSet.put(stone3, set1);
|
|
|
|
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(extraStone, false);
|
|
|
|
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone1, true);
|
|
|
|
mockView.tablePanel.rangeClickEvent.emit(stone3, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(extraStone, stone1, stone2, stone3));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void rangeFailSelect() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
|
|
|
|
2011-05-04 22:37:26 +02:00
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
StoneSet set1 = new StoneSet(Arrays.asList(stone1));
|
|
|
|
StoneSet set2 = new StoneSet(Arrays.asList(stone2));
|
|
|
|
|
|
|
|
mockTable.findStoneSet.put(stone1, set1);
|
|
|
|
mockTable.findStoneSet.put(stone2, set2);
|
|
|
|
|
|
|
|
// Select first stone
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone1, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1));
|
|
|
|
|
|
|
|
// Select second stone
|
|
|
|
mockView.tablePanel.rangeClickEvent.emit(stone2, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone2));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void rangeFailCollect() {
|
2011-05-09 00:33:34 +02:00
|
|
|
testControl.startTurn();
|
|
|
|
|
2011-05-04 22:37:26 +02:00
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
StoneSet set1 = new StoneSet(Arrays.asList(stone1));
|
|
|
|
StoneSet set2 = new StoneSet(Arrays.asList(stone2));
|
|
|
|
|
|
|
|
mockTable.findStoneSet.put(stone1, set1);
|
|
|
|
mockTable.findStoneSet.put(stone2, set2);
|
|
|
|
|
|
|
|
// Select first stone
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone1, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1));
|
|
|
|
|
|
|
|
// Select second stone
|
|
|
|
mockView.tablePanel.rangeClickEvent.emit(stone2, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1, stone2));
|
|
|
|
}
|
|
|
|
|
2011-05-09 21:19:04 +02:00
|
|
|
@Test
|
|
|
|
public void rangeSelectOnHandReverse() {
|
|
|
|
testControl.startTurn();
|
|
|
|
|
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
Stone stone3 = new Stone(3, StoneColor.RED);
|
|
|
|
Stone stone4 = new Stone(4, StoneColor.RED);
|
|
|
|
mockHand.drop(stone1, new Position(0, 0));
|
|
|
|
mockHand.drop(stone2, new Position(1.5f, 0));
|
|
|
|
mockHand.drop(stone3, new Position(0, 1));
|
|
|
|
mockHand.drop(stone4, new Position(1, 1));
|
|
|
|
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(stone3, false);
|
|
|
|
mockView.playerPanel.handPanel.rangeClickEvent.emit(stone1, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1, stone2, stone3));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void rangeSelectOnHand() {
|
|
|
|
testControl.startTurn();
|
|
|
|
|
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
Stone stone3 = new Stone(3, StoneColor.RED);
|
|
|
|
Stone stone4 = new Stone(4, StoneColor.RED);
|
|
|
|
mockHand.drop(stone1, new Position(0, 0));
|
|
|
|
mockHand.drop(stone2, new Position(1.5f, 0));
|
|
|
|
mockHand.drop(stone3, new Position(0, 1));
|
|
|
|
mockHand.drop(stone4, new Position(1, 1));
|
|
|
|
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(stone1, false);
|
|
|
|
mockView.playerPanel.handPanel.rangeClickEvent.emit(stone3, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1, stone2, stone3));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void rangeCollectOnHand() {
|
|
|
|
testControl.startTurn();
|
|
|
|
|
|
|
|
Stone extraStone = new Stone(StoneColor.RED);
|
|
|
|
|
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
Stone stone3 = new Stone(3, StoneColor.RED);
|
|
|
|
Stone stone4 = new Stone(4, StoneColor.RED);
|
|
|
|
mockHand.drop(stone1, new Position(0, 0));
|
|
|
|
mockHand.drop(stone2, new Position(1.5f, 0));
|
|
|
|
mockHand.drop(stone3, new Position(0, 1));
|
|
|
|
mockHand.drop(stone4, new Position(1, 1));
|
|
|
|
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(extraStone, false);
|
|
|
|
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(stone1, true);
|
|
|
|
mockView.playerPanel.handPanel.rangeClickEvent.emit(stone3, false);
|
|
|
|
assertCollection(Arrays.asList(extraStone, stone1, stone2, stone3));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void rangeFailSelectHand() {
|
|
|
|
testControl.startTurn();
|
|
|
|
|
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
StoneSet set1 = new StoneSet(Arrays.asList(stone1));
|
|
|
|
mockTable.findStoneSet.put(stone1, set1);
|
|
|
|
mockHand.drop(stone2, new Position(0, 0));
|
|
|
|
// Select first stone
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone1, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1));
|
|
|
|
|
|
|
|
// Select second stone
|
|
|
|
mockView.playerPanel.handPanel.rangeClickEvent.emit(stone2, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone2));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void rangeFailCollectHand() {
|
|
|
|
testControl.startTurn();
|
|
|
|
|
|
|
|
Stone stone1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone stone2 = new Stone(2, StoneColor.RED);
|
|
|
|
StoneSet set1 = new StoneSet(Arrays.asList(stone1));
|
|
|
|
mockTable.findStoneSet.put(stone1, set1);
|
|
|
|
mockHand.drop(stone2, new Position(0, 0));
|
|
|
|
// Select first stone
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(stone1, false);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1));
|
|
|
|
|
|
|
|
// Select second stone
|
|
|
|
mockView.playerPanel.handPanel.rangeClickEvent.emit(stone2, true);
|
|
|
|
|
|
|
|
assertCollection(Arrays.asList(stone1, stone2));
|
|
|
|
}
|
|
|
|
|
2011-05-04 18:47:13 +02:00
|
|
|
private void assertCollection(List<Stone> expected) {
|
|
|
|
ArrayList<Stone> selectedStones = new ArrayList<Stone>(
|
|
|
|
mockView.selectedStones);
|
|
|
|
ArrayList<Stone> expectedStones = new ArrayList<Stone>(expected);
|
2011-05-05 21:35:40 +02:00
|
|
|
assertEquals(expectedStones, selectedStones);
|
2011-05-04 18:47:13 +02:00
|
|
|
}
|
2011-05-08 18:10:07 +02:00
|
|
|
|
|
|
|
@Test
|
2011-05-08 21:54:04 +02:00
|
|
|
public void testAddLeft() {
|
2011-05-09 00:33:34 +02:00
|
|
|
AccessibleTable table = new AccessibleTable();
|
|
|
|
TurnControl turnControl = new TurnControl(mockHand, table, mockView,
|
|
|
|
mockTimer);
|
2011-05-08 22:24:22 +02:00
|
|
|
turnControl.startTurn();
|
2011-05-08 21:54:04 +02:00
|
|
|
Stone blueOne = new Stone(1, BLUE);
|
|
|
|
Stone redOne = new Stone(1, RED);
|
|
|
|
Stone blackOne = new Stone(1, BLACK);
|
|
|
|
Stone blueTwo = new Stone(2, BLUE);
|
|
|
|
Stone blueThree = new Stone(3, BLUE);
|
|
|
|
Stone blueFour = new Stone(4, BLUE);
|
|
|
|
Stone redTwo = new Stone(2, RED);
|
|
|
|
Stone redThree = new Stone(3, RED);
|
|
|
|
Stone redFour = new Stone(4, RED);
|
|
|
|
Stone blackTwo = new Stone(2, BLACK);
|
|
|
|
Stone blackThree = new Stone(3, BLACK);
|
|
|
|
Stone blackFour = new Stone(4, BLACK);
|
|
|
|
Stone blackFive = new Stone(5, BLACK);
|
2011-05-10 01:22:56 +02:00
|
|
|
StoneSet oldSet1 = new StoneSet(Arrays.asList(blueOne, redOne, blackOne,
|
|
|
|
redTwo, redThree, redFour, blackTwo, blackThree));
|
|
|
|
StoneSet oldSet2 = new StoneSet(
|
|
|
|
Arrays.asList(blueTwo, blackFour, blackFive));
|
2011-05-08 22:24:22 +02:00
|
|
|
table.drop(oldSet1, new Position(0, 0));
|
|
|
|
table.drop(oldSet2, new Position(0, 0));
|
2011-05-08 21:54:04 +02:00
|
|
|
mockHand.drop(blueThree, new Position(0, 0));
|
|
|
|
mockHand.drop(blueFour, new Position(0, 0));
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(blueThree, false);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redOne, true);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redThree, true);
|
|
|
|
mockView.tablePanel.leftConnectorClickEvent.emit(oldSet1);
|
|
|
|
// handcheck
|
|
|
|
assertEquals(1, mockHand.getSize());
|
2011-05-09 00:33:34 +02:00
|
|
|
assertSame(mockHand.stones.get(0).getFirst(), blueFour);
|
2011-05-08 21:54:04 +02:00
|
|
|
// tablecheck
|
2011-05-08 22:24:22 +02:00
|
|
|
assertEquals(2, table.getSize());
|
2011-05-08 21:54:04 +02:00
|
|
|
StoneSet newSet1, newSet2;
|
2011-05-08 22:24:22 +02:00
|
|
|
if (table.getSetArray()[0].size() == 3) {
|
|
|
|
newSet2 = table.getSetArray()[0];
|
|
|
|
newSet1 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
} else {
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet1 = table.getSetArray()[0];
|
|
|
|
newSet2 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
}
|
|
|
|
assertSame(oldSet2, newSet2);
|
|
|
|
// setcheck
|
|
|
|
assertEquals(9, newSet1.size());
|
|
|
|
assertSame(newSet1.get(0), blueThree);
|
|
|
|
assertSame(newSet1.get(1), redOne);
|
|
|
|
assertSame(newSet1.get(2), redThree);
|
|
|
|
assertSame(newSet1.get(3), blueOne);
|
|
|
|
assertSame(newSet1.get(4), blackOne);
|
|
|
|
assertSame(newSet1.get(5), redTwo);
|
|
|
|
assertSame(newSet1.get(6), redFour);
|
|
|
|
assertSame(newSet1.get(7), blackTwo);
|
|
|
|
assertSame(newSet1.get(8), blackThree);
|
|
|
|
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redOne, true);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redThree, true);
|
|
|
|
mockView.tablePanel.leftConnectorClickEvent.emit(oldSet2);
|
|
|
|
// handcheck
|
|
|
|
assertEquals(1, mockHand.getSize());
|
2011-05-09 00:33:34 +02:00
|
|
|
assertSame(mockHand.stones.get(0).getFirst(), blueFour);
|
2011-05-08 21:54:04 +02:00
|
|
|
// tablecheck
|
2011-05-08 22:24:22 +02:00
|
|
|
assertEquals(2, table.getSize());
|
|
|
|
if (table.getSetArray()[0].size() == 5) {
|
2011-05-09 00:33:34 +02:00
|
|
|
newSet2 = table.getSetArray()[0];
|
|
|
|
newSet1 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
} else {
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet1 = table.getSetArray()[0];
|
|
|
|
newSet2 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
}
|
|
|
|
// setcheck1
|
|
|
|
assertEquals(7, newSet1.size());
|
|
|
|
assertSame(newSet1.get(0), blueThree);
|
|
|
|
assertSame(newSet1.get(1), blueOne);
|
|
|
|
assertSame(newSet1.get(2), blackOne);
|
|
|
|
assertSame(newSet1.get(3), redTwo);
|
|
|
|
assertSame(newSet1.get(4), redFour);
|
|
|
|
assertSame(newSet1.get(5), blackTwo);
|
|
|
|
assertSame(newSet1.get(6), blackThree);
|
|
|
|
// setcheck2
|
|
|
|
assertEquals(5, newSet2.size());
|
|
|
|
assertSame(newSet2.get(0), redOne);
|
|
|
|
assertSame(newSet2.get(1), redThree);
|
|
|
|
assertSame(newSet2.get(2), blueTwo);
|
|
|
|
assertSame(newSet2.get(3), blackFour);
|
|
|
|
assertSame(newSet2.get(4), blackFive);
|
|
|
|
// versuche, links was wegzunehmen und wieder anzuhängen
|
2011-05-09 18:53:37 +02:00
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(blueFour, false);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redOne, true);
|
|
|
|
mockView.tablePanel.leftConnectorClickEvent.emit(newSet2);
|
2011-05-09 21:19:04 +02:00
|
|
|
|
2011-05-08 21:54:04 +02:00
|
|
|
// handcheck
|
|
|
|
assertEquals(0, mockHand.getSize());
|
|
|
|
// tablecheck
|
2011-05-08 22:24:22 +02:00
|
|
|
assertEquals(2, table.getSize());
|
|
|
|
if (table.getSetArray()[0].size() == 6) {
|
|
|
|
newSet2 = table.getSetArray()[0];
|
|
|
|
newSet1 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
} else {
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet1 = table.getSetArray()[0];
|
|
|
|
newSet2 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
}
|
|
|
|
// setcheck1
|
|
|
|
assertEquals(7, newSet1.size());
|
|
|
|
// setcheck2
|
|
|
|
assertEquals(6, newSet2.size());
|
2011-05-09 18:53:37 +02:00
|
|
|
assertSame(newSet2.get(0), blueFour);
|
|
|
|
assertSame(newSet2.get(1), redOne);
|
2011-05-08 21:54:04 +02:00
|
|
|
assertSame(newSet2.get(2), redThree);
|
|
|
|
assertSame(newSet2.get(3), blueTwo);
|
|
|
|
assertSame(newSet2.get(4), blackFour);
|
|
|
|
assertSame(newSet2.get(5), blackFive);
|
2011-05-08 18:10:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2011-05-08 21:54:04 +02:00
|
|
|
public void testAddRight() {
|
2011-05-09 00:33:34 +02:00
|
|
|
AccessibleTable table = new AccessibleTable();
|
|
|
|
TurnControl turnControl = new TurnControl(mockHand, table, mockView,
|
|
|
|
mockTimer);
|
2011-05-08 22:24:22 +02:00
|
|
|
turnControl.startTurn();
|
2011-05-08 21:54:04 +02:00
|
|
|
Stone blueOne = new Stone(1, BLUE);
|
|
|
|
Stone redOne = new Stone(1, RED);
|
|
|
|
Stone blackOne = new Stone(1, BLACK);
|
|
|
|
Stone blueTwo = new Stone(2, BLUE);
|
|
|
|
Stone blueThree = new Stone(3, BLUE);
|
|
|
|
Stone blueFour = new Stone(4, BLUE);
|
|
|
|
Stone redTwo = new Stone(2, RED);
|
|
|
|
Stone redThree = new Stone(3, RED);
|
|
|
|
Stone redFour = new Stone(4, RED);
|
|
|
|
Stone blackTwo = new Stone(2, BLACK);
|
|
|
|
Stone blackThree = new Stone(3, BLACK);
|
|
|
|
Stone blackFour = new Stone(4, BLACK);
|
|
|
|
Stone blackFive = new Stone(5, BLACK);
|
2011-05-10 01:22:56 +02:00
|
|
|
StoneSet oldSet1 = new StoneSet(Arrays.asList(blueOne, redOne, blackOne,
|
|
|
|
redTwo, redThree, redFour, blackTwo, blackThree));
|
|
|
|
StoneSet oldSet2 = new StoneSet(
|
|
|
|
Arrays.asList(blueTwo, blackFour, blackFive));
|
2011-05-08 22:24:22 +02:00
|
|
|
table.drop(oldSet1, new Position(0, 0));
|
|
|
|
table.drop(oldSet2, new Position(0, 0));
|
2011-05-08 21:54:04 +02:00
|
|
|
mockHand.drop(blueThree, new Position(0, 0));
|
|
|
|
mockHand.drop(blueFour, new Position(0, 0));
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(blueThree, false);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redOne, true);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redThree, true);
|
|
|
|
mockView.tablePanel.rightConnectorClickEvent.emit(oldSet1);
|
|
|
|
// handcheck
|
|
|
|
assertEquals(1, mockHand.getSize());
|
2011-05-09 00:33:34 +02:00
|
|
|
assertSame(mockHand.stones.get(0).getFirst(), blueFour);
|
2011-05-08 21:54:04 +02:00
|
|
|
// tablecheck
|
2011-05-08 22:24:22 +02:00
|
|
|
assertEquals(2, table.getSize());
|
2011-05-08 21:54:04 +02:00
|
|
|
StoneSet newSet1, newSet2;
|
2011-05-08 22:24:22 +02:00
|
|
|
if (table.getSetArray()[0].size() == 3) {
|
|
|
|
newSet2 = table.getSetArray()[0];
|
|
|
|
newSet1 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
} else {
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet1 = table.getSetArray()[0];
|
|
|
|
newSet2 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
}
|
|
|
|
assertSame(oldSet2, newSet2);
|
|
|
|
// setcheck
|
|
|
|
assertEquals(9, newSet1.size());
|
|
|
|
assertSame(newSet1.get(0), blueOne);
|
|
|
|
assertSame(newSet1.get(1), blackOne);
|
|
|
|
assertSame(newSet1.get(2), redTwo);
|
|
|
|
assertSame(newSet1.get(3), redFour);
|
|
|
|
assertSame(newSet1.get(4), blackTwo);
|
|
|
|
assertSame(newSet1.get(5), blackThree);
|
|
|
|
assertSame(newSet1.get(6), blueThree);
|
|
|
|
assertSame(newSet1.get(7), redOne);
|
|
|
|
assertSame(newSet1.get(8), redThree);
|
|
|
|
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redOne, true);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redThree, true);
|
|
|
|
mockView.tablePanel.rightConnectorClickEvent.emit(oldSet2);
|
|
|
|
// handcheck
|
|
|
|
assertEquals(1, mockHand.getSize());
|
2011-05-09 00:33:34 +02:00
|
|
|
assertSame(mockHand.stones.get(0).getFirst(), blueFour);
|
2011-05-08 21:54:04 +02:00
|
|
|
// tablecheck
|
2011-05-08 22:24:22 +02:00
|
|
|
assertEquals(2, table.getSize());
|
|
|
|
if (table.getSetArray()[0].size() == 5) {
|
|
|
|
newSet2 = table.getSetArray()[0];
|
|
|
|
newSet1 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
} else {
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet1 = table.getSetArray()[0];
|
|
|
|
newSet2 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
}
|
|
|
|
// setcheck1
|
|
|
|
assertEquals(7, newSet1.size());
|
|
|
|
assertSame(newSet1.get(0), blueOne);
|
|
|
|
assertSame(newSet1.get(1), blackOne);
|
|
|
|
assertSame(newSet1.get(2), redTwo);
|
|
|
|
assertSame(newSet1.get(3), redFour);
|
|
|
|
assertSame(newSet1.get(4), blackTwo);
|
|
|
|
assertSame(newSet1.get(5), blackThree);
|
|
|
|
assertSame(newSet1.get(6), blueThree);
|
|
|
|
// setcheck2
|
|
|
|
assertEquals(5, newSet2.size());
|
|
|
|
assertSame(newSet2.get(0), blueTwo);
|
|
|
|
assertSame(newSet2.get(1), blackFour);
|
|
|
|
assertSame(newSet2.get(2), blackFive);
|
|
|
|
assertSame(newSet2.get(3), redOne);
|
|
|
|
assertSame(newSet2.get(4), redThree);
|
|
|
|
// versuche, rechts was wegzunehmen und wieder anzuhängen
|
2011-05-09 18:53:37 +02:00
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(blueFour, false);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redThree, true);
|
|
|
|
mockView.tablePanel.rightConnectorClickEvent.emit(newSet2);
|
2011-05-09 21:19:04 +02:00
|
|
|
|
2011-05-08 21:54:04 +02:00
|
|
|
// handcheck
|
|
|
|
assertEquals(0, mockHand.getSize());
|
|
|
|
// tablecheck
|
2011-05-08 22:24:22 +02:00
|
|
|
assertEquals(2, table.getSize());
|
|
|
|
if (table.getSetArray()[0].size() == 6) {
|
|
|
|
newSet2 = table.getSetArray()[0];
|
|
|
|
newSet1 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
} else {
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet1 = table.getSetArray()[0];
|
|
|
|
newSet2 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
}
|
|
|
|
// setcheck1
|
|
|
|
assertEquals(7, newSet1.size());
|
|
|
|
// setcheck2
|
|
|
|
assertEquals(6, newSet2.size());
|
|
|
|
assertSame(newSet2.get(0), blueTwo);
|
|
|
|
assertSame(newSet2.get(1), blackFour);
|
|
|
|
assertSame(newSet2.get(2), blackFive);
|
|
|
|
assertSame(newSet2.get(3), redOne);
|
|
|
|
assertSame(newSet2.get(4), blueFour);
|
|
|
|
assertSame(newSet2.get(5), redThree);
|
2011-05-08 18:10:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2011-05-08 21:54:04 +02:00
|
|
|
public void testAddNewSet() {
|
2011-05-09 00:33:34 +02:00
|
|
|
AccessibleTable table = new AccessibleTable();
|
|
|
|
TurnControl turnControl = new TurnControl(mockHand, table, mockView,
|
|
|
|
mockTimer);
|
2011-05-08 22:24:22 +02:00
|
|
|
turnControl.startTurn();
|
2011-05-08 21:54:04 +02:00
|
|
|
Stone blueOne = new Stone(1, BLUE);
|
|
|
|
Stone redOne = new Stone(1, RED);
|
|
|
|
Stone blackOne = new Stone(1, BLACK);
|
|
|
|
Stone blueTwo = new Stone(2, BLUE);
|
|
|
|
Stone blueThree = new Stone(3, BLUE);
|
|
|
|
Stone blueFour = new Stone(4, BLUE);
|
|
|
|
Stone redTwo = new Stone(2, RED);
|
|
|
|
Stone redThree = new Stone(3, RED);
|
|
|
|
Stone redFour = new Stone(4, RED);
|
|
|
|
Stone blackTwo = new Stone(2, BLACK);
|
|
|
|
Stone blackThree = new Stone(3, BLACK);
|
|
|
|
Stone blackFour = new Stone(4, BLACK);
|
|
|
|
Stone blackFive = new Stone(5, BLACK);
|
2011-05-10 01:22:56 +02:00
|
|
|
StoneSet oldSet1 = new StoneSet(Arrays.asList(blueOne, redOne, blackOne,
|
|
|
|
redTwo, redThree, redFour, blackTwo, blackThree));
|
|
|
|
StoneSet oldSet2 = new StoneSet(
|
|
|
|
Arrays.asList(blueTwo, blackFour, blackFive));
|
2011-05-08 22:24:22 +02:00
|
|
|
table.drop(oldSet1, new Position(0, 0));
|
|
|
|
table.drop(oldSet2, new Position(0, 0));
|
2011-05-08 21:54:04 +02:00
|
|
|
mockHand.drop(blueThree, new Position(0, 0));
|
|
|
|
mockHand.drop(blueFour, new Position(0, 0));
|
|
|
|
mockView.playerPanel.handPanel.stoneClickEvent.emit(blueThree, false);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redOne, true);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(redThree, true);
|
|
|
|
mockView.tablePanel.stoneClickEvent.emit(blueTwo, true);
|
|
|
|
mockView.tablePanel.clickEvent.emit(new Position(0, 0));
|
|
|
|
// handcheck
|
|
|
|
assertEquals(1, mockHand.getSize());
|
2011-05-09 00:33:34 +02:00
|
|
|
assertSame(blueFour, mockHand.stones.get(0).getFirst());
|
2011-05-08 21:54:04 +02:00
|
|
|
// tablecheck
|
|
|
|
StoneSet newSet1, newSet2, newSet3;
|
2011-05-09 00:33:34 +02:00
|
|
|
assertEquals(3, table.getSize());
|
2011-05-08 22:24:22 +02:00
|
|
|
if (table.getSetArray()[0].size() == 2) {
|
|
|
|
newSet2 = table.getSetArray()[0];
|
|
|
|
if (table.getSetArray()[1].size() == 4) {
|
|
|
|
newSet3 = table.getSetArray()[1];
|
|
|
|
newSet1 = table.getSetArray()[2];
|
2011-05-08 21:54:04 +02:00
|
|
|
} else {
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet3 = table.getSetArray()[2];
|
|
|
|
newSet1 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
}
|
2011-05-08 22:24:22 +02:00
|
|
|
} else if (table.getSetArray()[0].size() == 4) {
|
|
|
|
newSet3 = table.getSetArray()[0];
|
|
|
|
if (table.getSetArray()[1].size() == 2) {
|
|
|
|
newSet2 = table.getSetArray()[1];
|
|
|
|
newSet1 = table.getSetArray()[2];
|
2011-05-08 21:54:04 +02:00
|
|
|
} else {
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet2 = table.getSetArray()[2];
|
|
|
|
newSet1 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
}
|
|
|
|
} else {
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet1 = table.getSetArray()[0];
|
|
|
|
if (table.getSetArray()[1].size() == 2) {
|
|
|
|
newSet2 = table.getSetArray()[1];
|
|
|
|
newSet3 = table.getSetArray()[2];
|
2011-05-08 21:54:04 +02:00
|
|
|
} else {
|
2011-05-09 00:33:34 +02:00
|
|
|
newSet2 = table.getSetArray()[2];
|
2011-05-08 22:24:22 +02:00
|
|
|
newSet3 = table.getSetArray()[1];
|
2011-05-08 21:54:04 +02:00
|
|
|
}
|
|
|
|
}
|
2011-05-08 18:10:07 +02:00
|
|
|
|
2011-05-08 21:54:04 +02:00
|
|
|
// setcheck1
|
|
|
|
assertEquals(6, newSet1.size());
|
|
|
|
assertSame(newSet1.get(0), blueOne);
|
|
|
|
assertSame(newSet1.get(1), blackOne);
|
|
|
|
assertSame(newSet1.get(2), redTwo);
|
|
|
|
assertSame(newSet1.get(3), redFour);
|
|
|
|
assertSame(newSet1.get(4), blackTwo);
|
|
|
|
assertSame(newSet1.get(5), blackThree);
|
|
|
|
// setcheck2
|
|
|
|
assertEquals(2, newSet2.size());
|
|
|
|
assertSame(newSet2.get(0), blackFour);
|
|
|
|
assertSame(newSet2.get(1), blackFive);
|
|
|
|
// setcheck1
|
|
|
|
assertEquals(4, newSet3.size());
|
|
|
|
assertSame(newSet3.get(0), blueThree);
|
|
|
|
assertSame(newSet3.get(1), redOne);
|
|
|
|
assertSame(newSet3.get(2), redThree);
|
|
|
|
assertSame(newSet3.get(3), blueTwo);
|
2011-05-09 00:33:34 +02:00
|
|
|
|
|
|
|
checkTableDisplay(table);
|
|
|
|
checkHandDisplay(mockHand);
|
2011-05-08 18:10:07 +02:00
|
|
|
}
|
2011-05-10 01:22:56 +02:00
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
@Test
|
|
|
|
public void testSortByGroups() {
|
2011-05-10 01:22:56 +02:00
|
|
|
testControl.startTurn();
|
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
Stone red1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone blue2 = new Stone(2, StoneColor.BLUE);
|
|
|
|
Stone red4 = new Stone(4, StoneColor.RED);
|
|
|
|
Stone red3 = new Stone(3, StoneColor.RED);
|
|
|
|
Stone orange10 = new Stone(10, StoneColor.ORANGE);
|
|
|
|
Stone blue1 = new Stone(1, StoneColor.BLUE);
|
|
|
|
Stone blue4 = new Stone(4, StoneColor.BLUE);
|
|
|
|
Stone blue4a = new Stone(4, StoneColor.BLUE);
|
|
|
|
Stone joker = new Stone(StoneColor.BLACK);
|
|
|
|
Stone black5 = new Stone(5, StoneColor.BLACK);
|
|
|
|
Stone orange13 = new Stone(13, StoneColor.ORANGE);
|
|
|
|
Stone red11 = new Stone(11, StoneColor.RED);
|
|
|
|
Stone black10 = new Stone(10, StoneColor.BLACK);
|
|
|
|
mockHand.drop(red1, new Position(0, 0));
|
|
|
|
mockHand.drop(blue2, new Position(0, 0));
|
|
|
|
mockHand.drop(red4, new Position(0, 0));
|
|
|
|
mockHand.drop(red3, new Position(0, 0));
|
|
|
|
mockHand.drop(orange10, new Position(0, 0));
|
|
|
|
mockHand.drop(blue1, new Position(0, 0));
|
|
|
|
mockHand.drop(blue4, new Position(0, 0));
|
|
|
|
mockHand.drop(blue4a, new Position(0, 0));
|
|
|
|
mockHand.drop(joker, new Position(0, 0));
|
|
|
|
mockHand.drop(black5, new Position(0, 0));
|
|
|
|
mockHand.drop(orange13, new Position(0, 0));
|
|
|
|
mockHand.drop(red11, new Position(0, 0));
|
|
|
|
mockHand.drop(black10, new Position(0, 0));
|
2011-05-10 01:22:56 +02:00
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
mockView.playerPanel.sortByGroupsEvent.emit();
|
2011-05-10 01:22:56 +02:00
|
|
|
|
|
|
|
List<Pair<Stone, Position>> stones = new ArrayList<Pair<Stone, Position>>(
|
|
|
|
mockHand.stones);
|
2011-05-10 00:28:06 +02:00
|
|
|
Collections.sort(stones, new TurnControl.HandStonePositionComparator());
|
2011-05-10 01:22:56 +02:00
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
assertEquals(stones.size(), 13);
|
2011-05-10 01:22:56 +02:00
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
assertSame(stones.get(0).getFirst(), blue1);
|
|
|
|
assertSame(stones.get(1).getFirst(), red1);
|
|
|
|
assertSame(stones.get(2).getFirst(), blue2);
|
|
|
|
assertSame(stones.get(3).getFirst(), red3);
|
2011-05-10 01:22:56 +02:00
|
|
|
|
|
|
|
assertTrue(stones.get(4).getFirst() == blue4
|
|
|
|
|| stones.get(4).getFirst() == blue4a);
|
|
|
|
assertTrue(stones.get(5).getFirst() == blue4
|
|
|
|
|| stones.get(5).getFirst() == blue4a);
|
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
assertSame(stones.get(6).getFirst(), red4);
|
|
|
|
assertSame(stones.get(7).getFirst(), black5);
|
|
|
|
assertSame(stones.get(8).getFirst(), black10);
|
|
|
|
assertSame(stones.get(9).getFirst(), orange10);
|
|
|
|
assertSame(stones.get(10).getFirst(), red11);
|
|
|
|
assertSame(stones.get(11).getFirst(), orange13);
|
|
|
|
assertSame(stones.get(12).getFirst(), joker);
|
2011-05-10 01:22:56 +02:00
|
|
|
|
|
|
|
checkHandDisplay(mockHand);
|
2011-05-10 00:28:06 +02:00
|
|
|
}
|
2011-05-10 01:22:56 +02:00
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
@Test
|
|
|
|
public void testSortByRuns() {
|
2011-05-10 01:22:56 +02:00
|
|
|
testControl.startTurn();
|
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
Stone red1 = new Stone(1, StoneColor.RED);
|
|
|
|
Stone blue2 = new Stone(2, StoneColor.BLUE);
|
|
|
|
Stone red4 = new Stone(4, StoneColor.RED);
|
|
|
|
Stone red3 = new Stone(3, StoneColor.RED);
|
|
|
|
Stone orange10 = new Stone(10, StoneColor.ORANGE);
|
|
|
|
Stone blue1 = new Stone(1, StoneColor.BLUE);
|
|
|
|
Stone blue4 = new Stone(4, StoneColor.BLUE);
|
|
|
|
Stone blue4a = new Stone(4, StoneColor.BLUE);
|
|
|
|
Stone joker = new Stone(StoneColor.BLACK);
|
|
|
|
Stone black5 = new Stone(5, StoneColor.BLACK);
|
|
|
|
Stone orange13 = new Stone(13, StoneColor.ORANGE);
|
|
|
|
Stone red11 = new Stone(11, StoneColor.RED);
|
|
|
|
Stone black10 = new Stone(10, StoneColor.BLACK);
|
|
|
|
mockHand.drop(red1, new Position(0, 0));
|
|
|
|
mockHand.drop(blue2, new Position(0, 0));
|
|
|
|
mockHand.drop(red4, new Position(0, 0));
|
|
|
|
mockHand.drop(red3, new Position(0, 0));
|
|
|
|
mockHand.drop(orange10, new Position(0, 0));
|
|
|
|
mockHand.drop(blue1, new Position(0, 0));
|
|
|
|
mockHand.drop(blue4, new Position(0, 0));
|
|
|
|
mockHand.drop(blue4a, new Position(0, 0));
|
|
|
|
mockHand.drop(joker, new Position(0, 0));
|
|
|
|
mockHand.drop(black5, new Position(0, 0));
|
|
|
|
mockHand.drop(orange13, new Position(0, 0));
|
|
|
|
mockHand.drop(red11, new Position(0, 0));
|
|
|
|
mockHand.drop(black10, new Position(0, 0));
|
2011-05-10 01:22:56 +02:00
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
mockView.playerPanel.sortByRunsEvent.emit();
|
2011-05-10 01:22:56 +02:00
|
|
|
|
|
|
|
List<Pair<Stone, Position>> stones = new ArrayList<Pair<Stone, Position>>(
|
|
|
|
mockHand.stones);
|
2011-05-10 00:28:06 +02:00
|
|
|
Collections.sort(stones, new TurnControl.HandStonePositionComparator());
|
2011-05-10 01:22:56 +02:00
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
assertEquals(stones.size(), 13);
|
2011-05-10 01:22:56 +02:00
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
assertSame(stones.get(0).getFirst(), black5);
|
|
|
|
assertSame(stones.get(1).getFirst(), black10);
|
|
|
|
assertSame(stones.get(2).getFirst(), orange10);
|
|
|
|
assertSame(stones.get(3).getFirst(), orange13);
|
|
|
|
assertSame(stones.get(4).getFirst(), blue1);
|
|
|
|
assertSame(stones.get(5).getFirst(), blue2);
|
2011-05-10 01:22:56 +02:00
|
|
|
|
|
|
|
assertTrue(stones.get(6).getFirst() == blue4
|
|
|
|
|| stones.get(6).getFirst() == blue4a);
|
|
|
|
assertTrue(stones.get(7).getFirst() == blue4
|
|
|
|
|| stones.get(7).getFirst() == blue4a);
|
|
|
|
|
2011-05-10 00:28:06 +02:00
|
|
|
assertSame(stones.get(8).getFirst(), red1);
|
|
|
|
assertSame(stones.get(9).getFirst(), red3);
|
|
|
|
assertSame(stones.get(10).getFirst(), red4);
|
|
|
|
assertSame(stones.get(11).getFirst(), red11);
|
|
|
|
assertSame(stones.get(12).getFirst(), joker);
|
2011-05-10 01:22:56 +02:00
|
|
|
|
|
|
|
checkHandDisplay(mockHand);
|
2011-05-10 00:28:06 +02:00
|
|
|
}
|
2011-05-04 17:33:46 +02:00
|
|
|
}
|