You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
3.1 KiB
81 lines
3.1 KiB
@customfield @customfield_checkbox
|
|
Feature: Managers can manage course custom fields checkbox
|
|
In order to have additional data on the course
|
|
As a manager
|
|
I need to create, edit, remove and sort custom fields
|
|
|
|
Background:
|
|
Given the following "custom field categories" exist:
|
|
| name | component | area | itemid |
|
|
| Category for test | core_course | course | 0 |
|
|
And I log in as "admin"
|
|
And I navigate to "Courses > Course custom fields" in site administration
|
|
|
|
Scenario: Create a custom course checkbox field
|
|
When I click on "Add a new custom field" "link"
|
|
And I click on "Checkbox" "link"
|
|
And I set the following fields to these values:
|
|
| Name | Test field |
|
|
| Short name | testfield |
|
|
And I press "Save changes"
|
|
Then I should see "Test field"
|
|
And I log out
|
|
|
|
Scenario: Edit a custom course checkbox field
|
|
When I click on "Add a new custom field" "link"
|
|
And I click on "Checkbox" "link"
|
|
And I set the following fields to these values:
|
|
| Name | Test field |
|
|
| Short name | testfield |
|
|
And I press "Save changes"
|
|
And I click on "Edit" "link" in the "Test field" "table_row"
|
|
And I set the following fields to these values:
|
|
| Name | Edited field |
|
|
And I press "Save changes"
|
|
Then I should see "Edited field"
|
|
And I should not see "Test field"
|
|
And I log out
|
|
|
|
@javascript
|
|
Scenario: Delete a custom course checkbox field
|
|
When I click on "Add a new custom field" "link"
|
|
And I click on "Checkbox" "link"
|
|
And I set the following fields to these values:
|
|
| Name | Test field |
|
|
| Short name | testfield |
|
|
And I press "Save changes"
|
|
And I click on "Delete" "link" in the "Test field" "table_row"
|
|
And I click on "Yes" "button" in the "Confirm" "dialogue"
|
|
Then I should not see "Test field"
|
|
And I log out
|
|
|
|
@javascript
|
|
Scenario: A checkbox checked by default must be shown on listing but allow uncheck that will keep showing
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email |
|
|
| teacher1 | Teacher | Example 1 | teacher1@example.com |
|
|
And the following "courses" exist:
|
|
| fullname | shortname | format |
|
|
| Course 1 | C1 | topics |
|
|
And the following "course enrolments" exist:
|
|
| user | course | role |
|
|
| teacher1 | C1 | editingteacher |
|
|
When I click on "Add a new custom field" "link"
|
|
And I click on "Checkbox" "link"
|
|
And I set the following fields to these values:
|
|
| Name | Test field |
|
|
| Short name | testfield |
|
|
| Checked by default | Yes |
|
|
And I press "Save changes"
|
|
And I log out
|
|
And I log in as "teacher1"
|
|
And I am on site homepage
|
|
Then I should see "Test field: Yes"
|
|
When I am on "Course 1" course homepage
|
|
And I navigate to "Edit settings" in current page administration
|
|
And I expand all fieldsets
|
|
And I set the field "Test field" to ""
|
|
And I press "Save and display"
|
|
And I am on site homepage
|
|
Then I should see "Test field: No"
|
|
And I log out
|
|
|