
Instead of directly mocking out the HTTPClient use requests-mock to stub the information that is going over the wire instead of what is being passed to HTTPClient. This ensures that the HTTPClient is always tested as well. Change-Id: I988fb432ced6d4946ab5301ac58fa0d7148bbb79
97 lines
3.0 KiB
Python
97 lines
3.0 KiB
Python
# Copyright 2016 Catalyst IT Limited
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import copy
|
|
|
|
from mistralclient.tests.unit.v2 import base
|
|
|
|
MEMBER = {
|
|
'id': '123',
|
|
'resource_id': '456',
|
|
'resource_type': 'workflow',
|
|
'project_id': 'dc4ffdee54d74028b19b1b90e77aa84f',
|
|
'member_id': '04f61e967fa14cd49950ffe2319317ad',
|
|
'status': 'pending',
|
|
}
|
|
|
|
WORKFLOW_MEMBERS_URL = '/workflows/%s/members' % (MEMBER['resource_id'])
|
|
WORKFLOW_MEMBER_URL = '/workflows/%s/members/%s' % (
|
|
MEMBER['resource_id'], MEMBER['member_id']
|
|
)
|
|
|
|
|
|
class TestWorkflowMembers(base.BaseClientV2Test):
|
|
def test_create(self):
|
|
self.requests_mock.post(self.TEST_URL + WORKFLOW_MEMBERS_URL,
|
|
json=MEMBER,
|
|
status_code=201)
|
|
|
|
mb = self.members.create(
|
|
MEMBER['resource_id'],
|
|
MEMBER['resource_type'],
|
|
MEMBER['member_id']
|
|
)
|
|
|
|
self.assertIsNotNone(mb)
|
|
|
|
self.assertDictEqual({'member_id': MEMBER['member_id']},
|
|
self.requests_mock.last_request.json())
|
|
|
|
def test_update(self):
|
|
updated_member = copy.copy(MEMBER)
|
|
updated_member['status'] = 'accepted'
|
|
|
|
self.requests_mock.put(self.TEST_URL + WORKFLOW_MEMBER_URL,
|
|
json=updated_member)
|
|
|
|
mb = self.members.update(
|
|
MEMBER['resource_id'],
|
|
MEMBER['resource_type'],
|
|
MEMBER['member_id']
|
|
)
|
|
|
|
self.assertIsNotNone(mb)
|
|
|
|
self.assertDictEqual({"status": "accepted"},
|
|
self.requests_mock.last_request.json())
|
|
|
|
def test_list(self):
|
|
self.requests_mock.get(self.TEST_URL + WORKFLOW_MEMBERS_URL,
|
|
json={'members': [MEMBER]})
|
|
|
|
mbs = self.members.list(MEMBER['resource_id'], MEMBER['resource_type'])
|
|
|
|
self.assertEqual(1, len(mbs))
|
|
|
|
def test_get(self):
|
|
self.requests_mock.get(self.TEST_URL + WORKFLOW_MEMBER_URL,
|
|
json=MEMBER)
|
|
|
|
mb = self.members.get(
|
|
MEMBER['resource_id'],
|
|
MEMBER['resource_type'],
|
|
MEMBER['member_id']
|
|
)
|
|
|
|
self.assertIsNotNone(mb)
|
|
|
|
def test_delete(self):
|
|
self.requests_mock.delete(self.TEST_URL + WORKFLOW_MEMBER_URL,
|
|
status_code=204)
|
|
self.members.delete(
|
|
MEMBER['resource_id'],
|
|
MEMBER['resource_type'],
|
|
MEMBER['member_id']
|
|
)
|