-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
266 lines (218 loc) · 7.83 KB
/
main.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
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
/**
@file main.cpp
@brief test d'uso della classe graph
**/
#include "graph.h"
#include "Persona.h"
#include <iostream>
#include <cassert> //assert
struct Equal_int;
struct Equal_string;
struct Equal_Persona;
void test_construttori();
void test_assegnamento();
void test_add_node();
void test_remove_node();
void test_add_edge();
void test_remove_edge();
void test_iteratori();
/**
@brief Funtore di eguaglianza int
**/
struct Equal_int{
bool operator()(int i1, int i2) const{
return i1 == i2;
}
};
/**
@brief Funtore di eguaglianza string
**/
struct Equal_string{
bool operator()(std::string s1, std::string s2) const{
return s1 == s2;
}
};
/**
@brief Funtore di eguaglianza Persona
**/
struct Equal_Persona{
bool operator()(const Persona p1, const Persona p2) const{
return p1.codiceFiscale() == p2.codiceFiscale();
}
};
int main() {
std::cout << "Test Costruttori: " << std::endl;
test_construttori();
std::cout << "Ok" << std::endl;
std::cout << "Test Operatore di Assegnamento: " << std::endl;
test_assegnamento();
std::cout << "Ok" << std::endl;
std::cout << "Test add_node: " << std::endl;
test_add_node();
std::cout << "Ok" << std::endl;
std::cout << "Test remove_node: " << std::endl;
test_remove_node();
std::cout << "Ok" << std::endl;
std::cout << "Test add_edge: " << std::endl;
test_add_edge();
std::cout << "Ok" << std::endl;
std::cout << "Test remove_edge: " << std::endl;
test_remove_edge();
std::cout << "Ok" << std::endl;
std::cout << "Test Iteratori: " << std::endl;
test_iteratori();
std::cout << "Ok" << std::endl;
return 0;
}
void test_construttori(){ // Se flag C_DEBUG è stato definito stampa:
graph<int, Equal_int> iG1; //graph()
graph<int, Equal_int> iG2(iG1); //graph(const graph &other())
graph<std::string, Equal_string> sG1; //graph()
graph<std::string, Equal_string> sG2(sG1); //graph(const graph &other())
graph<std::string, Equal_Persona> pG1; //graph()
graph<std::string, Equal_Persona> pG2(pG1); //graph(const graph &other())
//~graph() x6
}
void test_assegnamento(){ // Se flag C_DEBUG è stato definito stampa:
graph<int, Equal_int> iG1; //graph()
graph<int, Equal_int> iG2; //graph()
iG1 = iG2; //operator=()
// graph(const graph &other)
// ~graph()
graph<std::string, Equal_string> sG1; //graph()
graph<std::string, Equal_string> sG2; //graph()
sG1 = sG2; //operator=()
// graph(const graph &other)
// ~graph()
graph<std::string, Equal_Persona> pG1; //graph()
graph<std::string, Equal_Persona> pG2; //graph()
pG1 = pG2; //operator=()
// graph(const graph &other)
// ~graph()
//~graph() x6
}
void test_add_node(){
graph<int, Equal_int> iG; //Grafo di Int
assert(iG.sizeN() == 0); //Non è presente alcun elemento nel grafo.
int n1 = 123; //Aggiungo un elemento
iG.add_node(n1);
assert(iG.exists(n1));
assert(iG.sizeN() == 1);
for(int i = 0; i < 50; ++i){ //Aggiungo più elementi
iG.add_node(i);
assert(iG.exists(i));
}
try{ //Provo ad aggiungere un duplicato.
iG.add_node(n1);
assert(false);
}catch(DuplicateNodeException exc) {
// Ho catturato l'eccezione, ok.
}
}
void test_remove_node(){
graph<std::string, Equal_string> sG; //Grafo di String
sG.add_node("Test"); //Aggiungo la frase
sG.add_node("metodo"); //"Test metodo remove con
sG.add_node("remove"); //grafo di stringhe" nel
sG.add_node("node"); //grafo parola per parola.
sG.add_node("con");
sG.add_node("grafo");
sG.add_node("di");
sG.add_node("stringhe");
assert(sG.sizeN() == 8); //Il grafo contiene 8 identificatori.
sG.add_edge("remove", "node");
sG.add_edge("grafo", "stringhe");
assert(sG.sizeE() == 2); //Il grafo contiene due archi
//tra le stringhe remove -> _node
// e tra grafo -> stringhe.
sG.remove_node("di"); //Rimuovo i nodi "di" e "stringhe"
sG.remove_node("stringhe");
assert(sG.sizeN() == 6); //Il grafo contiene ora 6 nodi
assert(sG.sizeE() == 1); // Ed un solo arco
try{ //Provo a rimuovere un nodo inesistente.
sG.remove_node("stringhe");
assert(false);
}catch(NonExistentNodeException exc) {
// Ho catturato l'eccezione, ok.
}
}
void test_add_edge(){
graph<Persona, Equal_Persona> pG; //Grafo di Persona
assert(pG.sizeN() == 0); //Vuoto
Persona p1("EJ139", "Eren", "Jaeger"); // Creo e Aggiungo al grafo
Persona p2("JK278", "Jean", "Kirstein"); // 5 persone
Persona p3("RA001", "Rivaille", "Ackerman");
Persona p4("AA101", "Armin", "Arlert");
Persona p5("MA102", "Mikasa", "Ackerman");
pG.add_node(p1);
pG.add_node(p2);
pG.add_node(p3);
pG.add_node(p4);
pG.add_node(p5);
assert(pG.sizeN() == 5); // Il grafo ha 5 nodi
assert(pG.sizeE() == 0); // e 0 archi
pG.add_edge(p5, p1); //Aggiungo 4 archi
pG.add_edge(p4, p1);
pG.add_edge(p1, p3);
pG.add_edge(p2, p1);
assert(pG.sizeE() == 4); //Il grafo ha 4 archi
try{ //Provo ad aggiungere un arco
Persona p27("CG278", "Coppola", "Gianluca"); // su un nodo inesistente.
pG.add_edge(p27, p3);
assert(false);
}catch (NonExistentNodeException exc) {
//Ho catturato l'eccezione, ok.
}
try{
Persona p90("nen1", "N", "E");
Persona p91("nen2", "N", "E");
pG.hasEdge(p90, p91);
assert(false);
} catch (NonExistentNodeException exc) {
//Ho catturato l'eccezione, ok.
}
}
void test_remove_edge(){
graph<int, Equal_int> iG; //Creo grafo di interi vuoto
for(int i = 0; i < 5; ++i) // Inserisco 5 interi
iG.add_node(i);
for(int i = 0; i < 5; ++i) //Collego tutti i nodi con archi
for(int j = 0; j < 5; ++j)
iG.add_edge(i, j);
assert(iG.sizeE() == 5 * 5);
for(int i = 0; i < 5; ++i) //Rimuovo tutti gli archi del grafo
for(int j = 0; j < 5; ++j){
assert(iG.hasEdge(i, j));
iG.remove_edge(i, j);
assert(!iG.hasEdge(i, j));
}
assert(iG.sizeE() == 0);
try{ //Provo a rimuovere un nodo non esisente.
iG.remove_edge(-1, 4);
assert(false);
}catch(NonExistentNodeException exc){
//Ho catturato l'eccezione, ok.
}
}
void test_iteratori(){
graph<Persona, Equal_Persona> pG;
assert(pG.sizeN() == 0);
Persona p1("EJ139", "Eren", "Jaeger");
Persona p2("JK278", "Jean", "Kirstein");
Persona p3("RA001", "Rivaille", "Ackerman");
Persona p4("AA101", "Armin", "Arlert");
Persona p5("MA102", "Mikasa", "Ackerman");
pG.add_node(p1);
pG.add_node(p2);
pG.add_node(p3);
pG.add_node(p4);
pG.add_node(p5);
graph<Persona, Equal_Persona>::const_iterator is, ie;
ie = pG.end();
//Test di stampa tramite const_iterator.
for(is = pG.begin(); is != ie; is++) {
if(is->cognome() == "Ackerman")
std::cout << *is << " ";
}
std::cout << std::endl;
}