Skip to content

Commit 5b676ce

Browse files
author
rtschu
committed
added Behat tests for search
1 parent 299fa43 commit 5b676ce

File tree

2 files changed

+96
-0
lines changed

2 files changed

+96
-0
lines changed

tests/behat/behat_mod_moodleoverflow.php

+34
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,38 @@ protected function add_new_discussion($moodleoverflowname, TableNode $table, $bu
108108
$this->execute('behat_forms::press_button', get_string('posttomoodleoverflow', 'moodleoverflow'));
109109
$this->execute('behat_general::i_wait_to_be_redirected');
110110
}
111+
112+
/**
113+
* @Given I go to :link
114+
*/
115+
public function i_go_to($link) {
116+
$this->visitPath($link);
117+
}
118+
119+
/**
120+
* Fills in form field with specified id|name|label|value
121+
* Example: When I fill in "username" with: "bwayne"
122+
* Example: And I fill in "bwayne" for "username"
123+
*
124+
* @When /^(?:|I )fill in "(?P<field>(?:[^"]|\\")*)" with "(?P<value>(?:[^"]|\\")*)"$/
125+
* @When /^(?:|I )fill in "(?P<field>(?:[^"]|\\")*)" with:$/
126+
* @When /^(?:|I )fill in "(?P<value>(?:[^"]|\\")*)" for "(?P<field>(?:[^"]|\\")*)"$/
127+
*/
128+
public function fill_field($field, $value) {
129+
$field = $this->fix_step_argument($field);
130+
$value = $this->fix_step_argument($value);
131+
$this->getSession()->getPage()->fillField($field, $value);
132+
}
133+
134+
/**
135+
* Returns fixed step argument (with \\" replaced back to ")
136+
*
137+
* @param string $argument
138+
*
139+
* @return string
140+
*/
141+
protected function fix_step_argument($argument) {
142+
return str_replace('\\"', '"', $argument);
143+
}
144+
111145
}

tests/behat/test_search.feature

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
@mod @mod_moodleoverflow @mod_moodleoverflow_search
2+
Feature: Add moodleoverflow activities and discussions
3+
In order to find discussions
4+
I need to be able to search them
5+
6+
Background: : Add a moodleoverflow and a discussion
7+
Given the following config values are set as admin:
8+
| enableglobalsearch | 1 |
9+
| searchengine | simpledb |
10+
And the following "users" exist:
11+
| username | firstname | lastname | email |
12+
| teacher1 | Teacher | 1 | teacher1@example.com |
13+
| student1 | Student | 1 | student1@example.com |
14+
| student2 | Student | 2 | student2@example.com |
15+
And the following "courses" exist:
16+
| fullname | shortname | category |
17+
| Course 1 | C1 | 0 |
18+
And the following "course enrolments" exist:
19+
| user | course | role |
20+
| teacher1 | C1 | editingteacher |
21+
| student1 | C1 | student |
22+
And I log in as "teacher1"
23+
And I am on "Course 1" course homepage
24+
And I turn editing mode on
25+
And I add a "Moodleoverflow" to section "1" and I fill the form with:
26+
| Moodleoverflow name | Test moodleoverflow name |
27+
| Description | Test forum description |
28+
And I log out
29+
And I log in as "student1"
30+
And I am on "Course 1" course homepage
31+
And I add a new discussion to "Test moodleoverflow name" moodleoverflow with:
32+
| Subject | Forum post 1 |
33+
| Message | This is the body |
34+
And I log out
35+
And I log in as "teacher1"
36+
And I update the global search index
37+
And I log out
38+
39+
Scenario: As a teacher I should see all discussions in my course
40+
Given I log in as "teacher1"
41+
And I go to "search/index.php"
42+
And I fill in "id_q" with "Forum post 1"
43+
And I press "id_submitbutton"
44+
Then I should see "Forum post 1"
45+
And I should see "This is the body"
46+
47+
Scenario: As an enrolled student I should see all discussions in my course
48+
Given I log in as "student1"
49+
And I go to "search/index.php"
50+
And I fill in "id_q" with "Forum post 1"
51+
And I press "id_submitbutton"
52+
Then I should see "Forum post 1"
53+
And I should see "This is the body"
54+
55+
@test
56+
Scenario: As an unenrolled student I should see all discussions in my course
57+
Given I log in as "student2"
58+
And I go to "search/index.php"
59+
And I fill in "id_q" with "Forum post 1"
60+
And I press "id_submitbutton"
61+
Then I should not see "Forum post 1"
62+
And I should not see "This is the body"

0 commit comments

Comments
 (0)