-
Notifications
You must be signed in to change notification settings - Fork 0
/
pruebas_alumno.c
557 lines (527 loc) · 22.6 KB
/
pruebas_alumno.c
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
#include "pa2m.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "src/tp.h"
void tp_crear_pruebas_archivo_NULL_devuelve_NULL()
{
TP *tp = tp_crear(NULL);
pa2m_afirmar(tp == NULL, "TP creado sin archivo es NULL");
}
void tp_crear_pruebas()
{
const char *nombre_del_archivo = "ejemplo/pokemones.txt";
TP *tp = tp_crear(nombre_del_archivo);
pa2m_afirmar(
tp_cantidad_pokemon(tp) == 25,
"La cantidad de pokemones coincide con la cantidad de lineas del archivo");
tp_destruir(tp);
}
void tp_bucar_un_nombre_de_pokemon_que_no_esta_devuelve_NULL()
{
const char *nombre_del_archivo = "ejemplo/pokemones.txt";
TP *tp = tp_crear(nombre_del_archivo);
pa2m_afirmar(tp_buscar_pokemon(tp, NULL) == NULL,
"Si no se ingresa el nombre de un pokemon devuelve NULL.");
const char *abc = "abc";
pa2m_afirmar(
tp_buscar_pokemon(tp, abc) == NULL,
"Si el nombre no pertenece a ninguno de los pokemones, devuelve NULL.");
tp_destruir(tp);
}
void tp_buscar_busco_pokemones()
{
const char *nombre_del_archivo = "ejemplo/pokemones.txt";
TP *tp = tp_crear(nombre_del_archivo);
const char *poke1_name = "Pikachu";
const struct pokemon_info *poke1 = tp_buscar_pokemon(tp, poke1_name);
pa2m_afirmar(poke1 != NULL,
"Pokemon no nulo, con mayuscula encontrado.");
pa2m_afirmar(poke1->fuerza == 10, "Atributo correcto");
pa2m_afirmar(poke1->destreza == 9, "Atributo correcto");
pa2m_afirmar(poke1->inteligencia == 8, "Atributo correcto");
const char *poke2_name = "sandshrew";
const struct pokemon_info *poke2 = tp_buscar_pokemon(tp, poke2_name);
pa2m_afirmar(poke2 != NULL,
"Pokemon no nulo, pokemon con minuscula encontrado.");
pa2m_afirmar(poke2->fuerza == 3, "Atributo correcto");
pa2m_afirmar(poke2->destreza == 7, "Atributo correcto");
pa2m_afirmar(poke2->inteligencia == 7, "Atributo correcto");
const char *poke3_name = "dragonite";
const struct pokemon_info *poke3 = tp_buscar_pokemon(tp, poke3_name);
pa2m_afirmar(poke3 != NULL,
"Pokemon no nulo, pokemon con minuscula encontrado.");
pa2m_afirmar(poke3->fuerza == 9, "Atributo correcto");
pa2m_afirmar(poke3->destreza == 10, "Atributo correcto");
pa2m_afirmar(poke3->inteligencia == 8, "Atributo correcto");
tp_destruir(tp);
}
void tp_buscar_con_otro_archivo_con_todos_los_pokemones()
{
const char *nombre_del_archivo = "ejemplo/menos_pokemones.txt";
TP *tp = tp_crear(nombre_del_archivo);
char *poke1_name = "ivysaur";
char *poke2_name = "Blastoise";
char *poke3_name = "wartortle";
char *poke4_name = "Raichu";
const struct pokemon_info *poke1 = tp_buscar_pokemon(tp, poke1_name);
const struct pokemon_info *poke2 = tp_buscar_pokemon(tp, poke2_name);
const struct pokemon_info *poke3 = tp_buscar_pokemon(tp, poke3_name);
const struct pokemon_info *poke4 = tp_buscar_pokemon(tp, poke4_name);
pa2m_afirmar(poke1 != NULL,
"Pokemon 1 no nulo, pokemon con minuscula encontrado.");
pa2m_afirmar(poke2 != NULL,
"Pokemon 2 no nulo, pokemon con mayuscula encontrado.");
pa2m_afirmar(poke3 != NULL,
"Pokemon 3 no nulo, pokemon con minuscula encontrado.");
pa2m_afirmar(poke4 != NULL,
"Pokemon 4 no nulo, pokemon con mayuscula encontrado.");
pa2m_afirmar(poke1->fuerza == 8, "Pokemon 1. Atributo correcto");
pa2m_afirmar(poke1->destreza == 7, "Pokemon 1. Atributo correcto");
pa2m_afirmar(poke1->inteligencia == 7, "Pokemon 1. Atributo correcto");
pa2m_afirmar(poke2->fuerza == 8, "Pokemon 2. Atributo correcto");
pa2m_afirmar(poke2->destreza == 8, "Pokemon 2. Atributo correcto");
pa2m_afirmar(poke2->inteligencia == 9, "Pokemon 2. Atributo correcto");
pa2m_afirmar(poke3->fuerza == 9, "Pokemon 3. Atributo correcto");
pa2m_afirmar(poke3->destreza == 7, "Pokemon 3. Atributo correcto");
pa2m_afirmar(poke3->inteligencia == 7, "Pokemon 3. Atributo correcto");
pa2m_afirmar(poke4->fuerza == 5, "Pokemon 4. Atributo correcto");
pa2m_afirmar(poke4->destreza == 8, "Pokemon 4. Atributo correcto");
pa2m_afirmar(poke4->inteligencia == 7, "Pokemon 4. Atributo correcto");
tp_destruir(tp);
}
void tp_nombres_disponibles_pruebas_archivo_mas_chico()
{
const char *nombre_del_archivo = "ejemplo/menos_pokemones.txt";
TP *tp = tp_crear(nombre_del_archivo);
char *nombres = tp_nombres_disponibles(tp);
pa2m_afirmar(strcmp(nombres, "Blastoise,Ivysaur,Raichu,Wartortle") == 0,
"Nombres correctos, archivo chico.");
free(nombres);
tp_destruir(tp);
}
void tp_nombres_disponibles_pruebas_archivo_grande()
{
const char *nombre_del_archivo = "ejemplo/pokemones.txt";
TP *tp = tp_crear(nombre_del_archivo);
char *nombres = tp_nombres_disponibles(tp);
pa2m_afirmar(
strcmp(nombres,
"Articuno,Blastoise,Bulbasaur,Caterpie,Charizard,Diglett,Dragonair,Dragonite,Dratini,Ekans,Geodude,Grimer,Ivysaur,Meowth,Moltres,Pidgey,Pikachu,Raichu,Rattata,Sandshrew,Squirtle,Venusaur,Vulpix,Wartortle,Zapdos") ==
0,
"Nombres correctos, archivo grande.");
free(nombres);
tp_destruir(tp);
}
void tp_nombres_disponibles_si_jugador_ya_tiene_seleccionado()
{
const char *nombre_del_archivo = "ejemplo/pokemones.txt";
TP *tp = tp_crear(nombre_del_archivo);
bool resta = tp_seleccionar_pokemon(tp, JUGADOR_1, "Pikachu");
if (resta == false) {
printf("No se pudo seleccionar el pokemon\n");
}
char *nombres = tp_nombres_disponibles(tp);
pa2m_afirmar(
strcmp(nombres,
"Articuno,Blastoise,Bulbasaur,Caterpie,Charizard,Diglett,Dragonair,Dragonite,Dratini,Ekans,Geodude,Grimer,Ivysaur,Meowth,Moltres,Pidgey,Raichu,Rattata,Sandshrew,Squirtle,Venusaur,Vulpix,Wartortle,Zapdos") ==
0,
"Nombres correctos, archivo grande.");
free(nombres);
tp_destruir(tp);
}
void tp_calcular_tiempo_pista_pruebas()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_1, "Pikachu") == true,
"Se selecciono correctamente el pokemon");
pa2m_afirmar(tp_calcular_tiempo_pista(tp, JUGADOR_1) == 3,
"Tiempo correcto");
tp_destruir(tp);
}
void tp_seleccionar_pokemon_devuelve_correcto()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_1, "Pikachu") == true,
"Se selecciono correctamente el pokemon");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_2, "Pikachu") == false,
"No se selecciono el mismo pokemon que el jugador 1");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_2, "Blastoise") == true,
"Se selecciono correctamente el pokemon");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_1, "Blastoise") ==
false,
"No se selecciono el mismo pokemon que el jugador 2");
const struct pokemon_info *poke1 =
tp_pokemon_seleccionado(tp, JUGADOR_1);
const struct pokemon_info *poke2 =
tp_pokemon_seleccionado(tp, JUGADOR_2);
pa2m_afirmar(poke1 != NULL, "Pokemon 1 seleccionado no es NULL");
pa2m_afirmar(poke2 != NULL, "Pokemon 2 seleccionado no es NULL");
pa2m_afirmar(strcmp(poke1->nombre, "Pikachu") == 0,
"Pokemon del jugador 1. Nombre correcto");
pa2m_afirmar(strcmp(poke2->nombre, "Blastoise") == 0,
"Pokemon del jugador 2. Nombre correcto");
pa2m_afirmar(poke1->fuerza == 10,
"Pokemon del jugador 1. Atributo correcto");
pa2m_afirmar(poke1->destreza == 9,
"Pokemon del jugador 1. Atributo correcto");
pa2m_afirmar(poke1->inteligencia == 8,
"Pokemon del jugador 1. Atributo correcto");
pa2m_afirmar(poke2->fuerza == 8,
"Pokemon del jugador 2. Atributo correcto");
pa2m_afirmar(poke2->destreza == 8,
"Pokemon del jugador 2. Atributo correcto");
pa2m_afirmar(poke2->inteligencia == 9,
"Pokemon del jugador 2. Atributo correcto");
tp_destruir(tp);
}
void tp_quitar_obstaculos_cuando_no_hay_obstaculos()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 0) == 0,
"No hay obstaculos");
tp_destruir(tp);
}
void tp_quitar_obstaculos_pruebas()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
3) == 4,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
0) == 5,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 6,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 5) == 5,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 4) == 4,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 3) == 3,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 2) == 2,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 1) == 1,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 0) == 0,
"Se quito correctamente");
tp_destruir(tp);
}
void tp_agregar_obstaculo_pruebas()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 1) ==
2,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
2) == 3,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
3) == 4,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
5,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 6,
"Se agrego correctamente el OBSTACULO_DESTREZA");
tp_destruir(tp);
}
void tp_quitar_obstaculos_pruebas_mezcladas()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
3) == 4,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
0) == 5,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 6,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 1) == 5,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 1) == 4,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 1) == 3,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 1) == 2,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 1) == 1,
"Se quito correctamente");
pa2m_afirmar(tp_quitar_obstaculo(tp, JUGADOR_1, 0) == 0,
"Se quito correctamente");
tp_destruir(tp);
}
void tp_obstaculo_pista_pruebas_pista_chica()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
3) == 4,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
char *pista = tp_obstaculos_pista(tp, JUGADOR_1);
pa2m_afirmar(pista != NULL, "Pista no es NULL");
char pista_correcta[] = { IDENTIFICADOR_OBSTACULO_FUERZA,
IDENTIFICADOR_OBSTACULO_DESTREZA,
IDENTIFICADOR_OBSTACULO_INTELIGENCIA,
IDENTIFICADOR_OBSTACULO_INTELIGENCIA, '\0' };
pa2m_afirmar(strcmp(pista, pista_correcta) == 0, "Pista correcta");
free(pista);
tp_destruir(tp);
}
void tp_obstaculo_pista_pruebas_pista_grande()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
3) == 4,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
4) == 5,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
5) == 6,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
6) == 7,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
7) == 8,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
10) == 9,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
char *pista = tp_obstaculos_pista(tp, JUGADOR_1);
pa2m_afirmar(pista != NULL, "Pista no es NULL");
char pista_correcta[] = { IDENTIFICADOR_OBSTACULO_FUERZA,
IDENTIFICADOR_OBSTACULO_DESTREZA,
IDENTIFICADOR_OBSTACULO_INTELIGENCIA,
IDENTIFICADOR_OBSTACULO_INTELIGENCIA,
IDENTIFICADOR_OBSTACULO_INTELIGENCIA,
IDENTIFICADOR_OBSTACULO_INTELIGENCIA,
IDENTIFICADOR_OBSTACULO_INTELIGENCIA,
IDENTIFICADOR_OBSTACULO_INTELIGENCIA,
IDENTIFICADOR_OBSTACULO_INTELIGENCIA,
'\0' };
pa2m_afirmar(strcmp(pista, pista_correcta) == 0, "Pista correcta");
free(pista);
tp_destruir(tp);
}
void tp_obstaculo_pista_pruebas_pista_mixta_c()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
tp_seleccionar_pokemon(tp, JUGADOR_1, "Caterpie");
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 1);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 2);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA, 3);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA, 4);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA, 5);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA, 6);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA, 7);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA, 8);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA, 9);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA, 10);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA, 11);
tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA, 12);
unsigned int tiempo = tp_calcular_tiempo_pista(tp, JUGADOR_1);
pa2m_afirmar(tiempo == 38, "TIEMPO IGUAL A 38");
tp_destruir(tp);
}
void tp_obstaculo_pista_pruebas_pista_mixta()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
0) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
1) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
char *pista = tp_obstaculos_pista(tp, JUGADOR_1);
pa2m_afirmar(pista != NULL, "Pista no es NULL");
pa2m_afirmar(strcmp(pista, "DIF") == 0, "Pista correcta");
free(pista);
tp_destruir(tp);
}
void tp_tiempo_por_obstaculo_pruebas()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_1, "Pikachu") == true,
"Se selecciono correctamente el pokemon");
pa2m_afirmar(tp_calcular_tiempo_pista(tp, JUGADOR_1) == 3,
"Tiempo correcto");
char *tiempo_por_obstaculo = tp_tiempo_por_obstaculo(tp, JUGADOR_1);
pa2m_afirmar(tiempo_por_obstaculo != NULL,
"Tiempo por obstaculo no es NULL");
pa2m_afirmar(strcmp(tiempo_por_obstaculo, "0,1,2") == 0,
"Tiempo por obstaculo correcto");
free(tiempo_por_obstaculo);
tp_destruir(tp);
}
void pruebas_con_dos_jugadores()
{
TP *tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_1, "Pikachu") == true,
"Se selecciono correctamente el pokemon");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_2, "Blastoise") == true,
"Se selecciono correctamente el pokemon");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_2, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_2, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_2, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_calcular_tiempo_pista(tp, JUGADOR_1) == 3,
"Tiempo correcto");
pa2m_afirmar(tp_calcular_tiempo_pista(tp, JUGADOR_2) == 5,
"Tiempo correcto");
tp_destruir(tp);
tp = tp_crear("ejemplo/pokemones.txt");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_1, "Pikachu") == true,
"Se selecciono correctamente el pokemon");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_2, "Pikachu") == false,
"No se selecciono el mismo pokemon que el jugador 1");
pa2m_afirmar(tp_seleccionar_pokemon(tp, JUGADOR_2, "Blastoise") == true,
"Se selecciono correctamente el pokemon");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_1, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_2, OBSTACULO_FUERZA, 0) ==
1,
"Se agrego correctamente el OBSTACULO_FUERZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_2, OBSTACULO_DESTREZA,
1) == 2,
"Se agrego correctamente el OBSTACULO_DESTREZA");
pa2m_afirmar(tp_agregar_obstaculo(tp, JUGADOR_2, OBSTACULO_INTELIGENCIA,
2) == 3,
"Se agrego correctamente el OBSTACULO_INTELIGENCIA");
pa2m_afirmar(tp_calcular_tiempo_pista(tp, JUGADOR_1) == 3,
"Tiempo correcto");
pa2m_afirmar(tp_calcular_tiempo_pista(tp, JUGADOR_2) == 5,
"Tiempo correcto");
tp_destruir(tp);
}
int main()
{
pa2m_nuevo_grupo(
"\n======================== TP CREAR ========================");
tp_crear_pruebas_archivo_NULL_devuelve_NULL();
tp_crear_pruebas();
pa2m_nuevo_grupo(
"\n======================== TP BUSCAR ========================");
tp_bucar_un_nombre_de_pokemon_que_no_esta_devuelve_NULL();
tp_buscar_busco_pokemones();
tp_buscar_con_otro_archivo_con_todos_los_pokemones();
pa2m_nuevo_grupo(
"\n======================== TP_NOMBRE_DISPONIBLES ========================");
tp_nombres_disponibles_pruebas_archivo_mas_chico();
tp_nombres_disponibles_pruebas_archivo_grande();
tp_nombres_disponibles_si_jugador_ya_tiene_seleccionado();
pa2m_nuevo_grupo(
"\n========= TP_SELECCIONAR_POKEMON / TP_POKEMON_SELECCIONADO =========");
tp_seleccionar_pokemon_devuelve_correcto();
pa2m_nuevo_grupo(
"\n======================== TP_AGREGAR_OBSTACULO ========================");
tp_agregar_obstaculo_pruebas();
pa2m_nuevo_grupo(
"\n======================== TP_QUITAR_OBSTACULO ========================");
tp_quitar_obstaculos_cuando_no_hay_obstaculos();
tp_quitar_obstaculos_pruebas();
pa2m_nuevo_grupo(
"\n---------------------- TP_QUITAR_OBSTACULO (mixtas) ----------------------");
tp_quitar_obstaculos_pruebas_mezcladas();
pa2m_nuevo_grupo(
"\n======================== TP_OBSTACULOS_PISTA ========================");
tp_obstaculo_pista_pruebas_pista_chica();
tp_obstaculo_pista_pruebas_pista_grande();
tp_obstaculo_pista_pruebas_pista_mixta();
pa2m_nuevo_grupo(
"\n======================== TP_CALCULAR_TIEMPO_PISTA ========================");
tp_calcular_tiempo_pista_pruebas();
pa2m_nuevo_grupo(
"\n======================== TP_TIEMPO_POR_OBSTACULO ========================");
tp_tiempo_por_obstaculo_pruebas();
tp_obstaculo_pista_pruebas_pista_mixta_c();
pa2m_nuevo_grupo(
"\n======================== PRUEBAS_CON_DOS_JUGADORES ========================");
pruebas_con_dos_jugadores();
return pa2m_mostrar_reporte();
}