From 996623b3d7bb78fd9970b81c3e6c05c458792056 Mon Sep 17 00:00:00 2001 From: Ryan Mwangi Date: Tue, 5 Nov 2024 14:32:53 +0300 Subject: [PATCH] test (calendar.test.js): Add logging --- calendar.test.js | 17 ++++++++++------- server.js | 1 + 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/calendar.test.js b/calendar.test.js index ca2044e..3cdc503 100644 --- a/calendar.test.js +++ b/calendar.test.js @@ -4,15 +4,16 @@ import fs from 'fs'; import path from 'path'; import app from './server'; -const TEST_MERGED_CALENDARS_DIR = path.join(__dirname, 'temp_test_calendar'); -const MERGED_CALENDARS_DIR = 'calendar'; +// Set environment variable for the test directory +process.env.TEST_MERGED_CALENDARS_DIR = path.join(__dirname, 'temp_test_calendar'); + +const TEST_MERGED_CALENDARS_DIR = process.env.TEST_MERGED_CALENDARS_DIR; const TEST_CALENDARS_DIR = 'test_calendars'; +console.log(`Test Merged Calendars Directory: ${TEST_MERGED_CALENDARS_DIR}`); let server; describe('Calendar Merging API', () => { beforeAll(async () => { - // Set environment variable for the test directory - process.env.TEST_MERGED_CALENDARS_DIR = TEST_MERGED_CALENDARS_DIR; // Start the server server = app.listen(0); // Ensure the test merged calendars directory exists @@ -22,8 +23,10 @@ describe('Calendar Merging API', () => { }); afterAll(async () => { - // Clean up the merged calendars directory after tests - fs.rmSync(TEST_MERGED_CALENDARS_DIR, { recursive: true, force: true }); + // // Clean up the merged calendars directory after tests + // if (fs.existsSync(TEST_MERGED_CALENDARS_DIR)) { + // fs.rmSync(TEST_MERGED_CALENDARS_DIR, { recursive: true, force: true }); + // } // Close the server await new Promise(resolve => server.close(resolve)); @@ -104,7 +107,7 @@ describe('Calendar Merging API', () => { expect(response.body.url).toMatch(/calendar\/No_Prefix_Calendar/); // Check if the file was created in the test directory - const filePath = path.join(MTEST_MERGED_CALENDARS_DIR, 'No_Prefix_Calendar.ics'); + const filePath = path.join(TEST_MERGED_CALENDARS_DIR, 'No_Prefix_Calendar.ics'); expect(fs.existsSync(filePath)).toBe(true); }); diff --git a/server.js b/server.js index 1857cda..bfa9f3e 100644 --- a/server.js +++ b/server.js @@ -9,6 +9,7 @@ const app = express(); app.use(express.json()); const MERGED_CALENDARS_DIR = process.env.TEST_MERGED_CALENDARS_DIR || 'calendar'; +console.log(`Merged calendars directory: ${MERGED_CALENDARS_DIR}`); // Ensure the merged calendars directory exists