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
|
# frozen_string_literal: true
require './lib/colonial_twilight/fln_rules'
require './lib/colonial_twilight/board'
class FLNRulesImpl
include ColonialTwilight::FLNRules
end
describe ColonialTwilight::FLNRules do
rules = FLNRulesImpl.new
before do
@board = ColonialTwilight::Board.new
end
describe 'Rally' do
it 'collects spaces where operation can be conducted' do
expect(rules.rally_spaces(@board).size).to eq(28)
end
it 'collects spaces where operation can be conducted' do
@board.load :short
# 25 sectors + 2 countries
expect(rules.rally_spaces(@board).size).to eq(27)
end
it 'may_rally_in? not in city at support' do
a = ColonialTwilight::City.new('a', 'w', 0, 0)
a.shift :support
expect(rules.may_rally_in?(a)).to be false
end
it 'may_rally_in? not in not independent country' do
a = ColonialTwilight::Country.new('country')
expect(rules.may_rally_in?(a)).to be false
end
it 'may_rally_in?' do
a = ColonialTwilight::Sector.new('a', 'w', 0, 0)
expect(rules.may_rally_in?(a)).to be true
end
it 'may place 1 FLN cube' do
a = ColonialTwilight::Sector.new('a', 'w', 0, 0)
expect(rules.max_placable_guerrillas(a)).to eq(1)
end
it 'may place 2 FLN cube' do
a = ColonialTwilight::Sector.new('a', 'w', 0, 2)
a.add :fln_base
expect(rules.max_placable_guerrillas(a)).to eq(3)
end
end
describe 'Agitate' do
it 'collects spaces where operation can be conducted' do
expect(rules.agitate_spaces(@board).size).to eq(0)
end
it 'collects spaces where operation can be conducted' do
@board.load :short
# 6 with bases + 1 in fln control
expect(rules.agitate_spaces(@board).size).to eq(5)
end
end
describe 'Attack' do
it 'collects spaces where operation can be conducted' do
# 25 sectors + 3 cities
expect(rules.attack_spaces(@board).size).to eq(0)
end
it 'collects spaces where operation can be conducted' do
@board.load :short
# 25 sectors + 2 countries
expect(rules.attack_spaces(@board).size).to eq(7)
end
end
describe 'Terror' do
it 'collects spaces where operation can be conducted' do
expect(rules.terror_spaces(@board).size).to eq(0)
end
it 'collects spaces where operation can be conducted' do
# 6 sectors
@board.load :short
expect(rules.terror_spaces(@board).size).to eq(6)
end
end
describe 'Extort' do
it 'collects spaces where operation can be conducted' do
expect(rules.extort_spaces(@board).size).to eq(0)
end
it 'collects spaces where operation can be conducted' do
@board.load :short
# 2 sectors
expect(rules.extort_spaces(@board).size).to eq(2)
end
end
describe 'Subvert' do
it 'collects spaces where operation can be conducted' do
expect(rules.subvert_spaces(@board).size).to eq(0)
end
it 'collects spaces where operation can be conducted' do
@board.load :short
# 4 sectors
expect(rules.subvert_spaces(@board).size).to eq(4)
end
end
describe 'Ambush' do
it 'collects spaces where operation can be conducted' do
# 25 sectors + 3 cities
expect(rules.ambush_spaces(@board).size).to eq(0)
end
it 'collects spaces where operation can be conducted' do
@board.load :short
# 25 sectors + 2 countries
expect(rules.ambush_spaces(@board).size).to eq(7)
end
end
describe 'OAS' do
it 'collects spaces where operation can be conducted' do
# 14 sectors + 3 cities
expect(rules.oas_spaces(@board).size).to eq(17)
end
it 'collects spaces where operation can be conducted' do
@board.load :short
# 11 sectors + 3 countries
expect(rules.oas_spaces(@board).size).to eq(14)
end
end
end
|