summaryrefslogtreecommitdiffstats
path: root/test/vpp_papi_provider.py
diff options
context:
space:
mode:
authorPaul Vinciguerra <pvinci@vinciconsulting.com>2019-03-17 07:17:03 -0700
committerNeale Ranns <nranns@cisco.com>2019-03-18 14:06:12 +0000
commite2e8f02165f27ae04e6d20ce0c628e29271a8db6 (patch)
tree3964b43d4a5e9f0a9667993f75d799eea837ba6e /test/vpp_papi_provider.py
parentee8ba6877efb916b88255821f94ef33437724f75 (diff)
tests: Deprecate the use of CLI commands in tests.
Since the stated policy regarding CLI commands is: "Note that the debug CLI is a developer's tool - no warranty express or implied - and that we may choose not to fix debug CLI bugs.", this change emits a deprecation warning whenever a test case calls a CLI command. Change-Id: I91b30e86ae1b2fca36732837f36cdda762cdf458 Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/vpp_papi_provider.py')
-rw-r--r--test/vpp_papi_provider.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py
index bce8336de05..98fbb2f9723 100644
--- a/test/vpp_papi_provider.py
+++ b/test/vpp_papi_provider.py
@@ -9,8 +9,10 @@ import os
import time
from collections import deque
+import deprecation
from six import moves, iteritems
from vpp_papi import VPP, mac_pton
+
from hook import Hook
from vpp_l2 import L2_PORT_TYPE
@@ -390,6 +392,9 @@ class VppPapiProvider(object):
self.hook.after_api(api_fn.__name__, api_args)
return reply
+ @deprecation.deprecated(
+ deprecated_in="19.04", removed_in="19.07",
+ details="Use the Corresponding API function instead.")
def cli(self, cli):
""" Execute a CLI, calling the before/after hooks appropriately.