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.
64 lines
3.0 KiB
64 lines
3.0 KiB
@block @block_activity_results
|
|
Feature: The activity results block can have administrator set defaults
|
|
In order to be customize the activity results block
|
|
As an admin
|
|
I need can assign some site wide defaults
|
|
|
|
Background:
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email | idnumber |
|
|
| teacher1 | Teacher | 1 | teacher1@example.com | T1 |
|
|
| student1 | Student | 1 | student1@example.com | S1 |
|
|
And the following "courses" exist:
|
|
| fullname | shortname | category |
|
|
| Course 1 | C1 | 0 |
|
|
And the following "course enrolments" exist:
|
|
| user | course | role |
|
|
| teacher1 | C1 | editingteacher |
|
|
| student1 | C1 | student |
|
|
|
|
Scenario: Assign some site-wide defaults to the block.
|
|
Given the following config values are set as admin:
|
|
| config_showbest | 0 | block_activity_results |
|
|
| config_showworst | 0 | block_activity_results |
|
|
| config_gradeformat | 2 | block_activity_results |
|
|
| config_nameformat | 2 | block_activity_results |
|
|
And I log in as "teacher1"
|
|
And I am on "Course 1" course homepage with editing mode on
|
|
And I add a "Assignment" to section "1" and I fill the form with:
|
|
| Assignment name | Test assignment |
|
|
| Description | Offline text |
|
|
| assignsubmission_file_enabled | 0 |
|
|
And I am on "Course 1" course homepage
|
|
And I add the "Activity results" block
|
|
When I configure the "Activity results" block
|
|
And the following fields match these values:
|
|
| id_config_showbest | 0 |
|
|
| id_config_showworst | 0 |
|
|
| id_config_gradeformat | Fractions |
|
|
| id_config_nameformat | Display only ID numbers |
|
|
And I press "Save changes"
|
|
Then I should see "This block's configuration currently does not allow it to show any results." in the "Activity results" "block"
|
|
|
|
Scenario: Assign some site-wide defaults to the block and lock them.
|
|
Given the following config values are set as admin:
|
|
| config_showbest | 0 | block_activity_results |
|
|
| config_showbest_locked | 1 | block_activity_results |
|
|
| config_showworst | 0 | block_activity_results |
|
|
| config_showworst_locked | 1 | block_activity_results |
|
|
And I log in as "teacher1"
|
|
And I am on "Course 1" course homepage with editing mode on
|
|
And I add a "Assignment" to section "1" and I fill the form with:
|
|
| Assignment name | Test assignment |
|
|
| Description | Offline text |
|
|
| assignsubmission_file_enabled | 0 |
|
|
And I am on "Course 1" course homepage
|
|
And I add the "Activity results" block
|
|
When I configure the "Activity results" block
|
|
And the following fields match these values:
|
|
| id_config_showbest | 0 |
|
|
| id_config_showworst | 0 |
|
|
And the "id_config_showbest" "field" should be readonly
|
|
And the "id_config_showworst" "field" should be readonly
|
|
And I press "Save changes"
|
|
Then I should see "This block's configuration currently does not allow it to show any results." in the "Activity results" "block"
|
|
|