gokulakrishnansvm commented on code in PR #7400:
URL: https://github.com/apache/trafficcontrol/pull/7400#discussion_r1144019078
##########
traffic_ops/testing/api_contract/v4/to_data.json:
##########
@@ -0,0 +1,8 @@
+{
+ "test": {
Review Comment:
Removed the test, Until now there are no plans to add other top-level
properties.
##########
traffic_ops/testing/api_contract/v4/conftest.py:
##########
@@ -0,0 +1,122 @@
+#
+# 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.
+#
+
+"""This module is used to create a Traffic Ops session
+and to store prerequisite data for endpoints."""
+import json
+import logging
+import sys
+from random import randint
+from urllib.parse import urlparse
+import pytest
+from trafficops.tosession import TOSession
+from trafficops.restapi import OperationError
+
+
+# Create and configure logger
+logger = logging.getLogger()
+
+
+def pytest_addoption(parser: object) -> None:
+ """Passing in Traffic Ops arguments [Username, Password, Url and Hostname]
from command line.
+ :param parser: Parser to parse command line arguments
+ """
+ parser.addoption(
+ "--to-user", action="store", help="User name for Traffic Ops Session."
+ )
+ parser.addoption(
+ "--to-password", action="store", help="Password for Traffic Ops
Session."
+ )
+ parser.addoption(
+ "--to-url", action="store", help="Traffic Ops URL."
+ )
+
+
[email protected](name="to_args")
+def to_data(pytestconfig: pytest.Config) -> dict:
Review Comment:
Added ArgsType class.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]