File size: 9,834 Bytes
7adf043
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#!/usr/bin/env node

/**
 * Test Suite for Smart Academic Report Generator
 * Validates all features and configurations
 */

const fs = require('fs');
const path = require('path');

// ANSI color codes for console output
const colors = {
  reset: '\x1b[0m',
  bright: '\x1b[1m',
  green: '\x1b[32m',
  red: '\x1b[31m',
  yellow: '\x1b[33m',
  blue: '\x1b[34m',
  cyan: '\x1b[36m'
};

function log(message, color = 'reset') {
  console.log(`${colors[color]}${message}${colors.reset}`);
}

function logSuccess(message) {
  log(`✅ ${message}`, 'green');
}

function logError(message) {
  log(`❌ ${message}`, 'red');
}

function logInfo(message) {
  log(`ℹ️  ${message}`, 'cyan');
}

function logWarning(message) {
  log(`⚠️  ${message}`, 'yellow');
}

function logHeader(message) {
  log(`\n${'='.repeat(60)}`, 'blue');
  log(message, 'bright');
  log('='.repeat(60), 'blue');
}

// Test cases
const tests = {
  passed: 0,
  failed: 0,
  total: 0
};

function runTest(testName, testFn) {
  tests.total++;
  try {
    testFn();
    tests.passed++;
    logSuccess(`${testName}`);
    return true;
  } catch (error) {
    tests.failed++;
    logError(`${testName}`);
    logError(`   Error: ${error.message}`);
    return false;
  }
}

// Test 1: Check if required files exist
function testFilesExist() {
  logHeader('Test 1: Checking Required Files');
  
  const requiredFiles = [
    'generate-academic-report.js',
    'sample-config.json',
    'package.json',
    'README.md',
    'QUICKSTART.md',
    'index.html'
  ];
  
  requiredFiles.forEach(file => {
    runTest(`File exists: ${file}`, () => {
      if (!fs.existsSync(file)) {
        throw new Error(`File not found: ${file}`);
      }
    });
  });
}

// Test 2: Validate sample configuration
function testSampleConfig() {
  logHeader('Test 2: Validating Sample Configuration');
  
  runTest('sample-config.json is valid JSON', () => {
    const content = fs.readFileSync('sample-config.json', 'utf8');
    const config = JSON.parse(content);
    
    // Check required fields
    const requiredFields = [
      'studentName', 'studentId', 'department', 'university',
      'courseTitle', 'courseCode', 'teacherName', 'reportTitle', 'topic'
    ];
    
    requiredFields.forEach(field => {
      if (!config[field]) {
        throw new Error(`Missing required field: ${field}`);
      }
    });
  });
}

// Test 3: Validate package.json
function testPackageJson() {
  logHeader('Test 3: Validating package.json');
  
  runTest('package.json is valid', () => {
    const content = fs.readFileSync('package.json', 'utf8');
    const pkg = JSON.parse(content);
    
    if (!pkg.name) throw new Error('Missing package name');
    if (!pkg.version) throw new Error('Missing version');
    if (!pkg.dependencies) throw new Error('Missing dependencies');
    if (!pkg.dependencies.docx) throw new Error('Missing docx dependency');
  });
}

// Test 4: Check script permissions
function testScriptPermissions() {
  logHeader('Test 4: Checking Script Permissions');
  
  runTest('generate-academic-report.js is readable', () => {
    try {
      fs.accessSync('generate-academic-report.js', fs.constants.R_OK);
    } catch (err) {
      throw new Error('Script is not readable');
    }
  });
}

// Test 5: Validate configuration options
function testConfigurationOptions() {
  logHeader('Test 5: Testing Configuration Options');
  
  const testConfigs = [
    {
      name: 'Minimum config',
      config: {
        studentName: 'Test Student',
        studentId: 'TEST-001',
        department: 'Test Dept',
        university: 'Test University',
        courseTitle: 'Test Course',
        courseCode: 'TST 101',
        teacherName: 'Test Teacher',
        reportTitle: 'Test Report',
        topic: 'Test Topic'
      }
    },
    {
      name: 'Full config with all options',
      config: {
        studentName: 'Test Student',
        studentId: 'TEST-001',
        department: 'Test Dept',
        university: 'Test University',
        courseTitle: 'Test Course',
        courseCode: 'TST 101',
        teacherName: 'Test Teacher',
        teacherDesignation: 'Professor',
        submissionDate: '2026-02-14',
        reportType: 'assignment',
        reportTitle: 'Test Report',
        topic: 'Test Topic',
        includeAbstract: true,
        includeTOC: true,
        includeReferences: true,
        pageNumbers: true,
        fontFamily: 'Times New Roman',
        fontSize: '12',
        lineSpacing: '1.5'
      }
    }
  ];
  
  testConfigs.forEach(({ name, config }) => {
    runTest(`Config validation: ${name}`, () => {
      const jsonStr = JSON.stringify(config, null, 2);
      JSON.parse(jsonStr); // Validate it's proper JSON
    });
  });
}

// Test 6: Test different report types
function testReportTypes() {
  logHeader('Test 6: Testing Report Types');
  
  const reportTypes = [
    'assignment',
    'project',
    'thesis',
    'research',
    'case-study',
    'lab-report'
  ];
  
  reportTypes.forEach(type => {
    runTest(`Report type: ${type}`, () => {
      // Just validate the type is a string
      if (typeof type !== 'string') {
        throw new Error(`Invalid report type: ${type}`);
      }
    });
  });
}

// Test 7: Test font families
function testFontFamilies() {
  logHeader('Test 7: Testing Font Families');
  
  const fontFamilies = [
    'Times New Roman',
    'Arial',
    'Calibri',
    'Georgia'
  ];
  
  fontFamilies.forEach(font => {
    runTest(`Font family: ${font}`, () => {
      if (typeof font !== 'string' || font.length === 0) {
        throw new Error(`Invalid font family: ${font}`);
      }
    });
  });
}

// Test 8: Test date formats
function testDateFormats() {
  logHeader('Test 8: Testing Date Formats');
  
  const testDates = [
    { date: '2026-02-14', valid: true, name: 'ISO format (YYYY-MM-DD)' },
    { date: '2026-12-31', valid: true, name: 'End of year' },
    { date: '2026-01-01', valid: true, name: 'Start of year' }
  ];
  
  testDates.forEach(({ date, valid, name }) => {
    runTest(`Date format: ${name}`, () => {
      const d = new Date(date);
      if (isNaN(d.getTime()) && valid) {
        throw new Error(`Invalid date: ${date}`);
      }
    });
  });
}

// Test 9: Output directory check
function testOutputDirectory() {
  logHeader('Test 9: Checking Output Directory');
  
  runTest('Output directory structure', () => {
    const outputDir = '/mnt/user-data/outputs';
    // Just check if we can create the path conceptually
    const isValidPath = outputDir.startsWith('/');
    if (!isValidPath) {
      throw new Error('Invalid output path');
    }
  });
}

// Test 10: Documentation completeness
function testDocumentation() {
  logHeader('Test 10: Checking Documentation');
  
  const docs = [
    { file: 'README.md', minLength: 1000 },
    { file: 'QUICKSTART.md', minLength: 500 }
  ];
  
  docs.forEach(({ file, minLength }) => {
    runTest(`Documentation: ${file}`, () => {
      const content = fs.readFileSync(file, 'utf8');
      if (content.length < minLength) {
        throw new Error(`${file} seems incomplete (${content.length} chars)`);
      }
    });
  });
}

// Test 11: HTML interface validation
function testHTMLInterface() {
  logHeader('Test 11: Validating HTML Interface');
  
  runTest('index.html structure', () => {
    const content = fs.readFileSync('index.html', 'utf8');
    
    // Check for essential elements
    const requiredElements = [
      '<form',
      'studentName',
      'studentId',
      'department',
      'university',
      'courseTitle',
      'reportTitle',
      'submit'
    ];
    
    requiredElements.forEach(element => {
      if (!content.includes(element)) {
        throw new Error(`Missing element in HTML: ${element}`);
      }
    });
  });
}

// Test 12: Configuration field types
function testConfigFieldTypes() {
  logHeader('Test 12: Testing Configuration Field Types');
  
  runTest('String fields validation', () => {
    const stringFields = [
      'studentName', 'studentId', 'department', 'university',
      'courseTitle', 'courseCode', 'teacherName', 'reportTitle', 'topic'
    ];
    
    stringFields.forEach(field => {
      const value = 'Test Value';
      if (typeof value !== 'string') {
        throw new Error(`Field ${field} should be string`);
      }
    });
  });
  
  runTest('Boolean fields validation', () => {
    const booleanFields = [
      'includeAbstract', 'includeTOC', 'includeReferences', 'pageNumbers'
    ];
    
    booleanFields.forEach(field => {
      const value = true;
      if (typeof value !== 'boolean') {
        throw new Error(`Field ${field} should be boolean`);
      }
    });
  });
}

// Main test execution
function runAllTests() {
  console.clear();
  logHeader('🎓 Smart Academic Report Generator - Test Suite');
  logInfo('Running comprehensive tests...\n');
  
  // Run all test suites
  testFilesExist();
  testSampleConfig();
  testPackageJson();
  testScriptPermissions();
  testConfigurationOptions();
  testReportTypes();
  testFontFamilies();
  testDateFormats();
  testOutputDirectory();
  testDocumentation();
  testHTMLInterface();
  testConfigFieldTypes();
  
  // Print summary
  logHeader('Test Summary');
  log(`\nTotal Tests: ${tests.total}`, 'bright');
  logSuccess(`Passed: ${tests.passed}`);
  
  if (tests.failed > 0) {
    logError(`Failed: ${tests.failed}`);
    log(`\nSuccess Rate: ${((tests.passed / tests.total) * 100).toFixed(1)}%`, 'yellow');
    process.exit(1);
  } else {
    log('\n🎉 All tests passed! System is ready to use.', 'green');
    log('\nTo generate a report, run:', 'cyan');
    log('  node generate-academic-report.js --config sample-config.json\n', 'bright');
    process.exit(0);
  }
}

// Run tests
if (require.main === module) {
  runAllTests();
}

module.exports = { runAllTests };