-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtest_basic_ship.cairo
307 lines (253 loc) · 9.13 KB
/
test_basic_ship.cairo
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
%lang starknet
from contracts.models.common import Vector2
from contracts.libraries.square_grid import grid_access, Grid
from contracts.interfaces.icell import cell_access, Cell, Dust
from contracts.ships.basic_ship.library import BasicShip
from starkware.cairo.common.cairo_builtins import HashBuiltin
from starkware.cairo.common.alloc import alloc
from contracts.test.grid_helper import grid_helper
from contracts.test.standard_cell import StandardCell
func new_dust_cell() -> (cell: Cell) {
let cell_class_hash = StandardCell.class_hash();
let cell = Cell(cell_class_hash, dust_count=1, dust=Dust(Vector2(1, 0)), ship_id=0);
return (cell,);
}
func new_ship_cell(ship_id: felt) -> (cell: Cell) {
let cell_class_hash = StandardCell.class_hash();
let cell = Cell(cell_class_hash, dust_count=0, dust=Dust(Vector2(0, 0)), ship_id=ship_id);
return (cell,);
}
@view
func __setup__{syscall_ptr: felt*, range_check_ptr}() {
StandardCell.declare();
return ();
}
@external
func test_no_move_if_no_dust{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() {
alloc_locals;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
%{ expect_revert(error_message="I am lost in space") %}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
// BasicShip.move(grid.cell_count, grid.current_cells, 1)
BasicShip.move(grid.cell_count, cell_array, 1);
return ();
}
@external
func test_move_towards_single_dust_above{
syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr
}() {
alloc_locals;
const SHIP_ID = 1;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
with grid {
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(5, 0, dust_cell);
let (ship_cell: Cell) = new_ship_cell(SHIP_ID);
grid_access.set_cell_at(5, 3, ship_cell);
// grid_access.apply_modifications()
}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
let (direction: Vector2) = BasicShip.move(grid.cell_count, cell_array, SHIP_ID);
assert direction = Vector2(0, -1);
return ();
}
@external
func test_move_towards_single_dust_below{
syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr
}() {
alloc_locals;
const SHIP_ID = 1;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
with grid {
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(5, 5, dust_cell);
let (ship_cell: Cell) = new_ship_cell(SHIP_ID);
grid_access.set_cell_at(5, 3, ship_cell);
// grid_access.apply_modifications()
}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
let (direction: Vector2) = BasicShip.move(grid.cell_count, cell_array, SHIP_ID);
assert direction = Vector2(0, 1);
return ();
}
@external
func test_move_towards_single_dust_on_the_left{
syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr
}() {
alloc_locals;
const SHIP_ID = 1;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
with grid {
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(1, 3, dust_cell);
let (ship_cell: Cell) = new_ship_cell(SHIP_ID);
grid_access.set_cell_at(5, 3, ship_cell);
grid_access.apply_modifications();
}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
let (direction: Vector2) = BasicShip.move(grid.cell_count, cell_array, SHIP_ID);
assert direction = Vector2(-1, 0);
return ();
}
@external
func test_move_towards_single_dust_on_the_right{
syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr
}() {
alloc_locals;
const SHIP_ID = 1;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
with grid {
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(7, 3, dust_cell);
let (ship_cell: Cell) = new_ship_cell(SHIP_ID);
grid_access.set_cell_at(5, 3, ship_cell);
// grid_access.apply_modifications()
}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
let (direction: Vector2) = BasicShip.move(grid.cell_count, cell_array, SHIP_ID);
assert direction = Vector2(1, 0);
return ();
}
@external
func test_move_towards_single_dust_on_top_left{
syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr
}() {
alloc_locals;
const SHIP_ID = 1;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
with grid {
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(0, 0, dust_cell);
let (ship_cell: Cell) = new_ship_cell(SHIP_ID);
grid_access.set_cell_at(5, 3, ship_cell);
// grid_access.apply_modifications()
}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
let (direction: Vector2) = BasicShip.move(grid.cell_count, cell_array, SHIP_ID);
assert direction = Vector2(-1, -1);
return ();
}
@external
func test_move_towards_single_dust_on_top_right{
syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr
}() {
alloc_locals;
const SHIP_ID = 1;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
with grid {
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(7, 0, dust_cell);
let (ship_cell: Cell) = new_ship_cell(SHIP_ID);
grid_access.set_cell_at(5, 3, ship_cell);
// grid_access.apply_modifications()
}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
let (direction: Vector2) = BasicShip.move(grid.cell_count, cell_array, SHIP_ID);
assert direction = Vector2(1, -1);
return ();
}
@external
func test_move_towards_single_dust_on_bottom_left{
syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr
}() {
alloc_locals;
const SHIP_ID = 1;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
with grid {
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(0, 7, dust_cell);
let (ship_cell: Cell) = new_ship_cell(SHIP_ID);
grid_access.set_cell_at(5, 3, ship_cell);
// grid_access.apply_modifications()
}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
let (direction: Vector2) = BasicShip.move(grid.cell_count, cell_array, SHIP_ID);
assert direction = Vector2(-1, 1);
return ();
}
@external
func test_move_towards_single_dust_on_bottom_right{
syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr
}() {
alloc_locals;
const SHIP_ID = 1;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
with grid {
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(9, 7, dust_cell);
let (ship_cell: Cell) = new_ship_cell(SHIP_ID);
grid_access.set_cell_at(5, 3, ship_cell);
// grid_access.apply_modifications()
}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
let (direction: Vector2) = BasicShip.move(grid.cell_count, cell_array, SHIP_ID);
assert direction = Vector2(1, 1);
return ();
}
@external
func test_move_towards_nearest_dust{
syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr
}() {
alloc_locals;
const SHIP_ID = 1;
let cell_class_hash = StandardCell.class_hash();
let (local grid: Grid) = grid_access.create(cell_class_hash, 10);
with grid {
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(1, 0, dust_cell);
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(2, 2, dust_cell);
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(3, 4, dust_cell);
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(9, 3, dust_cell);
let (dust_cell: Cell) = new_dust_cell();
grid_access.set_cell_at(5, 5, dust_cell);
let (ship_cell: Cell) = new_ship_cell(SHIP_ID);
grid_access.set_cell_at(7, 1, ship_cell);
// grid_access.apply_modifications()
}
let (cell_array: Cell*) = alloc();
with grid {
grid_helper.dict_to_array(cell_array, 0);
}
let (direction: Vector2) = BasicShip.move(grid.cell_count, cell_array, SHIP_ID);
assert direction = Vector2(1, 1);
return ();
}