mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
* 1.14: [Behat] Temporarily add todo tag to problematic scenarios [Behat] Make scenario for adding a promotion in different language non javascript [Behat] Make scenario for adding a promotion with too long label non javascript
118 lines
5.4 KiB
Gherkin
118 lines
5.4 KiB
Gherkin
@managing_promotions
|
|
Feature: Promotion validation
|
|
In order to avoid making mistakes when managing a promotion
|
|
As an Administrator
|
|
I want to be prevented from adding it without specifying required fields
|
|
|
|
Background:
|
|
Given the store operates on a single channel in "United States"
|
|
And that channel allows to shop using "English (United States)" and "Polish (Poland)" locales
|
|
And I am logged in as an administrator
|
|
|
|
@api @no-ui
|
|
Scenario: Trying to add promotion with translation in unexisting locale
|
|
Given there is a promotion "Christmas sale"
|
|
When I want to modify this promotion
|
|
And I specify its label as "Vente de Noël" in "French (France)" locale
|
|
And I try to save my changes
|
|
Then I should be notified that the locale is not available
|
|
|
|
@api @ui
|
|
Scenario: Trying to add a new promotion without specifying its code
|
|
When I want to create a new promotion
|
|
And I name it "No-VAT promotion"
|
|
And I do not specify its code
|
|
And I try to add it
|
|
Then I should be notified that code is required
|
|
And promotion with name "No-VAT promotion" should not be added
|
|
|
|
@api @ui
|
|
Scenario: Trying to add a new promotion with a too long code
|
|
When I want to create a new promotion
|
|
And I name it "No-VAT promotion"
|
|
And I specify a too long code
|
|
And I try to add it
|
|
Then I should be notified that code is too long
|
|
|
|
@api @ui
|
|
Scenario: Trying to add a new promotion without specifying its name
|
|
When I want to create a new promotion
|
|
And I specify its code as "no_vat_promotion"
|
|
But I do not name it
|
|
And I try to add it
|
|
Then I should be notified that name is required
|
|
And promotion with code "no_vat_promotion" should not be added
|
|
|
|
@api @ui
|
|
Scenario: Adding a promotion with start date set up after end date
|
|
When I want to create a new promotion
|
|
And I specify its code as "FULL_METAL_PROMOTION"
|
|
And I name it "Full metal promotion"
|
|
And I make it available from "24.12.2017" to "12.12.2017"
|
|
And I try to add it
|
|
Then I should be notified that promotion cannot end before it starts
|
|
|
|
@api @ui
|
|
Scenario: Trying to remove name from existing promotion
|
|
Given there is a promotion "Christmas sale"
|
|
When I want to modify this promotion
|
|
And I remove its name
|
|
And I try to save my changes
|
|
Then I should be notified that name is required
|
|
And this promotion should still be named "Christmas sale"
|
|
|
|
@api @ui
|
|
Scenario: Trying to add start later then end date for existing promotion
|
|
Given there is a promotion "Christmas sale"
|
|
When I want to modify this promotion
|
|
And I make it available from "24.12.2017" to "12.12.2017"
|
|
And I try to save my changes
|
|
Then I should be notified that promotion cannot end before it starts
|
|
|
|
@api @ui
|
|
Scenario: Adding a promotion with label exceeding 255 characters
|
|
Given there is a promotion "Christmas sale"
|
|
When I want to modify this promotion
|
|
And I replace its label with a string exceeding the limit in "Polish (Poland)" locale
|
|
And I try to save my changes
|
|
Then I should be notified that promotion label in "Polish (Poland)" locale is too long
|
|
|
|
@api @ui @mink:chromedriver
|
|
Scenario: Trying to add a new promotion without specifying an order percentage discount
|
|
When I want to create a new promotion
|
|
And I specify its code as "christmas_sale"
|
|
And I name it "Christmas sale"
|
|
And I add the "Order percentage discount" action configured without a percentage value
|
|
And I try to add it
|
|
Then I should be notified that this value should not be blank
|
|
And promotion with name "Christmas sale" should not be added
|
|
|
|
@api @ui @mink:chromedriver
|
|
Scenario: Trying to add a new promotion without specifying an item percentage discount
|
|
When I want to create a new promotion
|
|
And I specify its code as "christmas_sale"
|
|
And I name it "Christmas sale"
|
|
And I add the "Item percentage discount" action configured without a percentage value for "United States" channel
|
|
And I try to add it
|
|
Then I should be notified that this value should not be blank
|
|
And promotion with name "Christmas sale" should not be added
|
|
|
|
@api @ui @mink:chromedriver
|
|
Scenario: Trying to add a new promotion with a wrong order percentage discount
|
|
When I want to create a new promotion
|
|
And I specify its code as "christmas_sale"
|
|
And I name it "Christmas sale"
|
|
And I add the "Order percentage discount" action configured with a percentage value of "120%"
|
|
And I try to add it
|
|
Then I should be notified that a percentage discount value must be between 0% and 100%
|
|
And promotion with name "Christmas sale" should not be added
|
|
|
|
@api @ui @mink:chromedriver
|
|
Scenario: Trying to add a new promotion with a wrong item percentage discount
|
|
When I want to create a new promotion
|
|
And I specify its code as "christmas_sale"
|
|
And I name it "Christmas sale"
|
|
And I add the "Item percentage discount" action configured with a percentage value of "130%" for "United States" channel
|
|
And I try to add it
|
|
Then I should be notified that a percentage discount value must be between 0% and 100%
|
|
And promotion with name "Christmas sale" should not be added
|