aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-bdd/features
diff options
context:
space:
mode:
authorayalaben <ayala.benzvi@amdocs.com>2018-08-23 13:38:49 +0300
committerayalaben <ayala.benzvi@amdocs.com>2018-08-23 13:38:49 +0300
commit688de372de459440cfa16020508cac7a44c62159 (patch)
treefa6cf1a0e5e94515ac318e3d528e9c85db692dd3 /workflow-bdd/features
parent093c852f3cec47bbeb19a32083b1ecbb0d5b493d (diff)
Search Workflow by name BDD test
Change-Id: I759678da1864470e0d1baadb10f27c1f11918633 Issue-ID: SDC-1662 Signed-off-by: ayalaben <ayala.benzvi@amdocs.com>
Diffstat (limited to 'workflow-bdd/features')
-rw-r--r--workflow-bdd/features/WorkflowList.feature23
1 files changed, 22 insertions, 1 deletions
diff --git a/workflow-bdd/features/WorkflowList.feature b/workflow-bdd/features/WorkflowList.feature
index 3cd27a05..529f8a5c 100644
--- a/workflow-bdd/features/WorkflowList.feature
+++ b/workflow-bdd/features/WorkflowList.feature
@@ -40,6 +40,21 @@ Feature: Workflows list
And I want to update the input property "description" with value "second version"
And I want to create for path "/workflows/{item.id}/versions?baseVersionId={item.versionId}" with the input data from the context
+ Given I want to create a Workflow
+ And I want to copy to property "rand1" from response data path "name"
+ And I want to update the input property "name" with value "workflow_ss_1_{rand1}"
+ And I want to update for path "/workflows/{item.id}" with the input data from the context
+
+ Given I want to create a Workflow
+ And I want to copy to property "rand2" from response data path "name"
+ And I want to update the input property "name" with value "workflow_ss_2_{rand2}"
+ And I want to update for path "/workflows/{item.id}" with the input data from the context
+
+ Given I want to create a Workflow
+ And I want to copy to property "rand3" from response data path "name"
+ And I want to update the input property "name" with value "workflow_ss_3_{rand3}"
+ And I want to update for path "/workflows/{item.id}" with the input data from the context
+
Scenario: List all
When I want to get path "/workflows?limit=2000"
Then I want to check in the list "items" property "id" with value of saved property "noVersionsWorkflowId" exists
@@ -73,4 +88,10 @@ Feature: Workflows list
Then I want to check in the list "items" property "id" with value of saved property "noVersionsWorkflowId" does not exist
And I want to check in the list "items" property "id" with value of saved property "draftVersionWorkflowId" does not exist
And I want to check in the list "items" property "id" with value of saved property "certifiedVersionWorkflowId" does not exist
- And I want to check in the list "items" property "id" with value of saved property "draftAndCertifiedVersionWorkflowId" does not exist \ No newline at end of file
+ And I want to check in the list "items" property "id" with value of saved property "draftAndCertifiedVersionWorkflowId" does not exist
+
+ Scenario: List ones that contain 'workflow_ss' in name
+ When I want to get path "/workflows?searchNameFilter=workflow_ss&limit=2000"
+ And I want to check in the list "items" property "name" with value "workflow_ss_1_{rand1}" exists
+ And I want to check in the list "items" property "name" with value "workflow_ss_2_{rand2}" exists
+ And I want to check in the list "items" property "name" with value "workflow_ss_3_{rand3}" exists \ No newline at end of file