aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/policy
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2017-10-10 19:50:44 +0000
committerPamela Dragosh <pdragosh@research.att.com>2017-10-10 20:03:58 +0000
commit6dc696f5d6adc6cdfa8dad053cd2def1ce56a025 (patch)
tree1aa6a7dcc3324f7ebb716603cc5b38b09e27d997 /test/csit/tests/policy
parente162e58e082206ad17b93befea082e16cccadd60 (diff)
Reduce time spent waiting for spin up
The wait times are way too large. I've added similar script used in the docker images to wait for the port to open. Reduced overal time. Fixed API call to get Configs. Should be: ".*" not "*.*" Removed fake policy tests. Issue-ID: POLICY-299 Change-Id: I4076ef8935dd128f1e240202083ce5567e70a67b Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'test/csit/tests/policy')
-rw-r--r--test/csit/tests/policy/suite1/test1.robot30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/csit/tests/policy/suite1/test1.robot b/test/csit/tests/policy/suite1/test1.robot
deleted file mode 100644
index 10e685213..000000000
--- a/test/csit/tests/policy/suite1/test1.robot
+++ /dev/null
@@ -1,30 +0,0 @@
-*** Settings ***
-Library OperatingSystem
-Library RequestsLibrary
-
-*** Variables ***
-${MESSAGE} Hello, world!
-
-*** Test Cases ***
-String Equality Test
- Should Be Equal ${MESSAGE} Hello, world!
-
-Dir Test
- [Documentation] Check if /tmp exists
- Log ${MESSAGE}
- CheckDir /tmp
-
-Url Test
- [Documentation] Check if google.com can be reached
- CheckUrl http://www.google.com
-
-*** Keywords ***
-CheckDir
- [Arguments] ${path}
- Directory Should Exist ${path}
-
-CheckUrl
- [Arguments] ${url}
- Create Session session ${url}
- ${resp}= Get Request session /
- Should Be Equal As Integers ${resp.status_code} 200