Skip to content

Commit b0e6594

Browse files
committed
Editing test files again
1 parent 7d0d39b commit b0e6594

File tree

3 files changed

+107
-6
lines changed

3 files changed

+107
-6
lines changed

src/__init__.py

Whitespace-only changes.

tests/tests.py

+101-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,101 @@
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()

tox.ini

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
[tox]
22
minversion = 3.8.0
3-
envlist = py36, py37, py38, py39, flake8, mypy
3+
envlist = py39, py310, py311, py312, flake8, mypy
44
isolated_build = true
55

66
[gh-actions]
77
python =
8-
3.6: py36, mypy, flake8
9-
3.7: py37
10-
3.8: py38
11-
3.9: py39
8+
3.9: py39, mypy, flake8
9+
3.10: py310
10+
3.11: py311
11+
3.12: py312
1212

1313
[testenv]
1414
setenv =
1515
PYTHONPATH = {toxinidir}
1616
deps =
1717
pytest
1818
pytest-cov
19+
coverage
1920
commands =
2021
pytest --cov=src tests/

0 commit comments

Comments
 (0)