mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
Merge branch 'MDL-77413-master' of https://github.com/andelacruz/moodle
This commit is contained in:
commit
9533281da6
1 changed files with 26 additions and 28 deletions
|
@ -1,8 +1,8 @@
|
||||||
@core @core_group
|
@core @core_group
|
||||||
Feature: The description of a group can be viewed by students and teachers
|
Feature: The description and picture of a group can be viewed by students and teachers
|
||||||
In order to view the description of a group
|
In order to view the description and picture of a group
|
||||||
As a teacher
|
As a teacher
|
||||||
I need to create groups and add descriptions to them.
|
I need to create groups and add descriptions and picture to them.
|
||||||
|
|
||||||
Background:
|
Background:
|
||||||
Given the following "courses" exist:
|
Given the following "courses" exist:
|
||||||
|
@ -19,11 +19,9 @@ Feature: The description of a group can be viewed by students and teachers
|
||||||
| student1 | C1 | student |
|
| student1 | C1 | student |
|
||||||
| student2 | C1 | student |
|
| student2 | C1 | student |
|
||||||
|
|
||||||
@javascript
|
@javascript @_file_upload
|
||||||
Scenario: A student can see the group description when visible groups are set. Teachers can see group details.
|
Scenario: A student can see the group description and picture when visible groups are set. Teachers can see group details.
|
||||||
Given I log in as "teacher1"
|
Given I am on the "Course 1" "course editing" page logged in as "teacher1"
|
||||||
And I am on "Course 1" course homepage
|
|
||||||
And I navigate to "Settings" in current page administration
|
|
||||||
And I set the following fields to these values:
|
And I set the following fields to these values:
|
||||||
| Group mode | Visible groups |
|
| Group mode | Visible groups |
|
||||||
And I press "Save and display"
|
And I press "Save and display"
|
||||||
|
@ -32,6 +30,8 @@ Feature: The description of a group can be viewed by students and teachers
|
||||||
And I set the following fields to these values:
|
And I set the following fields to these values:
|
||||||
| Group name | Group A |
|
| Group name | Group A |
|
||||||
| Group description | Description for Group A |
|
| Group description | Description for Group A |
|
||||||
|
# Upload group picture
|
||||||
|
And I upload "lib/tests/fixtures/gd-logo.png" file to "New picture" filemanager
|
||||||
And I press "Save changes"
|
And I press "Save changes"
|
||||||
And I press "Create group"
|
And I press "Create group"
|
||||||
And I set the following fields to these values:
|
And I set the following fields to these values:
|
||||||
|
@ -39,11 +39,12 @@ Feature: The description of a group can be viewed by students and teachers
|
||||||
And I press "Save changes"
|
And I press "Save changes"
|
||||||
And I add "Student 1 (student1@example.com)" user to "Group A" group members
|
And I add "Student 1 (student1@example.com)" user to "Group A" group members
|
||||||
And I add "Student 2 (student2@example.com)" user to "Group B" group members
|
And I add "Student 2 (student2@example.com)" user to "Group B" group members
|
||||||
And I am on "Course 1" course homepage
|
|
||||||
And I navigate to course participants
|
And I navigate to course participants
|
||||||
And I click on "Student 1" "link" in the "participants" "table"
|
And I click on "Student 1" "link" in the "participants" "table"
|
||||||
And I click on "Group A" "link"
|
And I click on "Group A" "link"
|
||||||
And I should see "Description for Group A"
|
And I should see "Description for Group A"
|
||||||
|
# As teacher, confirm that group picture is displayed
|
||||||
|
And "//img[@class='grouppicture']" "xpath_element" should exist
|
||||||
And ".groupinfobox" "css_element" should exist
|
And ".groupinfobox" "css_element" should exist
|
||||||
And I set the field "type" in the "Filter 1" "fieldset" to "Groups"
|
And I set the field "type" in the "Filter 1" "fieldset" to "Groups"
|
||||||
And I set the field "Type or select..." in the "Filter 1" "fieldset" to "Group B"
|
And I set the field "Type or select..." in the "Filter 1" "fieldset" to "Group B"
|
||||||
|
@ -52,27 +53,23 @@ Feature: The description of a group can be viewed by students and teachers
|
||||||
And I click on "Group B" "link"
|
And I click on "Group B" "link"
|
||||||
And I should see "Student 2" in the "participants" "table"
|
And I should see "Student 2" in the "participants" "table"
|
||||||
And ".groupinfobox" "css_element" should not exist
|
And ".groupinfobox" "css_element" should not exist
|
||||||
And I log out
|
When I am on the "Course 1" course page logged in as student1
|
||||||
When I log in as "student1"
|
|
||||||
And I am on "Course 1" course homepage
|
|
||||||
And I navigate to course participants
|
And I navigate to course participants
|
||||||
And I click on "Student 1" "link" in the "participants" "table"
|
And I click on "Student 1" "link" in the "participants" "table"
|
||||||
And I click on "Group A" "link"
|
And I click on "Group A" "link"
|
||||||
|
# As student, confirm that group description and picture is displayed
|
||||||
Then I should see "Description for Group A"
|
Then I should see "Description for Group A"
|
||||||
And I log out
|
And "//img[@class='grouppicture']" "xpath_element" should exist
|
||||||
And I log in as "student2"
|
And I am on the "Course 1" course page logged in as student2
|
||||||
And I am on "Course 1" course homepage
|
|
||||||
And I navigate to course participants
|
And I navigate to course participants
|
||||||
And I click on "Student 2" "link" in the "participants" "table"
|
And I click on "Student 2" "link" in the "participants" "table"
|
||||||
And I click on "Group B" "link"
|
And I click on "Group B" "link"
|
||||||
And I should see "Student 2" in the "participants" "table"
|
And I should see "Student 2" in the "participants" "table"
|
||||||
And ".groupinfobox" "css_element" should not exist
|
And ".groupinfobox" "css_element" should not exist
|
||||||
|
|
||||||
@javascript
|
@javascript @_file_upload
|
||||||
Scenario: A student can not see the group description when separate groups are set. Teachers can see group details.
|
Scenario: A student can not see the group description and picture when separate groups are set. Teachers can see group details.
|
||||||
Given I log in as "teacher1"
|
Given I am on the "Course 1" "course editing" page logged in as "teacher1"
|
||||||
And I am on "Course 1" course homepage
|
|
||||||
And I navigate to "Settings" in current page administration
|
|
||||||
And I set the following fields to these values:
|
And I set the following fields to these values:
|
||||||
| Group mode | Separate groups |
|
| Group mode | Separate groups |
|
||||||
And I press "Save and display"
|
And I press "Save and display"
|
||||||
|
@ -81,6 +78,8 @@ Feature: The description of a group can be viewed by students and teachers
|
||||||
And I set the following fields to these values:
|
And I set the following fields to these values:
|
||||||
| Group name | Group A |
|
| Group name | Group A |
|
||||||
| Group description | Description for Group A |
|
| Group description | Description for Group A |
|
||||||
|
# Upload group picture
|
||||||
|
And I upload "lib/tests/fixtures/gd-logo.png" file to "New picture" filemanager
|
||||||
And I press "Save changes"
|
And I press "Save changes"
|
||||||
And I press "Create group"
|
And I press "Create group"
|
||||||
And I set the following fields to these values:
|
And I set the following fields to these values:
|
||||||
|
@ -88,11 +87,12 @@ Feature: The description of a group can be viewed by students and teachers
|
||||||
And I press "Save changes"
|
And I press "Save changes"
|
||||||
And I add "Student 1 (student1@example.com)" user to "Group A" group members
|
And I add "Student 1 (student1@example.com)" user to "Group A" group members
|
||||||
And I add "Student 2 (student2@example.com)" user to "Group B" group members
|
And I add "Student 2 (student2@example.com)" user to "Group B" group members
|
||||||
And I am on "Course 1" course homepage
|
|
||||||
And I navigate to course participants
|
And I navigate to course participants
|
||||||
And I click on "Student 1" "link" in the "participants" "table"
|
And I click on "Student 1" "link" in the "participants" "table"
|
||||||
And I click on "Group A" "link"
|
And I click on "Group A" "link"
|
||||||
And I should see "Description for Group A"
|
And I should see "Description for Group A"
|
||||||
|
# As teacher, confirm that group picture is displayed
|
||||||
|
And "//img[@class='grouppicture']" "xpath_element" should exist
|
||||||
And ".groupinfobox" "css_element" should exist
|
And ".groupinfobox" "css_element" should exist
|
||||||
And I set the field "type" in the "Filter 1" "fieldset" to "Groups"
|
And I set the field "type" in the "Filter 1" "fieldset" to "Groups"
|
||||||
And I set the field "Type or select..." in the "Filter 1" "fieldset" to "Group B"
|
And I set the field "Type or select..." in the "Filter 1" "fieldset" to "Group B"
|
||||||
|
@ -100,18 +100,16 @@ Feature: The description of a group can be viewed by students and teachers
|
||||||
And I click on "Student 2" "link" in the "participants" "table"
|
And I click on "Student 2" "link" in the "participants" "table"
|
||||||
And I click on "Group B" "link"
|
And I click on "Group B" "link"
|
||||||
And ".groupinfobox" "css_element" should not exist
|
And ".groupinfobox" "css_element" should not exist
|
||||||
And I log out
|
When I am on the "Course 1" course page logged in as student1
|
||||||
When I log in as "student1"
|
|
||||||
And I am on "Course 1" course homepage
|
|
||||||
And I navigate to course participants
|
And I navigate to course participants
|
||||||
And I click on "Student 1" "link" in the "participants" "table"
|
And I click on "Student 1" "link" in the "participants" "table"
|
||||||
And I click on "Group A" "link"
|
And I click on "Group A" "link"
|
||||||
And I should see "Student 1" in the "participants" "table"
|
And I should see "Student 1" in the "participants" "table"
|
||||||
And I should not see "Description for Group A"
|
# As student, confirm that group description and picture are not displayed
|
||||||
|
Then I should not see "Description for Group A"
|
||||||
|
And "//img[@class='grouppicture']" "xpath_element" should not exist
|
||||||
And ".groupinfobox" "css_element" should not exist
|
And ".groupinfobox" "css_element" should not exist
|
||||||
And I log out
|
When I am on the "Course 1" course page logged in as student2
|
||||||
And I log in as "student2"
|
|
||||||
And I am on "Course 1" course homepage
|
|
||||||
And I navigate to course participants
|
And I navigate to course participants
|
||||||
And I click on "Student 2" "link" in the "participants" "table"
|
And I click on "Student 2" "link" in the "participants" "table"
|
||||||
And I click on "Group B" "link"
|
And I click on "Group B" "link"
|
Loading…
Add table
Add a link
Reference in a new issue