From 688de372de459440cfa16020508cac7a44c62159 Mon Sep 17 00:00:00 2001 From: ayalaben Date: Thu, 23 Aug 2018 13:38:49 +0300 Subject: Search Workflow by name BDD test Change-Id: I759678da1864470e0d1baadb10f27c1f11918633 Issue-ID: SDC-1662 Signed-off-by: ayalaben --- workflow-bdd/features/WorkflowList.feature | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to 'workflow-bdd/features') 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 -- cgit 1.2.3-korg