forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In a standard forum, students can start discussions add replies and attach files to their posts.
- Loading branch information
David Monllao
committed
Apr 9, 2014
1 parent
9bc60e0
commit af4830a
Showing
11 changed files
with
133 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,47 @@ | ||
@mod @mod_forum | ||
@mod @mod_forum @_file_upload | ||
Feature: Add forum activities and discussions | ||
In order to discuss topics with other users | ||
As a teacher | ||
I need to add forum activities to moodle courses | ||
|
||
@javascript | ||
Scenario: Add a forum and a discussion | ||
Scenario: Add a forum and a discussion attaching files | ||
Given the following "users" exist: | ||
| username | firstname | lastname | email | | ||
| teacher1 | Teacher | 1 | teacher1@asd.com | | ||
| student1 | Student | 1 | student1@asd.com | | ||
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 | | ||
And I log in as "teacher1" | ||
And I follow "Course 1" | ||
And I turn editing mode on | ||
And I add a "Forum" to section "1" and I fill the form with: | ||
| Forum name | Test forum name | | ||
| Forum type | Standard forum for general use | | ||
| Description | Test forum description | | ||
When I add a new discussion to "Test forum name" forum with: | ||
And I add a new discussion to "Test forum name" forum with: | ||
| Subject | Forum post 1 | | ||
| Message | This is the body | | ||
Then I should see "Test forum name" | ||
And I log out | ||
And I log in as "student1" | ||
And I follow "Course 1" | ||
When I add a new discussion to "Test forum name" forum with: | ||
| Subject | Post with attachment | | ||
| Message | This is the body | | ||
| Attachment | lib/tests/fixtures/empty.txt | | ||
And I reply "Forum post 1" post from "Test forum name" forum with: | ||
| Subject | Reply with attachment | | ||
| Message | This is the body | | ||
| Attachment | lib/tests/fixtures/upload_users.csv | | ||
Then I should see "Reply with attachment" | ||
And I should see "upload_users.csv" | ||
And I follow "Test forum name" | ||
And I follow "Post with attachment" | ||
And I should see "empty.txt" | ||
And I follow "Edit" | ||
And the field "Attachment" matches value "empty.txt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters