-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_main.py
37 lines (30 loc) · 1.05 KB
/
test_main.py
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
import unittest
from unittest.mock import patch
from main import main
class TestMainFunction(unittest.TestCase):
@patch("main.fetch_and_summarize")
def test_main(self, mock_fetch_and_summarize):
mock_fetch_and_summarize.return_value = (
{
"link": "example.com",
"snippet": "Example Snippet",
"score": 90,
"ranking_score": 0.9,
"summary": "Example Summary",
},
"Example Reason",
)
with patch("builtins.print") as mock_print:
main(5, "example query", "example goal")
expected_calls = [
(("example.com",),),
(("Example Snippet",),),
(("score: 90",),),
(("ranking score: 0.9",),),
(("Ai content:",),),
(("summary: Example Summary",),),
(("reason: Example Reason",),),
]
mock_print.assert_has_calls(expected_calls)
if __name__ == "__main__":
unittest.main()