Wifi 12468 (#833)

* Added 4 Security Services Rest API Tests cases

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>

* Added test cases for security_profiles, Authenticator QR Code

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>

* Added CRUD User and CRUD subuser test cases

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>

* Removed print

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>

* Added headers in PUT method

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>

* Removed systemConfiguration API test case

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>

* Added ow_sanity_lf marker only in sanity test cases

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>

---------

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>
This commit is contained in:
jitendracandela
2023-07-11 17:28:09 +05:30
committed by GitHub
parent a249728715
commit db2e9fa208
2 changed files with 208 additions and 9 deletions

View File

@@ -99,7 +99,7 @@ class ConfigureController:
resp = requests.post(uri, params=params, data=payload, headers=self.make_headers(), verify=False,
timeout=120)
elif method == "PUT":
resp = requests.put(uri, params=params, data=payload, verify=False, timeout=120)
resp = requests.put(uri, params=params, data=payload, headers=self.make_headers(), verify=False, timeout=120)
elif method == "DELETE":
resp = requests.delete(uri, headers=self.make_headers(), params=params, verify=False, timeout=120)