qinling/qinling/tests/unit/api/controllers/v1/test_webhook.py

111 lines
3.8 KiB
Python

# Copyright 2018 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.
from qinling.db import api as db_api
from qinling.tests.unit.api import base
class TestWebhookController(base.APITest):
def setUp(self):
super(TestWebhookController, self).setUp()
db_func = self.create_function()
self.func_id = db_func.id
def test_crud(self):
# Create
body = {
'function_id': self.func_id,
'description': 'webhook test'
}
resp = self.app.post_json('/v1/webhooks', body)
self.assertEqual(201, resp.status_int)
webhook_id = resp.json.get('id')
self.assertIn(self.qinling_endpoint, resp.json.get('webhook_url'))
# Get
resp = self.app.get('/v1/webhooks/%s' % webhook_id)
self.assertEqual(200, resp.status_int)
self._assertDictContainsSubset(resp.json, body)
# List
resp = self.app.get('/v1/webhooks')
self.assertEqual(200, resp.status_int)
actual = self._assert_single_item(
resp.json['webhooks'], id=webhook_id
)
self._assertDictContainsSubset(actual, body)
# Update
resp = self.app.put_json(
'/v1/webhooks/%s' % webhook_id,
{'description': 'webhook test update'}
)
self.assertEqual(200, resp.status_int)
expected = {
'function_id': self.func_id,
'description': 'webhook test update'
}
resp = self.app.get('/v1/webhooks/%s' % webhook_id)
self.assertEqual(200, resp.status_int)
self._assertDictContainsSubset(resp.json, expected)
# Delete
resp = self.app.delete('/v1/webhooks/%s' % webhook_id)
self.assertEqual(204, resp.status_int)
resp = self.app.get('/v1/webhooks/%s' % webhook_id, expect_errors=True)
self.assertEqual(404, resp.status_int)
def test_post_with_version(self):
db_api.increase_function_version(self.func_id, 0)
body = {
'function_id': self.func_id,
'function_version': 1,
'description': 'webhook test'
}
resp = self.app.post_json('/v1/webhooks', body)
self.assertEqual(201, resp.status_int)
self.assertEqual(1, resp.json.get("function_version"))
def test_put_with_version(self):
db_api.increase_function_version(self.func_id, 0)
webhook = self.create_webhook(self.func_id)
self.assertEqual(0, webhook.function_version)
resp = self.app.put_json(
'/v1/webhooks/%s' % webhook.id,
{'function_version': 1}
)
self.assertEqual(200, resp.status_int)
self.assertEqual(1, resp.json.get("function_version"))
def test_put_without_version(self):
db_api.increase_function_version(self.func_id, 0)
webhook = self.create_webhook(self.func_id, function_version=1)
self.assertEqual(1, webhook.function_version)
resp = self.app.put_json(
'/v1/webhooks/%s' % webhook.id,
{'description': 'updated description'}
)
self.assertEqual(200, resp.status_int)
self.assertEqual(1, resp.json.get("function_version"))
self.assertEqual('updated description', resp.json.get("description"))