Rev 1 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
@core @core_tag @core_reportbuilderFeature: Users can edit tags to add description or renameIn order to use tagsAs a managerI need to be able to edit tagsBackground:Given the following "users" exist:| username | firstname | lastname | email | interests || manager1 | Manager | 1 | manager1@example.com | || user1 | User | One | user1@example.com | Cat,Dog,Turtle || user2 | User | Two | user2@example.com | || editor1 | Editor | 1 | editor1@example.com | |And the following "roles" exist:| name | shortname || Tag editor | tageditor |And the following "system role assigns" exist:| user | course | role || manager1 | Acceptance test site | manager || editor1 | Acceptance test site | tageditor |And the following "tags" exist:| name | isstandard || Neverusedtag | 1 |@javascriptScenario: User with tag editing capability can change tag descriptionGiven the following "role capability" exists:| role | tageditor || moodle/tag:edit | allow || moodle/site:viewparticipants | allow || moodle/user:viewdetails | allow |When I log in as "editor1"And I turn editing mode onAnd the following config values are set as admin:| unaddableblocks | | theme_boost|# TODO MDL-57120 site "Tags" link not accessible without navigation block.And I add the "Navigation" block if not presentAnd I click on "Site pages" "list_item" in the "Navigation" "block"And I click on "Tags" "link" in the "Navigation" "block"And I follow "Turtle"And I follow "User One"And I follow "Cat"And I follow "Edit this tag"And I should not see "Tag name"And I should not see "Standard"And I set the following fields to these values:| Description | Description of tag 1 || Related tags | Dog, Turtle,Fish |And I press "Update"Then "Cat" "text" should exist in the ".breadcrumb" "css_element"And "Description of tag 1" "text" should exist in the ".tag-description" "css_element"And I should see "Related tags:" in the ".tag_list" "css_element"And I should see "Dog" in the ".tag_list" "css_element"And I should see "Turtle" in the ".tag_list" "css_element"And I should see "Fish" in the ".tag_list" "css_element"@javascriptScenario: Manager can change tag description, related tags and rename the tag from tag view pageWhen I log in as "manager1"And I turn editing mode onAnd the following config values are set as admin:| unaddableblocks | | theme_boost|# TODO MDL-57120 site "Tags" link not accessible without navigation block.And I add the "Navigation" block if not presentAnd I click on "Site pages" "list_item" in the "Navigation" "block"And I click on "Tags" "link" in the "Navigation" "block"And I follow "Turtle"And I follow "User One"And I follow "Cat"And I follow "Edit this tag"And I set the following fields to these values:| Tag name | Kitten || Description | Description of tag 1 || Related tags | Dog, Turtle,Fish || Standard | 0 |And I press "Update"Then "Kitten" "text" should exist in the ".breadcrumb" "css_element"And "Description of tag 1" "text" should exist in the ".tag-description" "css_element"And I should see "Related tags:" in the ".tag_list" "css_element"And I should see "Dog" in the ".tag_list" "css_element"And I should see "Turtle" in the ".tag_list" "css_element"And I should see "Fish" in the ".tag_list" "css_element"And I follow "Edit this tag"And I click on "× Dog" "text"And I press "Update"Then "Kitten" "text" should exist in the ".breadcrumb" "css_element"And "Description of tag 1" "text" should exist in the ".tag-description" "css_element"And I should see "Related tags:" in the ".tag_list" "css_element"And I should see "Turtle" in the ".tag_list" "css_element"And I should see "Fish" in the ".tag_list" "css_element"And I should not see "Dog"Scenario: Renaming the tag from tag view pageWhen I log in as "manager1"And I turn editing mode onAnd the following config values are set as admin:| unaddableblocks | | theme_boost|# TODO MDL-57120 site "Tags" link not accessible without navigation block.And I add the "Navigation" block if not presentAnd I click on "Tags" "link" in the "Navigation" "block"And I follow "Turtle"And I follow "User One"And I follow "Cat"And I follow "Edit this tag"And I set the following fields to these values:| Tag name | DOG |And I press "Update"And I should see "Tag names already being used"And I set the following fields to these values:| Tag name | Kitten |And I press "Update"Then "Kitten" "text" should exist in the ".breadcrumb" "css_element"And I follow "Edit this tag"And I set the following fields to these values:| Tag name | KITTEN |And I press "Update"And "KITTEN" "text" should exist in the ".breadcrumb" "css_element"@javascriptScenario: Manager can change tag description and rename the tag from tag manage pageWhen I log in as "manager1"And I navigate to "Appearance > Manage tags" in site administrationAnd I follow "Default collection"And I press "Edit" action in the "Cat" report rowAnd I set the following fields to these values:| Tag name | Kitten || Description | Description of tag 1 || Related tags | Dog, Turtle,Fish || Standard | 0 |And I press "Update"And I follow "Kitten"And "Description of tag 1" "text" should exist in the ".tag-description" "css_element"And I should see "Related tags:" in the ".tag_list" "css_element"And I should see "Dog" in the ".tag_list" "css_element"And I should see "Turtle" in the ".tag_list" "css_element"And I should see "Fish" in the ".tag_list" "css_element"Scenario: Renaming the tag in edit tag form from tag manage pageWhen I log in as "manager1"And I navigate to "Appearance > Manage tags" in site administrationAnd I follow "Default collection"And I press "Edit" action in the "Cat" report rowAnd I set the following fields to these values:| Tag name | DOG |And I press "Update"And I should see "Tag names already being used"And I set the following fields to these values:| Tag name | Kitten |And I press "Update"And I press "Edit" action in the "Kitten" report rowAnd I set the following fields to these values:| Tag name | KITTEN |And I press "Update"And I should see "KITTEN"And I should not see "Kitten"@javascriptScenario: Renaming the tag using quick edit field on tag manage pageWhen I log in as "manager1"And I navigate to "Appearance > Manage tags" in site administrationAnd I follow "Default collection"# Renaming tag to a valid nameAnd I set the field "Edit tag name" in the "Cat" "table_row" to "Kitten"Then the following should not exist in the "Tags" table:| First name | Tag name || Admin User | Cat |And I reload the pageAnd I should see "Kitten"And I should not see "Cat"# Renaming tag to an invalid nameAnd I set the field "Edit tag name" in the "Turtle" "table_row" to "DOG"And I should see "The tag name is already in use. Do you want to combine these tags?"And I click on "Cancel" "button" in the "Confirm" "dialogue"And "New name for tag" "field" should not existAnd I should see "Turtle"And I should see "Dog"And I should not see "DOG"@javascriptScenario: Combining tags when renamingWhen I log in as "manager1"And I navigate to "Appearance > Manage tags" in site administrationAnd I follow "Default collection"And I set the field "Edit tag name" in the "Turtle" "table_row" to "DOG"And I should see "The tag name is already in use. Do you want to combine these tags?"And I press "Yes"Then I should not see "Turtle"And I should not see "DOG"And I should see "Dog"@javascriptScenario: Combining multiple tagsWhen I log in as "manager1"And I navigate to "Appearance > Manage tags" in site administrationAnd I follow "Default collection"And I set the following fields to these values:| Select tag Dog | 1 || Select tag Neverusedtag | 1 || Select tag Turtle | 1 |And I press "Combine selected"And I should see "Select the tag that will be used after combining"And I click on "Turtle" "radio" in the "#combinetags_form" "css_element"And I press "Continue"Then I should see "Tags are combined"And I should not see "Dog"And I should not see "Neverusedtag"And I should see "Turtle"# Even though Turtle was not standard but at least one of combined tags was (Neverusedtag). Now Turtle is also standard.And "Remove from standard tags" "link" should exist in the "Turtle" "table_row"@javascriptScenario: Combining all tagsWhen I log in as "manager1"And I navigate to "Appearance > Manage tags" in site administrationAnd I follow "Default collection"And I set the field "Select all" to "1"And I press "Combine selected"And I set the field "Turtle" in the "Combine selected" "dialogue" to "1"And I click on "Continue" "button" in the "Combine selected" "dialogue"Then I should see "Tags are combined"And I should not see "Cat"And I should not see "Dog"And I should see "Turtle"And I should not see "Neverusedtag"@javascriptScenario: Sorting tagsWhen I log in as "user2"And I open my profile in edit modeAnd I expand all fieldsetsAnd I set the field "List of interests" to "Goat"And I press "Update profile"And I log outAnd I log in as "manager1"And I navigate to "Appearance > Manage tags" in site administrationAnd I follow "Default collection"# Sort by users name.And I click on "Last name" "link" in the "Tags" "table"Then "Admin User" "table_row" should appear before "User Two" "table_row"And I click on "Last name" "link" in the "Tags" "table"And "User Two" "table_row" should appear before "Admin User" "table_row"And I click on "First name" "link" in the "Tags" "table"And "Admin User" "table_row" should appear before "User Two" "table_row"And I click on "First name" "link" in the "Tags" "table"And "User Two" "table_row" should appear before "Admin User" "table_row"@javascriptScenario: Filtering tagsWhen I log in as "manager1"And I navigate to "Appearance > Manage tags" in site administrationAnd I follow "Default collection"And I click on "Filters" "button"And I set the following fields in the "Tag name" "core_reportbuilder > Filter" to these values:| Tag name operator | Is equal to || Tag name value | Cat,Dog |And I click on "Apply" "button" in the "[data-region='report-filters']" "css_element"Then the following should exist in the "Tags" table:| Tag name || Cat || Dog |And the following should not exist in the "Tags" table:| Tag name || Turtle || Neverusedtag |