diff options
author | xuegao <xg353y@intl.att.com> | 2020-01-09 09:46:53 +0100 |
---|---|---|
committer | xuegao <xg353y@intl.att.com> | 2020-01-09 09:46:53 +0100 |
commit | c2f5de7aeefb5c8512e1eaa9583ed6524d501da3 (patch) | |
tree | 85aeca54d2d41631b0565f4720187ff566932a76 /src/test/resources | |
parent | bdd660f78f5d3067ab7fcfcfa24dc9efdaf00dd6 (diff) |
Update policy api url
Update the policy api url, triggering the pap api to get the status of
the deployed policy.
Issue-ID: CLAMP-577
Change-Id: I34222c1158d6f724c8ae740fec81f2085ef91bd0
Signed-off-by: xuegao <xg353y@intl.att.com>
Diffstat (limited to 'src/test/resources')
-rwxr-xr-x | src/test/resources/http-cache/third_party_proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/resources/http-cache/third_party_proxy.py b/src/test/resources/http-cache/third_party_proxy.py index 5ec9f46c..9dcc4b3a 100755 --- a/src/test/resources/http-cache/third_party_proxy.py +++ b/src/test/resources/http-cache/third_party_proxy.py @@ -237,7 +237,7 @@ class Proxy(SimpleHTTPServer.SimpleHTTPRequestHandler): with open(cached_file_content, 'w+') as f: f.write(self.data_string) return True - elif self.path.startswith("/policy/api/v1/policytypes/") and http_type == "GET": + elif (self.path.startswith("/policy/api/v1/policytypes/") or self.path.startswith("/policy/pap/v1/policies/deployed/")) and http_type == "GET": print "self.path start with /policy/api/v1/policytypes/, generating response json..." jsonGenerated = "{\"policyTypeId\": \"onap.policies.controlloop.operational\",\"policyTypeVersion\": \"1.0.0\",\"policyId\": \"OPERATIONAL_z711F_v1_0_ResourceInstanceName1_tca\"}" print "jsonGenerated: " + jsonGenerated |