aboutsummaryrefslogtreecommitdiffstats
path: root/test/eu/equalparts/cardbase/containers/ReferenceCardContainerTest.java
blob: 2941e4598ed5651f95b0642681d77674ae25edb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package eu.equalparts.cardbase.containers;

import static org.junit.Assert.assertEquals;

import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.rules.TemporaryFolder;

import eu.equalparts.cardbase.card.Card;
import eu.equalparts.cardbase.json.JSON;

public class ReferenceCardContainerTest {

	private ReferenceCardContainer uut;
	private static Card testCard;
	
	@Rule
	public final ExpectedException exception = ExpectedException.none();
	
	@Rule
	public final TemporaryFolder tempFolder = new TemporaryFolder();
	
	@BeforeClass
	public static void setUpBeforeClass() throws Exception {
		testCard = JSON.mapper.readValue(ReferenceCardContainerTest.class.getResourceAsStream("/shivandragon.json"), Card.class);
	}
	
	@Before
	public void setUp() throws Exception {
		uut = new ReferenceCardContainer();
	}

	/***********************************************************************************
	 * Adding card tests, happy path
	 ***********************************************************************************/
	@Test
	public void newCardIsAdded() throws Exception {
		assertEquals("Container should not contain the test card to begin with.", 0, uut.getCount(testCard));
		
		uut.addCard(testCard, 1);
		
		assertEquals("Container should contain 1 test card.", 1, uut.getCount(testCard));
	}
	
	@Test
	public void existingCardIsIncremented() throws Exception {
		uut.addCard(testCard, 2);
		uut.addCard(testCard, 4);
		
		assertEquals("Card count was not updated correctly.", 6, uut.getCount(testCard));
	}
	
	/*
	 * Edge cases
	 */
	@Test
	public void cardAddedIsNull() throws Exception {
		exception.expect(NullPointerException.class);
		uut.addCard(null, 0);
	}
	
	/***********************************************************************************
	 * Removing card tests, happy path
	 ***********************************************************************************/
	@Test
	public void cardIsStillPresentIfRemoveCountIsLessThanCardCount() throws Exception {
		uut.addCard(testCard, 5);
		
		int removed = uut.removeCard(testCard, 3);

		assertEquals("Card count was not updated correctly.", 2, uut.getCount(testCard));
		assertEquals("Container reports wrong removed count.", 3, removed);
	}
	
	@Test
	public void cardIsRemovedIfRemoveCountIsEqualToCardCount() throws Exception {
		uut.addCard(testCard, 5);
		
		int removed = uut.removeCard(testCard, 5);
		
		assertEquals("Card was not removed from container.", 0, uut.getCount(testCard));
		assertEquals("Container reports wrong removed count.", 5, removed);
	}
	
	@Test
	public void cardIsRemovedIfRemoveCountIsGreaterThanCardCount() throws Exception {
		uut.addCard(testCard, 3);
		
		int removed = uut.removeCard(testCard, 5);

		assertEquals("Card was not removed from container.", 0, uut.getCount(testCard));
		assertEquals("Container reports wrong removed count.", 3, removed);
	}
	
	/*
	 * Edge cases
	 */
	@Test
	public void removedCardIsNull() throws Exception {
		exception.expect(NullPointerException.class);
		uut.removeCard(null, 0);
	}
	
	@Test
	public void removedCardIsNotInContainer() throws Exception {
		assertEquals("Card is not initially missing from container.", 0, uut.getCount(testCard));
		
		int removed = uut.removeCard(testCard, 1);
		
		assertEquals("Removed count should be 0.", 0, removed);
		assertEquals("Card should still be missing from container.", 0, uut.getCount(testCard));
	}
	
	@Test
	public void removedCountIsLessThanZero() throws Exception {
		uut.addCard(testCard, 3);
		
		int removed = uut.removeCard(testCard, -4);

		assertEquals("Card count in container should be unchanged.", 3, uut.getCount(testCard));
		assertEquals("Container reports wrong removed count.", 0, removed);
	}
	
	/***********************************************************************************
	 * Land tests
	 ***********************************************************************************/
	@Test
	public void containsIslands() throws Exception {
		assertEquals(0, uut.getIslands());
		uut.setIslands(5);
		assertEquals(5, uut.getIslands());
	}

	@Test
	public void containsPlains() throws Exception {
		assertEquals(0, uut.getPlains());
		uut.setPlains(5);
		assertEquals(5, uut.getPlains());
	}
	
	@Test
	public void containsSwamps() throws Exception {
		assertEquals(0, uut.getSwamps());
		uut.setSwamps(5);
		assertEquals(5, uut.getSwamps());
	}
	
	@Test
	public void containsMountains() throws Exception {
		assertEquals(0, uut.getMountains());
		uut.setMountains(5);
		assertEquals(5, uut.getMountains());
	}
	
	@Test
	public void containsForests() throws Exception {
		assertEquals(0, uut.getForests());
		uut.setForests(5);
		assertEquals(5, uut.getForests());
	}

}