[ create a new paste ] login | about

Link: http://codepad.org/aeXN8mdI    [ raw code | output | fork ]

C++, pasted on May 26:
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
#include <iostream>
#include <fstream>
#include "student.h"
#include "teacher.h"
#include "classroom.h"
#include "database.h"
#include "leakdetection.h"
using namespace std;


bool TestStudent();
bool TestTeacher();
bool TestClassroom();

bool TestDataLoad();
bool TestDatabase();

#ifdef MEMORY_LEAK_DETECTION
#define DEBUG_NEW new(__FILE__, __LINE__)
#define new DEBUG_NEW
#endif

int test()
{
    cout << "====================================== \n";
    cout << "Testing Student \n";
    cout << "====================================== \n";
    if(!TestStudent())
    {
        cout << endl << endl;
        cout << "Student test failed! Fix those bugs! \n";
        return 0;
    }

    cout << endl << endl;
    cout << "====================================== \n";
    cout << "Testing Teacher \n";
    cout << "====================================== \n";
    if(!TestTeacher())
    {
        cout << endl << endl;
        cout << "Teacher test failed! Fix those bugs! \n";
        return 0;
    }
    cout << endl << endl;
    cout << "====================================== \n";
    cout << "Testing Classroom \n";
    cout << "====================================== \n";
    if(!TestClassroom())
    {
        cout << endl << endl;
        cout << "Classroom test failed! Fix those bugs! \n";
        return 0;
    }

    cout << "====================================== \n";
    cout << "Testing All Data \n";
    cout << "====================================== \n";
    if(!TestDataLoad())
    {
        cout << endl << endl;
        cout << "All data test failed! Fix those bugs! \n";
        return 0;
    }
    cout << endl << endl;
    cout << "====================================== \n";
    cout << "Testing Database \n";
    cout << "====================================== \n";
    if(!TestDatabase())
    {
        cout << endl << endl;
        cout << "Database test failed! Fix those bugs! \n";
        return 0;
    }
    cout << endl << endl;

#ifdef MEMORY_LEAK_DETECTION
    cout << "Unfreed : \n";
    DumpUnfreed();
#endif




    return 0;
}

bool TestDatabase()
{
    CDatabase classData;
    ifstream inputFile("clf.txt");
    if(inputFile.fail())
    {
        cout << "Failed to open clf.txt! \n";
        return false;
    }

    CClassroom classFileRead;
    while(!inputFile.eof())
    {
        inputFile >> classFileRead;
        classData.AddClassroom(&classFileRead);
        if(classData.GetClassroom(0) == NULL)
        {
            cout << "Failed to get class! \n";
            return false;
        }
        inputFile.peek();
    }
    if(classData.GetNumClasses() != 10)
    {
        cout << "GetNumClasses returned " << classData.GetNumClasses() << " but that's wrong! \n";
        cout << "Error adding the class to the database" << endl;
        return false;
    }
    inputFile.close();
    inputFile.open("slf.txt");
    if(inputFile.fail())
    {
        cout << "Failed to open slf.txt! \n";
        return false;
    }

    CStudent tempStudent;
    int nNumStudents = 0;
    while(!inputFile.eof())
    {
        inputFile >> tempStudent;
        classData.AddStudent(&tempStudent);
        nNumStudents++;
    }

    if(classData.GetNumStudents() != nNumStudents)
    {
        cout << "Error adding students to database! \n";
        return false;
    }

    for( int i = 0; i < nNumStudents; i++)
    {
        if(classData.GetStudent(i) == NULL)
        {
            cout << "Failed to properly retrieve student from database! \n";
            return false;
        }
    }

    inputFile.close();
    inputFile.open("tlf.txt");
    if(inputFile.fail())
    {
        cout << "Failed to open tlf.txt! \n";
        return false;
    }

    CTeacher tempTeacher;
    int nNumTeachers = 0;
    while(!inputFile.eof())
    {
        inputFile >> tempTeacher;
        classData.AddTeacher(&tempTeacher);
        nNumTeachers++;
    }

    if(classData.GetNumTeachers() != nNumTeachers)
    {
        cout << "GetNumTeachers returned " << classData.GetNumTeachers() << " but nNumTeachers = " << nNumTeachers << endl;
        cout << "Error adding teacher to database! \n";
        return false;
    }

    for( int i = 0; i < nNumTeachers; i++)
    {
        if(classData.GetTeacher(i) == NULL)
        {
            cout << "Failed to properly retrieve teacher from database! \n";
            return false;
        }
    }


    cout << "Returning from database test, good job! \n";
    return true;


}

bool TestStudent()
{
    cout << "Inside test student \n";
    cout << "Testing default constructor: \n";
    // test the default constructor
    CStudent defaultStudent;
    if(defaultStudent.GetGPA() != 0)
    {
        cout << "Failed to initialize GPA! \n";
        return false;
    }

    // test the copy constructor
    cout << "Testing copy constructor: \n";
    CStudent copyStudent(defaultStudent);
    if(defaultStudent.GetGPA() != copyStudent.GetGPA())
    {
        cout << "Failed to copy GPA! \n";
        return false;
    }

    // test the conversion constructor
    cout << "Testing conversion constructor: \n";
    double GPA = 4;
    CStudent conversionConstructor(GPA);
    if(GPA != conversionConstructor.GetGPA())
    {
        cout << "Failed to convert GPA! \n";
        return false;
    }

    // open our student file
    ifstream inputFile("slf.txt");
    if(inputFile.fail())
    {
        cout << "Failed to open slf.txt! \n";
        return false;
    }


    // test our stream insertion/extraction stuff
    CStudent testFileRead[10];
    ofstream outputFile("output.txt");
    int index = 0;
    cout << "Testing stream insertion/extraction operator \n";
    while(!inputFile.eof())
    {
        cout << "Extracting... \n";
        inputFile >> testFileRead[0];
        cout << "Inserting... \n";
        outputFile << testFileRead[0];
        inputFile.peek();
        index++;
    }

    inputFile.close();
    outputFile.close();
    testFileRead[0].SetGPA(0);
    testFileRead[1].SetGPA(2);
    cout << "Attempting to set the name of the student. \n";
    testFileRead[0].SetName("James Clay");
    testFileRead[1].SetName("James Clay");
    testFileRead[0].SetID(10);
    testFileRead[1].SetID(10);
    if(testFileRead[0] == testFileRead[1])
    {
        cout << "Student failed GPA comparison test! \n";
        return false;
    }

    testFileRead[0].SetGPA(0);
    testFileRead[1].SetGPA(0);
    testFileRead[0].SetName("James1 Clay");
    testFileRead[1].SetName("James Clay");
    testFileRead[0].SetID(10);
    testFileRead[1].SetID(10);
    if(testFileRead[0] == testFileRead[1])
    {
        cout << "Student failed NAME comparison test! \n";
        return false;
    }


    testFileRead[0].SetGPA(0);
    testFileRead[1].SetGPA(0);
    testFileRead[0].SetName("James Clay");
    testFileRead[1].SetName("James Clay");
    testFileRead[0].SetID(1);
    testFileRead[1].SetID(10);
    if(testFileRead[0] == testFileRead[1])
    {
        cout << "Student failed ID comparison test! \n";
        return false;
    }

    testFileRead[0].SetGPA(2);
    testFileRead[1].SetGPA(2);
    testFileRead[0].SetName("James Clay");
    testFileRead[1].SetName("James Clay");
    testFileRead[0].SetID(10);
    testFileRead[1].SetID(10);
    if(testFileRead[0] != testFileRead[1])
    {
        cout << "Student records marked as mismatched when they're not. Failed comparison test! \n";
        return false;
    }
    cout << "Testing assignment operator. " << endl;
    testFileRead[0].SetGPA(1);
    testFileRead[0].SetName("Ja");
    testFileRead[0].SetID(0);
    testFileRead[0] = testFileRead[1];

    if(testFileRead[0] != testFileRead[1])
    {
        cout << "Assignment operator test failed! \n";
        return false;
    }
    cout << "Returning from test student \n";
    return true;
}

bool TestTeacher()
{
    cout << "Inside test teacher \n";
    cout << "Testing default constructor: \n";
    CTeacher defaultTeacher;
    if(defaultTeacher.GetSalary() != 0)
    {
        cout << "Failed to properly initialize salary! \n";
        return false;
    }
    cout << "Testing copy constructor: \n";
    CTeacher copyTeacher(defaultTeacher);
    if(copyTeacher.GetSalary() != defaultTeacher.GetSalary())
    {
        cout << "Failed to copy salary! \n";
        return false;
    }
    cout << "Testing conversion constructor: \n";
    double salary = 40000;
    CTeacher conversionTeacher(salary);
    if(salary != conversionTeacher.GetSalary())
    {
        cout << "Failed to convert salary! \n";
        return false;
    }

    ifstream inputFile("tlf.txt");
    if(inputFile.fail())
    {
        cout << "Failed to open tlf.txt! \n";
        return false;
    }

    CTeacher testFileRead[10];
    ofstream outputFile("output.txt");
    int index = 0;
    while(!inputFile.eof())
    {
        inputFile >> testFileRead[0];
        outputFile << testFileRead[0];
        inputFile.peek();
        index++;
    }

    inputFile.close();
    outputFile.close();
    testFileRead[0].SetID(0);
    testFileRead[1].SetID(1);
    if(testFileRead[0] == testFileRead[1])
    {
        cout << "Teacher failed comparison test! \n";
        return false;
    }

    cout << "Returning from test teacher \n";
    return true;
} 

bool TestClassroom()
{

    cout << "Inside test classroom \n";
    cout << "Testing default constructor: \n";
    CClassroom defaultClassroom;
    if(defaultClassroom.GetClassSize() != 0)
    {
        cout << "Failed to initialize class size! \n";
        return false;
    }
    cout << "Testing copy constructor: \n";
    CClassroom copyClassroom(defaultClassroom);
    if(defaultClassroom.GetClassSize() != copyClassroom.GetClassSize())
    {
        cout << "Failed to copy class size! \n";
        return false;
    }
    cout << "Testing conversion constructor: \n";
    int classSize = 30;
    CClassroom conversionClassroom(classSize);
    if(conversionClassroom.GetClassSize() != classSize)
    {
        cout << "Failed to convert class size! \n";
        return false;
    }

    ifstream inputFile("clf.txt");
    if(inputFile.fail())
    {
        cout << "Failed to open clf.txt! \n";
        return false;
    }

    CClassroom testFileRead;
    ofstream outputFile("output.txt");
    cout << "Reading in from clf.txt and outputting to output.txt" << endl;
    while(!inputFile.eof())
    {
        inputFile >> testFileRead;
        if(inputFile.eof())
        {
            break;
        }
        outputFile << testFileRead;
        inputFile.peek();
    }

    inputFile.close();
    outputFile.close();
    inputFile.open("clf.txt");
    ifstream newInputFile("output.txt");
    cout << "Doing byte for byte comparison between clf.txt and output.txt" << endl;
    while(!inputFile.eof() && !newInputFile.eof())
    {
        char original = inputFile.get();
        char newChar = newInputFile.get();
        if(original != newChar && (!isspace(newChar)) && (!isspace(original)))
        {
            cout << "The classroom stream extraction operator/insertion operator failed! \n";
            return false;
        }
    }

    inputFile.close();
    newInputFile.close();
    cout << "Returning from test classroom \n";
    return true;
}

bool TestDataLoad()
{

    ifstream inputFile("clf.txt");
    if(inputFile.fail())
    {
        cout << "Failed to open clf.txt! \n";
        return false;
    }
    cout << "Reading classes ... \n";
    CClassroom classFileRead;
    while(!inputFile.eof())
    {
        inputFile >> classFileRead;
        inputFile.peek();
    }
    inputFile.close();
    inputFile.open("slf.txt");
    if(inputFile.fail())
    {
        cout << "Failed to open slf.txt! \n";
        return false;
    }

    CStudent studentFileRead[30];
    int index = 0;
    while(!inputFile.eof())
    {
        inputFile >> studentFileRead[index];
        index++;
        inputFile.peek();
    }
    int i = 0;

    if(i == classFileRead.GetClassSize())
    {
        cout << "Had difficulty either reading the student ID or the enrolled student's ID." << endl;
        return false;
    }
    cout << "Returning from all data test, good job! \n";
    return true;

}


Output:
1
2
3
4
5
6
7
8
Line 20: error: student.h: No such file or directory
Line 20: error: teacher.h: No such file or directory
Line 22: error: classroom.h: No such file or directory
Line 21: error: database.h: No such file or directory
Line 26: error: leakdetection.h: No such file or directory
In function 'bool TestDatabase()':
Line 90: error: 'CDatabase' was not declared in this scope
compilation terminated due to -Wfatal-errors.


Create a new paste based on this one


Comments: