mirror of
https://github.com/moodle/moodle.git
synced 2025-08-10 03:16:42 +02:00

Modify all behat tests that use the behat contentbank content generator in order to use the updated generator structure
51 lines
2.4 KiB
Gherkin
51 lines
2.4 KiB
Gherkin
@core @core_contentbank @contentbank_h5p @_file_upload @javascript
|
|
Feature: Search content in the content bank
|
|
In order to find easily content in the content bank
|
|
As an admin
|
|
I need to be able to search content in the content bank
|
|
|
|
Background:
|
|
Given the following "contentbank content" exist:
|
|
| contextlevel | reference | contenttype | user | contentname |
|
|
| System | | contenttype_h5p | admin | santjordi.h5p |
|
|
| System | | contenttype_h5p | admin | santjordi_rose.h5p |
|
|
| System | | contenttype_h5p | admin | SantJordi_book |
|
|
| System | | contenttype_h5p | admin | Dragon_santjordi.h5p |
|
|
| System | | contenttype_h5p | admin | princess.h5p |
|
|
| System | | contenttype_h5p | admin | mathsbook.h5p |
|
|
| System | | contenttype_h5p | admin | historybook.h5p |
|
|
| System | | contenttype_h5p | admin | santvicenc.h5p |
|
|
|
|
Scenario: Admins can search content in the content bank
|
|
Given I log in as "admin"
|
|
And I am on site homepage
|
|
And I turn editing mode on
|
|
And I add the "Navigation" block if not present
|
|
And I expand "Site pages" node
|
|
And I click on "Content bank" "link"
|
|
And I should see "santjordi.h5p"
|
|
And "Clear search input" "button" should not exist
|
|
And I should not see "items found"
|
|
When I set the field "Search" to "book"
|
|
Then "Clear search input" "button" should exist
|
|
And I should see "3 items found"
|
|
And I should see "SantJordi_book"
|
|
And I should see "mathsbook.h5p"
|
|
And I should see "historybook.h5p"
|
|
And I set the field "Search" to "sant"
|
|
And "Clear search input" "button" should exist
|
|
And I should see "5 items found"
|
|
And I set the field "Search" to "santjordi"
|
|
And I should see "4 items found"
|
|
And I should see "santjordi.h5p"
|
|
And I should see "santjordi_rose.h5p"
|
|
And I should see "SantJordi_book"
|
|
And I should see "Dragon_santjordi.h5p"
|
|
And I click on "Clear search input" "button"
|
|
And "Clear search input" "button" should not exist
|
|
And I should not see "items found"
|
|
And I set the field "Search" to ".h5p"
|
|
And "Clear search input" "button" should exist
|
|
And I should see "7 items found"
|
|
And I set the field "Search" to "friend"
|
|
And I should see "0 items found"
|