added test for service_callback_api rest

This commit is contained in:
venusbb
2017-11-29 17:27:57 +00:00
parent a628834a2b
commit 02f8ad4db2
3 changed files with 93 additions and 13 deletions

View File

@@ -42,7 +42,7 @@ def create_service_inbound_api(service_id):
try: try:
save_service_inbound_api(inbound_api) save_service_inbound_api(inbound_api)
except SQLAlchemyError as e: except SQLAlchemyError as e:
return handle_sql_error(e) return handle_sql_error(e, 'service_inbound_api')
return jsonify(data=inbound_api.serialize()), 201 return jsonify(data=inbound_api.serialize()), 201
@@ -77,7 +77,7 @@ def create_service_callback_api(service_id):
try: try:
save_service_callback_api(callback_api) save_service_callback_api(callback_api)
except SQLAlchemyError as e: except SQLAlchemyError as e:
return handle_sql_error(e) return handle_sql_error(e, 'service_callback_api')
return jsonify(data=callback_api.serialize()), 201 return jsonify(data=callback_api.serialize()), 201
@@ -103,17 +103,17 @@ def fetch_service_callback_api(service_id, callback_api_id):
return jsonify(data=callback_api.serialize()), 200 return jsonify(data=callback_api.serialize()), 200
def handle_sql_error(e): def handle_sql_error(e, table_name):
if hasattr(e, 'orig') and hasattr(e.orig, 'pgerror') and e.orig.pgerror \ if hasattr(e, 'orig') and hasattr(e.orig, 'pgerror') and e.orig.pgerror \
and ('duplicate key value violates unique constraint "ix_service_callback_api_service_id"' and ('duplicate key value violates unique constraint "ix_{}_service_id"'.format(table_name)
in e.orig.pgerror): in e.orig.pgerror):
return jsonify( return jsonify(
result='error', result='error',
message={'name': ["You can only have one URL and bearer token for your service."]} message={'name': ["You can only have one URL and bearer token for your service."]}
), 400 ), 400
elif hasattr(e, 'orig') and hasattr(e.orig, 'pgerror') and e.orig.pgerror \ elif hasattr(e, 'orig') and hasattr(e.orig, 'pgerror') and e.orig.pgerror \
and ('insert or update on table "service_callback_api" violates ' and ('insert or update on table "{0}" violates '
'foreign key constraint "service_callback_api_service_id_fkey"' 'foreign key constraint "{0}_service_id_fkey"'.format(table_name)
in e.orig.pgerror): in e.orig.pgerror):
return jsonify(result='error', message="No result found"), 404 return jsonify(result='error', message="No result found"), 404
else: else:

View File

@@ -5,6 +5,7 @@ from tests import create_authorization_header
from tests.app.db import ( from tests.app.db import (
create_service_inbound_api, create_service_inbound_api,
create_service_callback_api
) )
@@ -84,3 +85,81 @@ def test_fetch_service_inbound_api(client, sample_service):
assert response.status_code == 200 assert response.status_code == 200
assert json.loads(response.get_data(as_text=True))["data"] == service_inbound_api.serialize() assert json.loads(response.get_data(as_text=True))["data"] == service_inbound_api.serialize()
def test_create_service_callback_api(client, sample_service):
data = {
"url": "https://some_service/callback-endpoint",
"bearer_token": "some-unique-string",
"updated_by_id": str(sample_service.users[0].id)
}
response = client.post(
'/service/{}/service-callback-api'.format(sample_service.id),
data=json.dumps(data),
headers=[('Content-Type', 'application/json'), create_authorization_header()]
)
assert response.status_code == 201
resp_json = json.loads(response.get_data(as_text=True))["data"]
assert resp_json["id"]
assert resp_json["service_id"] == str(sample_service.id)
assert resp_json["url"] == "https://some_service/callback-endpoint"
assert resp_json["updated_by_id"] == str(sample_service.users[0].id)
assert resp_json["created_at"]
assert not resp_json["updated_at"]
def test_set_service_callback_api_raises_404_when_service_does_not_exist(client, notify_db_session):
data = {
"url": "https://some_service/service-callback-endpoint",
"bearer_token": "some-unique-string",
"updated_by_id": str(uuid.uuid4())
}
response = client.post(
'/service/{}/service-callback-api'.format(uuid.uuid4()),
data=json.dumps(data),
headers=[('Content-Type', 'application/json'), create_authorization_header()]
)
assert response.status_code == 404
assert json.loads(response.get_data(as_text=True))['message'] == 'No result found'
def test_update_service_callback_api_updates_url(client, sample_service):
service_callback_api = create_service_callback_api(service=sample_service,
url="https://original_url.com")
data = {
"url": "https://another_url.com",
"updated_by_id": str(sample_service.users[0].id)
}
response = client.post("/service/{}/service-callback-api/{}".format(sample_service.id, service_callback_api.id),
data=json.dumps(data),
headers=[('Content-Type', 'application/json'), create_authorization_header()])
assert response.status_code == 200
resp_json = json.loads(response.get_data(as_text=True))["data"]
assert resp_json["url"] == "https://another_url.com"
assert service_callback_api.url == "https://another_url.com"
def test_update_service_callback_api_updates_bearer_token(client, sample_service):
service_callback_api = create_service_callback_api(service=sample_service,
bearer_token="some_super_secret")
data = {
"bearer_token": "different_token",
"updated_by_id": str(sample_service.users[0].id)
}
response = client.post("/service/{}/service-callback-api/{}".format(sample_service.id, service_callback_api.id),
data=json.dumps(data),
headers=[('Content-Type', 'application/json'), create_authorization_header()])
assert response.status_code == 200
assert service_callback_api.bearer_token == "different_token"
def test_fetch_service_callback_api(client, sample_service):
service_callback_api = create_service_callback_api(service=sample_service)
response = client.get("/service/{}/service-callback-api/{}".format(sample_service.id, service_callback_api.id),
headers=[create_authorization_header()])
assert response.status_code == 200
assert json.loads(response.get_data(as_text=True))["data"] == service_callback_api.serialize()

View File

@@ -5,41 +5,42 @@ import pytest
from jsonschema import ValidationError from jsonschema import ValidationError
from app.schema_validation import validate from app.schema_validation import validate
from app.service.service_inbound_api_schema import service_inbound_api from app.service.service_callback_api_schema import (
update_service_callback_api_schema)
def test_service_inbound_api_schema_validates(): def test_service_callback_api_schema_validates():
under_test = {"url": "https://some_url.for_service", under_test = {"url": "https://some_url.for_service",
"bearer_token": "something_ten_chars", "bearer_token": "something_ten_chars",
"updated_by_id": str(uuid.uuid4()) "updated_by_id": str(uuid.uuid4())
} }
validated = validate(under_test, service_inbound_api) validated = validate(under_test, update_service_callback_api_schema)
assert validated == under_test assert validated == under_test
@pytest.mark.parametrize("url", ["not a url", "https not a url", "http://valid.com"]) @pytest.mark.parametrize("url", ["not a url", "https not a url", "http://valid.com"])
def test_service_inbound_api_schema_errors_for_url_not_valid_url(url): def test_service_callback_api_schema_errors_for_url_not_valid_url(url):
under_test = {"url": url, under_test = {"url": url,
"bearer_token": "something_ten_chars", "bearer_token": "something_ten_chars",
"updated_by_id": str(uuid.uuid4()) "updated_by_id": str(uuid.uuid4())
} }
with pytest.raises(ValidationError) as e: with pytest.raises(ValidationError) as e:
validate(under_test, service_inbound_api) validate(under_test, update_service_callback_api_schema)
errors = json.loads(str(e.value)).get('errors') errors = json.loads(str(e.value)).get('errors')
assert len(errors) == 1 assert len(errors) == 1
assert errors[0]['message'] == "url is not a valid https url" assert errors[0]['message'] == "url is not a valid https url"
def test_service_inbound_api_schema_bearer_token_under_ten_char(): def test_service_callback_api_schema_bearer_token_under_ten_char():
under_test = {"url": "https://some_url.for_service", under_test = {"url": "https://some_url.for_service",
"bearer_token": "shorty", "bearer_token": "shorty",
"updated_by_id": str(uuid.uuid4()) "updated_by_id": str(uuid.uuid4())
} }
with pytest.raises(ValidationError) as e: with pytest.raises(ValidationError) as e:
validate(under_test, service_inbound_api) validate(under_test, update_service_callback_api_schema)
errors = json.loads(str(e.value)).get('errors') errors = json.loads(str(e.value)).get('errors')
assert len(errors) == 1 assert len(errors) == 1
assert errors[0]['message'] == "bearer_token shorty is too short" assert errors[0]['message'] == "bearer_token shorty is too short"