-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathtest_broker.py
184 lines (147 loc) · 6.45 KB
/
test_broker.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
import os
from unittest import TestCase
from mock import patch
from pact.broker import Broker
from pact.consumer import Consumer, Provider
from pact.constants import BROKER_CLIENT_PATH
from pact import broker as broker
class BrokerTestCase(TestCase):
def setUp(self):
self.consumer = Consumer('TestConsumer')
self.provider = Provider('TestProvider')
self.addCleanup(patch.stopall)
self.mock_Popen = patch.object(broker, 'Popen', autospec=True).start()
self.mock_Popen.return_value.returncode = 0
self.mock_fnmatch = patch.object(
broker.fnmatch, 'filter', autospec=True).start()
self.mock_fnmatch.return_value = ['TestConsumer-TestProvider.json']
def test_publish_without_broker_url(self):
broker = Broker()
with self.assertRaises(RuntimeError):
broker.publish("TestConsumer", "2.0.1")
self.mock_Popen.assert_not_called()
def test_publish_fails(self):
self.mock_Popen.return_value.returncode = 1
broker = Broker(broker_base_url="http://localhost",
broker_username="username",
broker_password="password",
broker_token="token")
with self.assertRaises(RuntimeError):
broker.publish("TestConsumer",
"2.0.1",
pact_dir='.')
self.mock_Popen.assert_called_once_with([
BROKER_CLIENT_PATH, 'publish',
'--consumer-app-version=2.0.1',
'--broker-base-url=http://localhost',
'--broker-username=username',
'--broker-password=password',
'--broker-token=token',
'./TestConsumer-TestProvider.json'])
def test_publish_with_broker_url_environment_variable(self):
BROKER_URL_ENV = 'http://broker.url'
os.environ["PACT_BROKER_BASE_URL"] = BROKER_URL_ENV
broker = Broker(broker_username="username",
broker_password="password")
broker.publish("TestConsumer",
"2.0.1",
pact_dir='.')
self.mock_Popen.assert_called_once_with([
BROKER_CLIENT_PATH, 'publish',
'--consumer-app-version=2.0.1',
f"--broker-base-url={BROKER_URL_ENV}",
'--broker-username=username',
'--broker-password=password',
'./TestConsumer-TestProvider.json'])
del os.environ["PACT_BROKER_BASE_URL"]
def test_basic_authenticated_publish(self):
broker = Broker(broker_base_url="http://localhost",
broker_username="username",
broker_password="password")
broker.publish("TestConsumer",
"2.0.1",
pact_dir='.')
self.mock_Popen.assert_called_once_with([
BROKER_CLIENT_PATH, 'publish',
'--consumer-app-version=2.0.1',
'--broker-base-url=http://localhost',
'--broker-username=username',
'--broker-password=password',
'./TestConsumer-TestProvider.json'])
def test_token_authenticated_publish(self):
broker = Broker(broker_base_url="http://localhost",
broker_username="username",
broker_password="password",
broker_token="token")
broker.publish("TestConsumer",
"2.0.1",
pact_dir='.')
self.mock_Popen.assert_called_once_with([
BROKER_CLIENT_PATH, 'publish',
'--consumer-app-version=2.0.1',
'--broker-base-url=http://localhost',
'--broker-username=username',
'--broker-password=password',
'--broker-token=token',
'./TestConsumer-TestProvider.json'])
def test_git_tagged_publish(self):
broker = Broker(broker_base_url="http://localhost")
broker.publish("TestConsumer",
"2.0.1",
tag_with_git_branch=True,
pact_dir='.')
self.mock_Popen.assert_called_once_with([
BROKER_CLIENT_PATH, 'publish',
'--consumer-app-version=2.0.1',
'--broker-base-url=http://localhost',
'./TestConsumer-TestProvider.json',
'--tag-with-git-branch'])
def test_manual_tagged_publish(self):
broker = Broker(broker_base_url="http://localhost")
broker.publish("TestConsumer",
"2.0.1",
consumer_tags=['tag1', 'tag2'],
pact_dir='.')
self.mock_Popen.assert_called_once_with([
BROKER_CLIENT_PATH, 'publish',
'--consumer-app-version=2.0.1',
'--broker-base-url=http://localhost',
'./TestConsumer-TestProvider.json',
'-t', 'tag1',
'-t', 'tag2'])
def test_branch_publish(self):
broker = Broker(broker_base_url="http://localhost")
broker.publish("TestConsumer",
"2.0.1",
branch='consumer-branch',
pact_dir='.')
self.mock_Popen.assert_called_once_with([
BROKER_CLIENT_PATH, 'publish',
'--consumer-app-version=2.0.1',
'--broker-base-url=http://localhost',
'./TestConsumer-TestProvider.json',
'--branch=consumer-branch'])
def test_build_url_publish(self):
broker = Broker(broker_base_url="http://localhost")
broker.publish("TestConsumer",
"2.0.1",
build_url='http://ci',
pact_dir='.')
self.mock_Popen.assert_called_once_with([
BROKER_CLIENT_PATH, 'publish',
'--consumer-app-version=2.0.1',
'--broker-base-url=http://localhost',
'./TestConsumer-TestProvider.json',
'--build-url=http://ci'])
def test_auto_detect_version_properties_publish(self):
broker = Broker(broker_base_url="http://localhost")
broker.publish("TestConsumer",
"2.0.1",
auto_detect_version_properties=True,
pact_dir='.')
self.mock_Popen.assert_called_once_with([
BROKER_CLIENT_PATH, 'publish',
'--consumer-app-version=2.0.1',
'--broker-base-url=http://localhost',
'./TestConsumer-TestProvider.json',
'--auto-detect-version-properties'])