-
Notifications
You must be signed in to change notification settings - Fork 215
/
Copy pathtest_cli_module_test.py
56 lines (48 loc) · 2.18 KB
/
test_cli_module_test.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import os
import unittest
from pathlib import Path
from unittest import mock
from taskcat._cli_modules.test import Test
class TestTestCli(unittest.TestCase):
@mock.patch("taskcat._cli_modules.test.CFNTest", autospec=True)
def test_test_run(self, mock_test):
base_path = "./" if os.getcwd().endswith("/tests") else "./tests/"
base_path = Path(base_path + "data/nested-fail").resolve()
input_path = base_path / ".taskcat.yml"
Test.run(project_root=base_path, input_file=input_path)
# Make sure we created test_manager using from_file
mock_test.from_file.assert_called_once_with(base_path, input_path, "ALL", False)
# Mock test is the class, here we get an instance of it
test = mock_test.from_file.return_value
test.__enter__.assert_called_once()
test.report.assert_called_once_with("./taskcat_outputs")
test.__exit__.assert_called_once()
@mock.patch("taskcat._cli_modules.test.Config", autospec=True)
@mock.patch("taskcat._cli_modules.test.Test", autospec=True)
@mock.patch("taskcat._cli_modules.test.boto3.Session", autospec=True)
def test_test_retry(self, mock_boto_session, mock_test, mock_config):
base_path = "./" if os.getcwd().endswith("/tests") else "./tests/"
base_path = Path(base_path + "data/nested-fail").resolve()
mock_client = mock.MagicMock()
mock_describe = mock.MagicMock()
mock_describe.return_value = {
"StackEvents": [
{
"PhysicalResourceId": "pid",
"LogicalResourceId": "MyResource",
"ResourceProperties": '{"Parameters": [], "TemplateURL": '
'"https://some/url"}',
}
]
}
mock_client.return_value.describe_stack_events = mock_describe
mock_boto_session.return_value.client = mock_client
Test.retry(
project_root=base_path,
config_file=base_path / ".taskcat.yml",
region="us-east-1",
stack_name="test-stack",
resource_name="MyResource",
)
mock_config.create.assert_called()
mock_test.run.assert_called()