[Behat][Taxon] Add tests for parent aware slug generation

This commit is contained in:
Jan Goralski 2023-08-11 15:01:59 +02:00
parent bafd4ff32b
commit c3a47fbbb4
No known key found for this signature in database
GPG key ID: 95D91BA380F31EDD

View file

@ -26,7 +26,7 @@ Feature: Editing taxon's slug
Then this taxon slug should be "mw"
@ui @javascript
Scenario: Creating a taxon with an autogenerated slug for parent
Scenario: Creating a child taxon with an autogenerated slug
Given the store has "Medieval weapons" taxonomy
When I want to create a new taxon for "Medieval weapons"
And I specify its code as "SIEGE_ENGINES"
@ -35,7 +35,7 @@ Feature: Editing taxon's slug
Then this taxon slug should be "medieval-weapons/siege-engines"
@ui
Scenario: Creating a taxon with a custom slug for parent
Scenario: Creating a child taxon with a custom slug
Given the store has "Medieval weapons" taxonomy
When I want to create a new taxon for "Medieval weapons"
And I specify its code as "SIEGE_ENGINES"
@ -59,7 +59,7 @@ Feature: Editing taxon's slug
Then the slug of the "Renaissance weapons" taxon should still be "medieval-weapons"
@ui @javascript
Scenario: Automatically changing a taxon's slug while editing a taxon's name
Scenario: Automatically changing a root taxon's slug while editing a taxon's name
Given the store has "Medieval weapons" taxonomy
When I want to modify the "Medieval weapons" taxon
And I enable slug modification
@ -68,7 +68,17 @@ Feature: Editing taxon's slug
Then the slug of the "Renaissance weapons" taxon should be "renaissance-weapons"
@ui @javascript
Scenario: Manually changing a taxon's slug while editing a taxon's name
Scenario: Automatically changing a child taxon's slug while editing a taxon's name
Given the store has "Medieval weapons" taxonomy
And the "Medieval weapons" taxon has child taxon "Pikes"
When I want to modify the "Pikes" taxon
And I enable slug modification
And I rename it to "Javelins" in "English (United States)"
And I save my changes
Then the slug of the "Javelins" taxon should be "medieval-weapons/javelins"
@ui @javascript
Scenario: Manually changing a root taxon's slug while editing a taxon's name
Given the store has "Medieval weapons" taxonomy
When I want to modify the "Medieval weapons" taxon
And I enable slug modification
@ -77,4 +87,13 @@ Feature: Editing taxon's slug
And I save my changes
Then the slug of the "Renaissance weapons" taxon should be "renaissance"
@ui @javascript
Scenario: Manually changing a child taxon's slug while editing a taxon's name
Given the store has "Medieval weapons" taxonomy
And the "Medieval weapons" taxon has child taxon "Pikes"
When I want to modify the "Pikes" taxon
And I enable slug modification
And I rename it to "Javelins" in "English (United States)"
And I set its slug to "javelins" in "English (United States)"
And I save my changes
Then the slug of the "Javelins" taxon should be "javelins"