|
1 |
| -# Testing for file processing goes here |
| 1 | +import os |
| 2 | +import unittest |
| 3 | +import src.app as app |
| 4 | + |
| 5 | +class TestApp(unittest.TestCase): |
| 6 | + # Test case 1: Process .tar.gz file |
| 7 | + def test_process_files_extract_gz(self): |
| 8 | + file_path = 'file.tar.gz' |
| 9 | + extract_gz_called = False |
| 10 | + os.remove_called = False |
| 11 | + |
| 12 | + def extract_gz(file_path): |
| 13 | + nonlocal extract_gz_called |
| 14 | + extract_gz_called = True |
| 15 | + |
| 16 | + def remove(file_path): |
| 17 | + nonlocal os.remove_called |
| 18 | + os.remove_called = True |
| 19 | + |
| 20 | + # Replace the real os.remove and extract_gz functions with our test doubles |
| 21 | + os.remove = remove |
| 22 | + app.process_files.extract_gz = extract_gz |
| 23 | + |
| 24 | + # Call the function being tested |
| 25 | + app.process_files(file_path) |
| 26 | + |
| 27 | + # Verify that the test doubles were called |
| 28 | + self.assertTrue(extract_gz_called) |
| 29 | + self.assertTrue(os.remove_called) |
| 30 | + |
| 31 | + # Test case 2: Process .csv file |
| 32 | + def test_process_files_csv(self): |
| 33 | + file_path = 'file.csv' |
| 34 | + global CSV_FILE |
| 35 | + CSV_FILE = None |
| 36 | + |
| 37 | + app.process_files(file_path) |
| 38 | + |
| 39 | + self.assertEqual(CSV_FILE, file_path) |
| 40 | + |
| 41 | + # Test case 3: Process .md file |
| 42 | + def test_process_files_markdown(self): |
| 43 | + file_path = 'file.md' |
| 44 | + global MARKDOWN_TEMPLATE |
| 45 | + MARKDOWN_TEMPLATE = None |
| 46 | + |
| 47 | + app.process_files(file_path) |
| 48 | + |
| 49 | + self.assertEqual(MARKDOWN_TEMPLATE, file_path) |
| 50 | + |
| 51 | + # Test case 4: Process .csv and .md files |
| 52 | + def test_process_files_complete(self): |
| 53 | + global CSV_FILE |
| 54 | + global MARKDOWN_TEMPLATE |
| 55 | + CSV_FILE = 'file.csv' |
| 56 | + MARKDOWN_TEMPLATE = 'file.md' |
| 57 | + |
| 58 | + csv_data_called = False |
| 59 | + modify_and_write_markdown_called = False |
| 60 | + create_pdfs_called = False |
| 61 | + create_tar_file_called = False |
| 62 | + |
| 63 | + def create_pdfs(): |
| 64 | + nonlocal create_pdfs_called |
| 65 | + create_pdfs_called = True |
| 66 | + |
| 67 | + def create_tar_file(): |
| 68 | + nonlocal create_tar_file_called |
| 69 | + create_tar_file_called = True |
| 70 | + |
| 71 | + read_csv_file_original = read_csv_file |
| 72 | + modify_and_write_markdown_original = modify_and_write_markdown |
| 73 | + create_pdfs_original = create_pdfs |
| 74 | + create_tar_file_original = create_tar_file |
| 75 | + |
| 76 | + read_csv_file = read_csv_file_original |
| 77 | + modify_and_write_markdown = modify_and_write_markdown_original |
| 78 | + create_pdfs = create_pdfs_original |
| 79 | + create_tar_file = create_tar_file_original |
| 80 | + |
| 81 | + app.process_files('dummy_file') |
| 82 | + |
| 83 | + self.assertTrue(csv_data_called) |
| 84 | + self.assertTrue(modify_and_write_markdown_called) |
| 85 | + self.assertTrue(create_pdfs_called) |
| 86 | + self.assertTrue(create_tar_file_called) |
| 87 | + |
| 88 | + # Test case 5: Missing CSV file or Markdown template |
| 89 | + def test_process_files_missing_files(self): |
| 90 | + global CSV_FILE |
| 91 | + global MARKDOWN_TEMPLATE |
| 92 | + CSV_FILE = None |
| 93 | + MARKDOWN_TEMPLATE = None |
| 94 | + |
| 95 | + app.process_files('dummy_file') |
| 96 | + |
| 97 | + self.assertIsNone(CSV_FILE) |
| 98 | + self.assertIsNone(MARKDOWN_TEMPLATE) |
| 99 | + |
| 100 | +if __name__ == '__main__': |
| 101 | + unittest.main() |
0 commit comments