forked from apache/trafficcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Api contract test case for asns endpoint (apache#7554)
* Added asns TC * Added asns Api contract test case * Changed comments
- Loading branch information
1 parent
530696d
commit 6b3aa45
Showing
5 changed files
with
148 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -213,5 +213,11 @@ | |
"protocol": "http", | ||
"tenantId": 1 | ||
} | ||
], | ||
"asns": [ | ||
{ | ||
"asn": 1, | ||
"cachegroupId": 10 | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"user": "admin", | ||
"password": "twelve", | ||
"password": "twelve12", | ||
"url": "https://localhost/api/4.0", | ||
"port": 443 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# | ||
# 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. | ||
# | ||
|
||
"""API Contract Test Case for asns endpoint.""" | ||
import logging | ||
from typing import Union | ||
|
||
import pytest | ||
import requests | ||
from jsonschema import validate | ||
|
||
from trafficops.tosession import TOSession | ||
|
||
# Create and configure logger | ||
logger = logging.getLogger() | ||
|
||
Primitive = Union[bool, int, float, str, None] | ||
|
||
def test_asn_contract(to_session: TOSession, | ||
response_template_data: dict[str, Union[Primitive, | ||
list[Union[Primitive, dict[str, object], list[object]]], | ||
dict[object, object]]], asn_post_data: dict[str, object]) -> None: | ||
""" | ||
Test step to validate keys, values and data types from asns endpoint | ||
response. | ||
:param to_session: Fixture to get Traffic Ops session. | ||
:param response_template_data: Fixture to get response template data from a prerequisites file. | ||
:param asn_post_data: Fixture to get sample asn data and actual asn response. | ||
""" | ||
# validate asn keys from asns get response | ||
logger.info("Accessing /asns endpoint through Traffic ops session.") | ||
|
||
asn_id = asn_post_data.get("id") | ||
if not isinstance(asn_id, int): | ||
raise TypeError("malformed asn in prerequisite data; 'asn_id' not a integer") | ||
|
||
asn_get_response: tuple[ | ||
Union[dict[str, object], list[Union[dict[str, object], list[object], Primitive]], Primitive], | ||
requests.Response | ||
] = to_session.get_asns(query_params={"id": asn_id}) | ||
try: | ||
asn_data = asn_get_response[0] | ||
if not isinstance(asn_data, list): | ||
raise TypeError("malformed API response; 'response' property not an array") | ||
|
||
first_asn = asn_data[0] | ||
if not isinstance(first_asn, dict): | ||
raise TypeError("malformed API response; first asn in response is not an dict") | ||
logger.info("asn Api get response %s", first_asn) | ||
|
||
asn_response_template = response_template_data.get("asns") | ||
if not isinstance(asn_response_template, dict): | ||
raise TypeError( | ||
f"asn response template data must be a dict, not '{type(asn_response_template)}'") | ||
|
||
# validate asn values from prereq data in asns get response. | ||
prereq_values = asn_post_data["asn"] | ||
get_values = first_asn["asn"] | ||
|
||
assert validate(instance=first_asn, schema=asn_response_template) is None | ||
assert get_values == prereq_values | ||
except IndexError: | ||
logger.error("Either prerequisite data or API response was malformed") | ||
pytest.fail("API contract test failed for asns endpoint: API response was malformed") | ||
finally: | ||
# Delete asn after test execution to avoid redundancy. | ||
asn_id = asn_post_data.get("id") | ||
if to_session.delete_asn(query_params={"id": asn_id}) is None: | ||
logger.error("asn returned by Traffic Ops is missing an 'id' property") | ||
pytest.fail("Response from delete request is empty, Failing test_asn_contract") | ||
|
||
cachegroup_id = asn_post_data.get("cachegroupId") | ||
if to_session.delete_cachegroups(cache_group_id=cachegroup_id) is None: | ||
logger.error("Cachegroup returned by Traffic Ops is missing an 'id' property") | ||
pytest.fail("Response from delete request is empty, Failing test_asn_contract") |