Merge pull request #2991 from colemanw/master
[civicrm-core.git] / tests / phpunit / WebTest / Event / AddParticipationTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06a1bc01 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06a1bc01 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
6a488035
TO
27require_once 'CiviTest/CiviSeleniumTestCase.php';
28class WebTest_Event_AddParticipationTest extends CiviSeleniumTestCase {
29
30 protected function setUp() {
31 parent::setUp();
32 }
33
34 function testEventParticipationAdd() {
6a488035
TO
35 // Log in using webtestLogin() method
36 $this->webtestLogin();
37
38 // Adding contact with randomized first name (so we can then select that contact when creating event registration)
39 // We're using Quick Add block on the main page for this.
40 $firstName = substr(sha1(rand()), 0, 7);
41 $this->webtestAddContact($firstName, 'Anderson', TRUE);
42 $contactName = "Anderson, $firstName";
43 $displayName = "$firstName Anderson";
44
c038a4f0 45 $this->openCiviPage("participant/add", "reset=1&action=add&context=standalone", "_qf_Participant_upload-bottom");
6a488035 46
6a488035
TO
47 // Type contact last name in contact auto-complete, wait for dropdown and click first result
48 $this->webtestFillAutocomplete($firstName);
49
50 // Select event. Based on label for now.
33cf86bd 51 $this->select2('event_id', "Rain-forest Cup Youth Soccer Tournament");
6a488035
TO
52
53 // Select role
54 $this->click('role_id[2]');
55
56 // Choose Registration Date.
57 // Using helper webtestFillDate function.
58 $this->webtestFillDate('register_date', 'now');
59 $today = date('F jS, Y', strtotime('now'));
60 // May 5th, 2010
61
62 // Select participant status
33cf86bd 63 $this->select('status_id', 'value=1');
6a488035
TO
64
65 // Setting registration source
66 $this->type('source', 'Event StandaloneAddTest Webtest');
67
68 // Since we're here, let's check of screen help is being displayed properly
69 $this->assertTrue($this->isTextPresent('Source for this registration (if applicable).'));
70
71 // Select an event fee
72 $this->waitForElementPresent('priceset');
73
2861538e 74 $this->click("xpath=//input[@class='crm-form-radio']");
6a488035
TO
75
76 // Enter amount to be paid (note: this should default to selected fee level amount, s/b fixed during 3.2 cycle)
77 $this->type('total_amount', '800');
78
79 // Select payment method = Check and enter chk number
80 $this->select('payment_instrument_id', 'value=4');
81 $this->waitForElementPresent('check_number');
82 $this->type('check_number', '1044');
83
84 // go for the chicken combo (obviously)
85 // $this->click('CIVICRM_QFID_chicken_Chicken');
86
87 // Clicking save.
88 $this->click('_qf_Participant_upload-bottom');
89 $this->waitForPageToLoad($this->getTimeoutMsec());
90
91 // Is status message correct?
6c5f7368 92 $this->waitForText('crm-notification-container', "Event registration for $displayName has been added");
6a488035 93
2861538e 94 $this->waitForElementPresent("xpath=//*[@id='Search']//table/tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035 95 //click through to the participant view screen
2861538e 96 $this->click("xpath=//*[@id='Search']//table/tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035
TO
97 $this->waitForElementPresent('_qf_ParticipantView_cancel-bottom');
98
6a488035
TO
99 $this->webtestVerifyTabularData(
100 array(
101 'Event' => 'Rain-forest Cup Youth Soccer Tournament',
102 'Participant Role' => 'Attendee',
103 'Status' => 'Registered',
104 'Event Source' => 'Event StandaloneAddTest Webtest',
2861538e 105 'Fees' => '$ 800.00',
6a488035
TO
106 )
107 );
108 // check contribution record as well
109 //click through to the contribution view screen
2861538e 110 $this->click("xpath=id('ParticipantView')/div[2]/table[@class='selector row-highlight']/tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035
TO
111 $this->waitForElementPresent('_qf_ContributionView_cancel-bottom');
112
113 $this->webtestVerifyTabularData(
114 array(
115 'From' => $displayName,
116 'Financial Type' => 'Event Fee',
117 'Total Amount' => '$ 800.00',
118 'Contribution Status' => 'Completed',
119 'Paid By' => 'Check',
120 'Check Number' => '1044',
121 )
122 );
123 }
124
125 function testEventParticipationAddWithMultipleRoles() {
126
6a488035
TO
127 // Log in using webtestLogin() method
128 $this->webtestLogin();
129
130 // Adding contact with randomized first name (so we can then select that contact when creating event registration)
131 // We're using Quick Add block on the main page for this.
132 $firstName = substr(sha1(rand()), 0, 7);
133 $this->webtestAddContact($firstName, 'Anderson', TRUE);
134 $contactName = "Anderson, $firstName";
135 $displayName = "$firstName Anderson";
136
137 // add custom data for participant role
c038a4f0 138 $this->openCiviPage("admin/custom/group", "reset=1");
6a488035
TO
139
140 //add new custom data
141 $this->click("//a[@id='newCustomDataGroup']/span");
142 $this->waitForPageToLoad($this->getTimeoutMsec());
143
144 //fill custom group title
145 $customGroupTitle = 'custom_' . substr(sha1(rand()), 0, 7);
146 $this->click('title');
147 $this->type('title', $customGroupTitle);
148
149 //custom group extends
150 $this->click('extends[0]');
151 $this->select('extends[0]', 'value=ParticipantRole');
152
153 $this->click('extends[1][]');
154 $this->select('extends[1][]', 'value=2');
155
156 $this->click("//option[@value='Contact']");
157 $this->click('_qf_Group_next');
158 $this->waitForPageToLoad($this->getTimeoutMsec());
159
160 //Is custom group created?
6c5f7368 161 $this->waitForText('crm-notification-container', "Your custom field set '$customGroupTitle' has been added. You can add custom fields now.");
6a488035
TO
162
163 //add custom field - alphanumeric checkbox
164 $checkboxFieldLabel = 'custom_field' . substr(sha1(rand()), 0, 4);
165 $this->click('label');
166 $this->type('label', $checkboxFieldLabel);
167 $this->click('data_type[1]');
168 $this->select('data_type[1]', 'value=CheckBox');
169 $this->click("//option[@value='CheckBox']");
170 $checkboxOptionLabel1 = 'optionLabel_' . substr(sha1(rand()), 0, 5);
171 $this->type('option_label_1', $checkboxOptionLabel1);
172 $this->type('option_value_1', '1');
173 $checkboxOptionLabel2 = 'optionLabel_' . substr(sha1(rand()), 0, 5);
174 $this->type('option_label_2', $checkboxOptionLabel2);
175 $this->type('option_value_2', '2');
176 $this->click('link=another choice');
177 $checkboxOptionLabel3 = 'optionLabel_' . substr(sha1(rand()), 0, 5);
178 $this->type('option_label_3', $checkboxOptionLabel3);
179 $this->type('option_value_3', '3');
180
6a488035
TO
181 //enter options per line
182 $this->type('options_per_line', '2');
183
184 //enter pre help message
185 $this->type('help_pre', 'this is field pre help');
186
187 //enter post help message
188 $this->type('help_post', 'this field post help');
189
190 //Is searchable?
191 $this->click('is_searchable');
192
193 //clicking save
194 $this->click('_qf_Field_next');
195 $this->waitForPageToLoad($this->getTimeoutMsec());
196
197 //Is custom field created?
2861538e 198 $this->waitForText('crm-notification-container', "Custom field '$checkboxFieldLabel' has been saved.");
6a488035
TO
199
200 //create another custom field - Integer Radio
2861538e 201 $this->clickLink("//a[@id='newCustomField']/span", '_qf_Field_cancel', FALSE);
6a488035
TO
202 $this->click('data_type[0]');
203 $this->select('data_type[0]', 'value=1');
204 $this->click("//option[@value='1']");
205 $this->click('data_type[1]');
206 $this->select('data_type[1]', 'value=Radio');
207 $this->click("//option[@value='Radio']");
208
209 $radioFieldLabel = 'custom_field' . substr(sha1(rand()), 0, 4);
210 $this->type('label', $radioFieldLabel);
211 $radioOptionLabel1 = 'optionLabel_' . substr(sha1(rand()), 0, 5);
212 $this->type('option_label_1', $radioOptionLabel1);
213 $this->type('option_value_1', '1');
214 $radioOptionLabel2 = 'optionLabel_' . substr(sha1(rand()), 0, 5);
215 $this->type('option_label_2', $radioOptionLabel2);
216 $this->type('option_value_2', '2');
217 $this->click('link=another choice');
218 $radioOptionLabel3 = 'optionLabel_' . substr(sha1(rand()), 0, 5);
219 $this->type('option_label_3', $radioOptionLabel3);
220 $this->type('option_value_3', '3');
221
222 //select options per line
223 $this->type('options_per_line', '3');
224
225 //enter pre help msg
226 $this->type('help_pre', 'this is field pre help');
227
228 //enter post help msg
229 $this->type('help_post', 'this is field post help');
230
231 //Is searchable?
232 $this->click('is_searchable');
233
234 //clicking save
235 $this->click('_qf_Field_next');
6a488035 236
c038a4f0 237 $this->openCiviPage("participant/add", "reset=1&action=add&context=standalone", "_qf_Participant_upload-bottom");
6a488035 238
6a488035
TO
239 // Type contact last name in contact auto-complete, wait for dropdown and click first result
240 $this->webtestFillAutocomplete($firstName);
241
242 // Select event. Based on label for now.
33cf86bd 243 $this->select2('event_id', "Rain-forest Cup Youth Soccer Tournament");
6a488035
TO
244
245 // Select roles
246 $this->click('role_id[2]');
247 $this->click('role_id[3]');
248
2861538e 249 $this->waitForElementPresent("xpath=//*[@id='2_chk']//div[@class='custom-group custom-group-$customGroupTitle crm-accordion-wrapper collapsed']");
250 $this->click("xpath=//*[@id='2_chk']/div[@class='custom-group custom-group-$customGroupTitle crm-accordion-wrapper collapsed']//div[1]");
251 $this->click("xpath=//*[@id='2_chk']/div[@class='custom-group custom-group-$customGroupTitle crm-accordion-wrapper']//div[2]//table//tbody//tr[2]//td[2]//table//tbody//tr[1]//td[1]//label");
252 $this->click("xpath=//*[@id='2_chk']/div[@class='custom-group custom-group-$customGroupTitle crm-accordion-wrapper']//div[2]//table//tbody//tr[4]//td[2]//table//tbody//tr[1]//td[1]//label");
6a488035
TO
253
254 // Choose Registration Date.
255 // Using helper webtestFillDate function.
256 $this->webtestFillDate('register_date', 'now');
257 $today = date('F jS, Y', strtotime('now'));
258 // May 5th, 2010
259
260 // Select participant status
33cf86bd 261 $this->select('status_id', 'value=1');
6a488035
TO
262
263 // Setting registration source
264 $this->type('source', 'Event StandaloneAddTest Webtest');
265
266 // Since we're here, let's check of screen help is being displayed properly
267 $this->assertTrue($this->isTextPresent('Source for this registration (if applicable).'));
268
269 // Select an event fee
270 $this->waitForElementPresent('priceset');
271
2861538e 272 $this->click("xpath=//input[@class='crm-form-radio']");
6a488035
TO
273
274 // Enter amount to be paid (note: this should default to selected fee level amount, s/b fixed during 3.2 cycle)
275 $this->type('total_amount', '800');
276
277 // Select payment method = Check and enter chk number
278 $this->select('payment_instrument_id', 'value=4');
279 $this->waitForElementPresent('check_number');
280 $this->type('check_number', '1044');
281
282 // Clicking save.
283 $this->click('_qf_Participant_upload-bottom');
284 $this->waitForPageToLoad($this->getTimeoutMsec());
285
286 // Is status message correct?
6c5f7368 287 $this->waitForText('crm-notification-container', "Event registration for $displayName has been added");
6a488035 288
2861538e 289 $this->waitForElementPresent("xpath=//*[@id='Search']//table/tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035 290 //click through to the participant view screen
2861538e 291 $this->click("xpath=//*[@id='Search']//table/tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035
TO
292 $this->waitForElementPresent('_qf_ParticipantView_cancel-bottom');
293
294 $this->webtestVerifyTabularData(
295 array(
296 'Event' => 'Rain-forest Cup Youth Soccer Tournament',
297 'Participant Role' => 'Attendee, Volunteer, Host',
298 'Status' => 'Registered',
299 'Event Source' => 'Event StandaloneAddTest Webtest',
2861538e 300 'Fees' => '$ 800.00',
6a488035
TO
301 )
302 );
303
304 $this->assertTrue($this->isTextPresent("$customGroupTitle"));
305 $this->assertTrue($this->isTextPresent("$checkboxOptionLabel1"));
306 $this->assertTrue($this->isTextPresent("$radioOptionLabel1"));
307
308 // check contribution record as well
309 //click through to the contribution view screen
2861538e 310 $this->click("xpath=id('ParticipantView')/div[2]/table[@class='selector row-highlight']/tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035
TO
311 $this->waitForElementPresent('_qf_ContributionView_cancel-bottom');
312
313 $this->webtestVerifyTabularData(
314 array(
315 'From' => $displayName,
316 'Financial Type' => 'Event Fee',
317 'Total Amount' => '$ 800.00',
318 'Contribution Status' => 'Completed',
319 'Paid By' => 'Check',
320 'Check Number' => '1044',
321 )
322 );
323 }
324
76e86fd8
CW
325 function testEventAddMultipleParticipants() {
326
6a488035
TO
327 // Log in using webtestLogin() method
328 $this->webtestLogin();
76e86fd8 329
6a488035
TO
330 $processorId = $this->webtestAddPaymentProcessor('dummy' . substr(sha1(rand()), 0, 7));
331 $rand = substr(sha1(rand()), 0, 7);
332 $firstName = 'First' . $rand;
333 $lastName = 'Last' . $rand;
334 $rand = substr(sha1(rand()), 0, 7);
335 $lastName2 = 'Last' . $rand;
42daf119 336
c038a4f0 337 $this->openCiviPage("participant/add", "reset=1&action=add&context=standalone&mode=test&eid=3");
76e86fd8 338
6a488035
TO
339 $this->assertTrue($this->isTextPresent("Register New Participant"), "Page title 'Register New Participant' missing");
340 $this->assertTrue($this->isTextPresent("A TEST transaction will be submitted"), "test mode status 'A TEST transaction will be submitted' missing");
341 $this->_fillParticipantDetails($firstName, $lastName, $processorId);
342 $this->click('_qf_Participant_upload_new-bottom');
343 $this->waitForPageToLoad($this->getTimeoutMsec());
76e86fd8 344
6a488035
TO
345 $this->assertTrue($this->isTextPresent("Register New Participant"), "Page title 'Register New Participant' missing");
346 $this->assertTrue($this->isTextPresent("A TEST transaction will be submitted"), "test mode status 'A TEST transaction will be submitted' missing");
347 $this->_fillParticipantDetails($firstName, $lastName2, $processorId);
348 $this->click('_qf_Participant_upload_new-bottom');
349 $this->waitForPageToLoad($this->getTimeoutMsec());
76e86fd8 350
6a488035 351 //searching the paricipants
c038a4f0 352 $this->openCiviPage("event/search", "reset=1");
6a488035
TO
353 $this->type('sort_name', $firstName);
354 $eventName = "Rain-forest Cup Youth Soccer Tournament";
355 $this->type("event_name", $eventName);
356 $this->click("event_name");
357 $this->waitForElementPresent("css=div.ac_results-inner li");
358 $this->click("css=div.ac_results-inner li");
359 $this->check('participant_test');
360 $this->click("_qf_Search_refresh");
361 $this->waitForElementPresent("participantSearch");
76e86fd8 362
6a488035
TO
363 //verifying the registered participants
364 $names = array( "{$lastName}, {$firstName}", "{$lastName2}, {$firstName}" );
365 $status = "Registered (test)";
76e86fd8 366
6a488035
TO
367 foreach($names as $name) {
368 $this->verifyText("xpath=//div[@id='participantSearch']//table//tbody//tr/td[@class='crm-participant-sort_name']/a[text()='{$name}']/../../td[9]", preg_quote($status));
369 $this->verifyText("xpath=//div[@id='participantSearch']//table//tbody//tr/td[@class='crm-participant-sort_name']/a[text()='{$name}']/../../td[4]/a", preg_quote($eventName));
370}
371 }
372
c4e6d4e8
PJ
373 function testAjaxCustomGroupLoad() {
374 $this->webtestLogin();
375
376 $customSets = array(
377 array('entity' => 'ParticipantEventName', 'subEntity' => 'Fall Fundraiser Dinner',
16345393 378 'triggerElement' => array('name' => "event_id", 'type' => "select2")),
c4e6d4e8
PJ
379 array('entity' => 'ParticipantRole', 'subEntity' => 'Attendee','triggerElement' => array('type' => "checkbox"))
380 );
381 $pageUrl = array('url' => "participant/add", 'args' => "reset=1&action=add&context=standalone");
382 $this->customFieldSetLoadOnTheFlyCheck($customSets, $pageUrl);
383 }
384
63dbed83 385 /*
386 * Webtest for CRM-10983
387 *
388 */
389 function testCheckDuplicateCustomDataLoad() {
390 $this->webtestLogin();
391
392 $customSets = array(
393 array('entity' => 'ParticipantEventType', 'subEntity' => '- Any -',
394 'triggerElement' => array('name' => "event_id", 'type' => "select")),
395 array('entity' => 'ParticipantEventName', 'subEntity' => '- Any -',
396 'triggerElement' => array('name' => "event_id", 'type' => "select")),
397 array('entity' => 'ParticipantEventName', 'subEntity' => 'Rain-forest Cup Youth Soccer Tournament',
398 'triggerElement' => array('name' => "event_id", 'type' => "select")),
399 array('entity' => 'ParticipantRole', 'subEntity' => '- Any -','triggerElement' => array('type' => "checkbox")),
400 array('entity' => 'ParticipantRole', 'subEntity' => 'Volunteer','triggerElement' => array('type' => "checkbox"))
401 );
402
403 $return = $this->addCustomGroupField($customSets);
404
405 $this->openCiviPage("participant/add", "reset=1&action=add&context=standalone", "_qf_Participant_upload-bottom");
406
407 // Select event.
33cf86bd 408 $this->select2('event_id', "Rain-forest Cup Youth Soccer Tournament");
63dbed83 409
410 // Select role.
411 $this->click('role_id[2]');
412
413 foreach($return as $values) {
414 foreach ($values as $entityType => $customData) {
415 //checking for duplicate custom data present or not
2861538e 416 $this->assertElementPresent("xpath=//*[@id='customData']/div[@class='custom-group custom-group-{$customData['cgtitle']} crm-accordion-wrapper ']");
417 $this->assertEquals(1, $this->getXpathCount("//*[@id='customData']/div[@class='custom-group custom-group-{$customData['cgtitle']} crm-accordion-wrapper ']"));
63dbed83 418 }
419 }
420 }
421
6a488035 422 function _fillParticipantDetails($firstName, $lastName, $processorId) {
2861538e 423 $this->webtestNewDialogContact($firstName, $lastName);
76e86fd8 424
6a488035
TO
425 $this->select('payment_processor_id', "value={$processorId}");
426 $this->verifySelectedValue("event_id", "3");
427 $this->check("role_id[1]");
428 $this->webtestAddCreditCardDetails();
429 $this->webtestAddBillingDetails();
430 }
232624b1 431}