Merge branch 4.5 into 4.6
[civicrm-core.git] / tests / phpunit / WebTest / Event / ParticipantSearchTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 */
26
27 require_once 'CiviTest/CiviSeleniumTestCase.php';
28
29 /**
30 * Class WebTest_Event_ParticipantSearchTest
31 */
32 class WebTest_Event_ParticipantSearchTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 /**
39 * @param $strings
40 */
41 public function _checkStrings(&$strings) {
42 // search for elements
43 foreach ($strings as $string) {
44 $this->assertTrue($this->isTextPresent($string), "Could not find $string on page");
45 }
46 }
47
48 public function testParticipantSearchForm() {
49 $this->webtestLogin();
50
51 // visit event search page
52 $this->openCiviPage("event/search", "reset=1");
53
54 $stringsToCheck = array(
55 'Participant Name',
56 'Event Name',
57 'Event Dates',
58 'Participant Status',
59 'Participant Role',
60 'Participant is a Test?',
61 'Participant is Pay Later?',
62 'Fee Level',
63 'Fee Amount',
64 // check that the custom data is also there
65 'Food Preference',
66 'Soup Selection',
67 );
68 $this->_checkStrings($stringsToCheck);
69 }
70
71 public function testParticipantSearchForce() {
72 $this->webtestLogin();
73
74 // visit event search page
75 $this->openCiviPage("event/search", "reset=1&force=1");
76
77 // assume generated DB
78 // there are participants
79 $this->assertTrue($this->isTextPresent("Select Records"), "A forced event search did not return any results");
80 }
81
82 public function testParticipantSearchEmpty() {
83 $this->webtestLogin();
84
85 // visit event search page
86 $this->openCiviPage("event/search", "reset=1");
87
88 $crypticName = "foobardoogoo_" . md5(time());
89 $this->type("sort_name", $crypticName);
90
91 $this->clickLink("_qf_Search_refresh");
92
93 $stringsToCheck = array(
94 'No matches found for',
95 'Name or Email LIKE',
96 $crypticName,
97 );
98
99 $this->_checkStrings($stringsToCheck);
100 }
101
102 public function testParticipantSearchEventName() {
103 $this->webtestLogin();
104
105 // visit event search page
106 $this->openCiviPage("event/search", "reset=1");
107 $this->waitForElementPresent('_qf_Search_refresh');
108
109 $eventName = "Fall Fundraiser Dinner";
110 $this->waitForElementPresent("event_id");
111 $this->select2("event_id", $eventName);
112
113 $this->clickLink("_qf_Search_refresh", "search-status");
114
115 $stringsToCheck = array(
116 "Event = $eventName",
117 'Select Records:',
118 'Edit Search Criteria',
119 );
120
121 $this->_checkStrings($stringsToCheck);
122 }
123
124 public function testParticipantSearchEventDate() {
125
126 $this->webtestLogin();
127
128 // visit event search page
129 $this->openCiviPage("event/search", "reset=1");
130
131 $this->select('event_relative', "label=Choose Date Range");
132 $this->webtestFillDate('event_start_date_low', '-2 year');
133 $this->webtestFillDate('event_end_date_high', '+1 year');
134
135 $this->clickLink("_qf_Search_refresh");
136
137 $stringsToCheck = array(
138 "Start Date - greater than or equal to",
139 '...AND...',
140 "End Date - less than or equal to",
141 'Select Records:',
142 'Edit Search Criteria',
143 );
144
145 $this->_checkStrings($stringsToCheck);
146 }
147
148 public function testParticipantSearchEventDateAndType() {
149
150 $this->webtestLogin();
151
152 // visit event search page
153 $this->openCiviPage("event/search", "reset=1");
154
155 $eventTypeName = 'Fundraiser';
156 $this->waitForElementPresent('event_type_id');
157 $this->select2("event_type_id", $eventTypeName);
158 $this->waitForElementPresent('event_relative');
159 $this->select('event_relative', "label=Choose Date Range");
160 $this->webtestFillDate('event_start_date_low', '-2 year');
161 $this->webtestFillDate('event_end_date_high', '+1 year');
162
163 $this->click("_qf_Search_refresh");
164 $this->waitForElementPresent("xpath=//form[@id='Search']/div[3]/div/div[1]/div");
165
166 $stringsToCheck = array(
167 "Start Date - greater than or equal to",
168 '...AND...',
169 "End Date - less than or equal to",
170 "Event Type = $eventTypeName",
171 'Select Records:',
172 'Edit Search Criteria',
173 );
174
175 $this->_checkStrings($stringsToCheck);
176 }
177
178 public function testParticipantSearchCustomField() {
179
180 $this->webtestLogin();
181
182 // visit event search page
183 $this->openCiviPage("event/search", "reset=1");
184
185 $this->select("css=select[data-crm-custom='Food_Preference:Soup_Selection']", 'Chicken Combo');
186
187 $this->clickLink("_qf_Search_refresh");
188
189 // note since this is generated data
190 // we are not sure if someone has this selection, so
191 // we are not testing for an empty record set
192 $stringsToCheck = array("Soup Selection = Chicken Combo");
193
194 $this->_checkStrings($stringsToCheck);
195
196 $this->select("css=select[data-crm-custom='Food_Preference:Soup_Selection']", 'Salmon Stew');
197 $this->clickLink("_qf_Search_refresh");
198
199 $stringsToCheck = array("Soup Selection = Salmon Stew");
200
201 $this->_checkStrings($stringsToCheck);
202 }
203
204 public function testParticipantSearchForceAndView() {
205
206 $this->webtestLogin();
207
208 // visit event search page
209 $this->openCiviPage("event/search", "reset=1&force=1");
210
211 // assume generated DB
212 // there are participants
213 $this->assertTrue($this->isTextPresent("Select Records"), "A forced event search did not return any results");
214
215 $this->waitForElementPresent("xpath=id('participantSearch')/table/tbody/tr/td[11]/span/a[text()='View']");
216 $this->click("xpath=id('participantSearch')/table/tbody/tr/td[11]/span/a[text()='View']");
217 $this->waitForTextPresent("View Event Registration");
218
219 // ensure we get to particpant view
220 $stringsToCheck = array(
221 "Name",
222 "Event",
223 "Participant Role",
224 );
225
226 $this->_checkStrings($stringsToCheck);
227 }
228
229 public function testParticipantSearchForceAndEdit() {
230
231 $this->webtestLogin();
232
233 // visit event search page
234 $this->openCiviPage("event/search", "reset=1&force=1");
235
236 // assume generated DB
237 // there are participants
238 $this->assertTrue($this->isTextPresent("Select Records"), "A forced event search did not return any results");
239
240 $this->waitForElementPresent("xpath=id('participantSearch')/table/tbody/tr/td[11]/span/a[text()='Edit']");
241 $this->click("xpath=id('participantSearch')/table/tbody/tr/td[11]/span/a[text()='Edit']");
242 $this->waitForTextPresent("Edit Event Registration");
243
244 // ensure we get to particpant view
245 $stringsToCheck = array(
246 "Participant",
247 "Event",
248 "Participant Role",
249 );
250
251 $this->_checkStrings($stringsToCheck);
252 }
253
254 }