-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from catenax-ng/main
Adjusted cucumber test action not to duplicate execution of repository and jira downloaded feature files
- Loading branch information
Showing
5 changed files
with
60 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
tx-cucumber-tests/src/test/resources/features/2_TRACEFOSS-608.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
@TRACEFOSS-608 | ||
Feature: ⭐[TEST] [BE] Set and show notification target date | ||
#*As a* User | ||
#*I want to* be able to set a target date for my notification while creating it | ||
#*so that* I am able to monitor if a reply was given in time. | ||
# | ||
#h2. Hints | ||
#[Concept | https://confluence.catena-x.net/pages/viewpage.action?pageId=69429778] | ||
|
||
#Check if *targetDate* is processed correctly for created quality investigations which contains following checks: | ||
#* correct sending of _targetDate_ | ||
#* correct reception on receiver side | ||
@TRACEFOSS-1216 @TRACEFOSS-1673 @TRACEFOSS-1139 @TRACEFOSS-1138 @TRACEFOSS-1101 @INTEGRATION_TEST | ||
Scenario: [BE] Check correct processing of targetDate in quality investigation | ||
When I am logged into TRACE_X_A application | ||
And I create quality investigation | ||
| "severity" | "MINOR" | | ||
| "description" | "Testing targetDate TRACEFOSS-1216" | | ||
| "targetDate" | "2099-03-11T22:44:06.333827Z" | | ||
Then I check, if quality investigation has proper values | ||
| "description" | "Testing targetDate TRACEFOSS-1216" | | ||
| "targetDate" | "2099-03-11T22:44:06.333827Z" | | ||
| "status" | "CREATED" | | ||
When I approve quality investigation | ||
Then I check, if quality investigation has proper values | ||
| "status" | "SENT" | | ||
When I am logged into TRACE_X_B application | ||
Then I check, if quality investigation has been received | ||
Then I check, if quality investigation has proper values | ||
| "description" | "Testing targetDate TRACEFOSS-1216" | | ||
| "targetDate" | "2099-03-11T22:44:06.333827Z" | | ||
| "status" | "RECEIVED" | |