diff options
author | ehautot <eh552t@intl.att.com> | 2018-02-23 12:36:37 +0100 |
---|---|---|
committer | ehautot <eh552t@intl.att.com> | 2018-02-26 11:02:17 +0100 |
commit | af8aad211786393c3505c7649cc18c88195b8f45 (patch) | |
tree | cd9c5636538b82eb3d9e13b1791ec4b2fac8d142 /test/csit/tests/clamp/APIs/03__VariousApis.robot | |
parent | 907b60a30d7bcd33a1330a7cfadf35527605fe31 (diff) |
Fix clamp integration APIs due to code change
Change-Id: I6537143329a8bd16c7648a07d5a00fb76d0d8130
Signed-off-by: ehautot <eh552t@intl.att.com>
Issue-ID: CLAMP-100
Diffstat (limited to 'test/csit/tests/clamp/APIs/03__VariousApis.robot')
-rw-r--r-- | test/csit/tests/clamp/APIs/03__VariousApis.robot | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/csit/tests/clamp/APIs/03__VariousApis.robot b/test/csit/tests/clamp/APIs/03__VariousApis.robot index 85782a28e..47441e894 100644 --- a/test/csit/tests/clamp/APIs/03__VariousApis.robot +++ b/test/csit/tests/clamp/APIs/03__VariousApis.robot @@ -23,7 +23,7 @@ Get Clamp Info Get model bpmn by name ${auth}= Create List admin 5f4dcc3b5aa765d61d8327deb882cf99 Create Session clamp http://localhost:8080 auth=${auth} - ${resp}= Get Request clamp /restservices/clds/v1/clds/model/bpmn/HolmesModel1 + ${resp}= Get Request clamp /restservices/clds/v1/clds/model/bpmn/ClHolmes1 Should Contain Match ${resp} *StartEvent_* Should Contain Match ${resp} *VesCollector_* Should Contain Match ${resp} *Holmes_* @@ -33,7 +33,7 @@ Get model bpmn by name Get model by name ${auth}= Create List admin 5f4dcc3b5aa765d61d8327deb882cf99 Create Session clamp http://localhost:8080 auth=${auth} - ${resp}= Get Request clamp /restservices/clds/v1/clds/model/HolmesModel1 + ${resp}= Get Request clamp /restservices/clds/v1/clds/model/ClHolmes1 Dictionary Should Contain Key ${resp.json()} templateName Dictionary Should Contain Key ${resp.json()} bpmnText Dictionary Should Contain Key ${resp.json()} imageText @@ -42,5 +42,9 @@ Get model names ${auth}= Create List admin 5f4dcc3b5aa765d61d8327deb882cf99 Create Session clamp http://localhost:8080 auth=${auth} ${resp}= Get Request clamp /restservices/clds/v1/clds/model-names - Should Contain Match ${resp} *HolmesModel1* - Should Not Contain Match ${resp} *model99*
\ No newline at end of file + Should Contain Match ${resp} *ClHolmes1* + Should Contain Match ${resp} *ClHolmes2* + Should Contain Match ${resp} *ClTCA1* + Should Contain Match ${resp} *ClTCA2* + Should Not Contain Match ${resp} *ClHolmes99* + Should Not Contain Match ${resp} *ClTCA99* |