-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_traductor.cpp
79 lines (69 loc) · 1.73 KB
/
test_traductor.cpp
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
/*
* test_traductor.cpp
*
* Created on: 21/05/2013
* Author: jorge
*/
#define sacar_esto_para_correr_la_prueba_traductor
#ifndef sacar_esto_para_correr_la_prueba_traductor
#include "traductor.h"
using namespace std;
// caso de muestra de como usar un traductor
int main(void) {
Traductor* unTraductor = new Traductor(WRITE, "pTraductor.dat");
//Prueba escribir números;
int num[]= {1,1,1,5,1,1,1,6,3,1,1,4,2,1,4,3,2,4,1,1,2,1,1,1,1,1,1,3,1,1,3,2,1,3,3,1,6,3,1,1,2,2,1,2,3,3,1,1,1};
for (int i=0; i < 49; i++) {
cout << num[i] << ",";
unTraductor->write_gamma(num[i]);
}
cout << endl;
delete unTraductor;
//Ya están escritos
Traductor* otroTraductor = new Traductor(READ, "pTraductor.dat");
int res = 0,i;
for ( i=0; i < 100; i++) {
int aux = unTraductor->read_gamma();
if (aux == -1) break;
if( num[i] != aux ) {
//cout << aux << endl;
res = 1;
}
}
delete otroTraductor;
cout << "Escritura y lectura de gamma: ";
if (res == 0) {
cout << "corretos." << endl;
} else {
cout << "incorrectos." << endl;
}
//Pruebas delta
unTraductor = new Traductor(WRITE, "pTraductor2.dat");
for (int i=0; i < 49; i++) {
unTraductor -> write_delta(num[i]);
}
delete unTraductor;
//Ya están escritos
otroTraductor = new Traductor(READ, "pTraductor2.dat");
res = 0;
for (i=0; i < 100; i++) {
int aux = unTraductor->read_delta();
if (aux == -1) break;
if( num[i] != aux ) {
cout << aux << endl;
res = 1;
}
}
delete otroTraductor;
cout << "Escritura y lectura de delta: ";
if (res == 0) {
cout << "corretos." << endl;
} else {
cout << "incorrectos." << endl;
}
cout << "Lectura fuera de rango: ";
if (i<100) cout << "correcto." << endl;
else cout << "incorrecto." << endl;
return 0;
}
#endif