Webtest Fix
[civicrm-core.git] / tests / phpunit / WebTest / Event / AddEventTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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_AddEventTest
31 */
32 class WebTest_Event_AddEventTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testAddPaidEventNoTemplate() {
39 // Log in using webtestLogin() method
40 $this->webtestLogin();
41
42 // Use default payment processor
43 $processorName = 'Test Processor';
44 $this->webtestAddPaymentProcessor($processorName);
45
46 $this->openCiviPage("event/add", "reset=1&action=add");
47
48 $eventTitle = 'My Conference - ' . substr(sha1(rand()), 0, 7);
49 $eventDescription = "Here is a description for this conference.";
50 $this->_testAddEventInfo($eventTitle, $eventDescription);
51
52 $streetAddress = "100 Main Street";
53 $this->_testAddLocation($streetAddress);
54
55 $this->_testAddReminder($eventTitle);
56
57 $this->_testAddFees(FALSE, FALSE, $processorName);
58
59 // intro text for registration page
60 $registerIntro = "Fill in all the fields below and click Continue.";
61 $multipleRegistrations = TRUE;
62 $this->_testAddOnlineRegistration($registerIntro, $multipleRegistrations);
63
64 $eventInfoStrings = array($eventTitle, $eventDescription, $streetAddress);
65 $eventId = $this->_testVerifyEventInfo($eventTitle, $eventInfoStrings);
66
67 $registerStrings = array("225.00", "Member", "300.00", "Non-member", $registerIntro);
68 $registerUrl = $this->_testVerifyRegisterPage($registerStrings);
69
70 $numberRegistrations = 3;
71 $anonymous = TRUE;
72 $this->_testOnlineRegistration($registerUrl, $numberRegistrations, $anonymous);
73
74 // Now test making a copy of the event
75 $this->webtestLogin();
76 $this->openCiviPage("event/manage", "reset=1&action=copy&id=$eventId");
77 $this->_testVerifyEventInfo('Copy of ' . $eventTitle, $eventInfoStrings);
78 $this->_testVerifyRegisterPage($registerStrings);
79 }
80
81 public function testAddPaidEventDiscount() {
82
83 // Log in using webtestLogin() method
84 $this->webtestLogin();
85
86 // Use default payment processor
87 $processorName = 'Test Processor';
88 $this->webtestAddPaymentProcessor($processorName);
89
90 $this->openCiviPage("event/add", "reset=1&action=add");
91
92 $eventTitle = 'My Conference - ' . substr(sha1(rand()), 0, 7);
93 $eventDescription = "Here is a description for this conference.";
94 $this->_testAddEventInfo($eventTitle, $eventDescription);
95
96 $streetAddress = "100 Main Street";
97 $this->_testAddLocation($streetAddress);
98
99 $this->_testAddReminder($eventTitle);
100
101 $this->_testAddFees(TRUE, FALSE, $processorName);
102
103 // intro text for registration page
104 $registerIntro = "Fill in all the fields below and click Continue.";
105 $multipleRegistrations = TRUE;
106 $this->_testAddOnlineRegistration($registerIntro, $multipleRegistrations);
107
108 $discountFees = array("225.00", "300.00");
109
110 $eventInfoStrings = array($eventTitle, $eventDescription, $streetAddress);
111 $this->_testVerifyEventInfo($eventTitle, $eventInfoStrings, $discountFees);
112
113 $registerStrings = array_push($discountFees, "Member", "Non-member", $registerIntro);
114 $registerUrl = $this->_testVerifyRegisterPage($registerStrings);
115
116 $numberRegistrations = 3;
117 $anonymous = TRUE;
118 $this->_testOnlineRegistration($registerUrl, $numberRegistrations, $anonymous);
119 }
120
121 public function testDeletePriceSetDiscount() {
122
123 // Log in using webtestLogin() method
124 $this->webtestLogin();
125
126 // Use default payment processor
127 $processorName = 'Test Processor';
128 $this->webtestAddPaymentProcessor($processorName);
129
130 $this->openCiviPage("event/add", "reset=1&action=add");
131
132 $eventTitle = 'My Conference - ' . substr(sha1(rand()), 0, 7);
133 $eventDescription = "Here is a description for this conference.";
134 $this->_testAddEventInfo($eventTitle, $eventDescription);
135
136 $streetAddress = "100 Main Street";
137 $this->_testAddLocation($streetAddress);
138
139 //Add two discounts
140 $discount = $this->_testAddFees(TRUE, FALSE, $processorName, TRUE);
141
142 // intro text for registration page
143 $registerIntro = "Fill in all the fields below and click Continue.";
144 $multipleRegistrations = TRUE;
145 $this->_testAddOnlineRegistration($registerIntro, $multipleRegistrations);
146
147 $discountFees = array("225.00", "300.00");
148
149 $eventInfoStrings = array($eventTitle, $eventDescription, $streetAddress);
150 $id = $this->_testVerifyEventInfo($eventTitle, $eventInfoStrings, $discountFees);
151
152 $registerStrings = array_push($discountFees, "Member", "Non-member", $registerIntro);
153 $registerUrl = $this->_testVerifyRegisterPage($registerStrings);
154
155 //Add Price Set now
156 $this->openCiviPage("event/manage/fee", "reset=1&action=update&id=$id", "_qf_Fee_upload-bottom");
157 $this->click("xpath=//a[@id='quickconfig']");
158 $this->waitForElementPresent("xpath=//div[@class='ui-dialog-buttonset']");
159 $this->click("xpath=//div[@class='ui-dialog-buttonset']//button/span[text()='Continue']");
160
161 //Assert quick config change and discount deletion
162 $this->openCiviPage("admin/price", "reset=1");
163 foreach ($discount as $key => $val) {
164 $this->waitForTextPresent($val);
165 }
166 }
167
168 public function testAddDeleteEventDiscount() {
169
170 // Log in using webtestLogin() method
171 $this->webtestLogin();
172
173 // Use default payment processor
174 $processorName = 'Test Processor';
175 $this->webtestAddPaymentProcessor($processorName);
176
177 $this->openCiviPage("event/add", "reset=1&action=add");
178
179 $eventTitle = 'My Conference - ' . substr(sha1(rand()), 0, 7);
180 $eventDescription = "Here is a description for this conference.";
181 $this->_testAddEventInfo($eventTitle, $eventDescription);
182
183 $streetAddress = "100 Main Street";
184 $this->_testAddLocation($streetAddress);
185
186 //Add two discounts
187 $discount = $this->_testAddFees(TRUE, FALSE, $processorName, TRUE);
188
189 // intro text for registration page
190 $registerIntro = "Fill in all the fields below and click Continue.";
191 $multipleRegistrations = TRUE;
192 $this->_testAddOnlineRegistration($registerIntro, $multipleRegistrations);
193
194 $discountFees = array("225.00", "300.00");
195
196 $eventInfoStrings = array($eventTitle, $eventDescription, $streetAddress);
197 $id = $this->_testVerifyEventInfo($eventTitle, $eventInfoStrings, $discountFees);
198
199 $registerStrings = array_push($discountFees, "Member", "Non-member", $registerIntro);
200 $registerUrl = $this->_testVerifyRegisterPage($registerStrings);
201 //Delete the discount
202 $this->_deleteDiscount($id, $eventTitle, $discount);
203 }
204
205 /**
206 * @param int $id
207 * @param $eventTitle
208 * @param $discount
209 */
210 public function _deleteDiscount($id, $eventTitle, $discount) {
211 $this->openCiviPage("event/manage/fee", "reset=1&action=update&id=$id", "_qf_Fee_upload-bottom");
212 $this->type("discount_name_2", "");
213 $this->click("xpath=//tr[@id='discount_2']/td[3]/a");
214 $this->click("xpath=//tr[@id='discount_2']/td[4]/a");
215 $this->type("discounted_value_1_2", "");
216 $this->type("discounted_value_2_2", "");
217 $this->click("_qf_Fee_upload-bottom");
218 $this->waitForText('crm-notification-container', "'Fees' information has been saved.");
219 //Assertions
220 $this->openCiviPage("admin/price", "reset=1");
221 $this->assertStringsPresent($discount[1]);
222 }
223
224 public function testAddPaidEventWithTemplate() {
225
226 // Log in using webtestLogin() method
227 $this->webtestLogin();
228
229 // Use default payment processor
230 $processorName = 'Test Processor';
231 $this->webtestAddPaymentProcessor($processorName);
232
233 $this->openCiviPage("event/add", "reset=1&action=add");
234
235 $eventTitle = 'My Conference - ' . substr(sha1(rand()), 0, 7);
236 $eventDescription = "Here is a description for this conference.";
237 // Select paid online registration template.
238 $templateID = 6;
239 $eventTypeID = 1;
240 $this->_testAddEventInfoFromTemplate($eventTitle, $eventDescription, $templateID, $eventTypeID);
241
242 $streetAddress = "100 Main Street";
243 $this->_testAddLocation($streetAddress);
244
245 $this->_testAddFees(FALSE, FALSE, $processorName);
246
247 // intro text for registration page
248 $registerIntro = "Fill in all the fields below and click Continue.";
249 $this->_testAddOnlineRegistration($registerIntro);
250
251 // $eventInfoStrings = array( $eventTitle, $eventDescription, $streetAddress );
252 $eventInfoStrings = array($eventTitle, $streetAddress);
253 $this->_testVerifyEventInfo($eventTitle, $eventInfoStrings);
254
255 $registerStrings = array("225.00", "Member", "300.00", "Non-member", $registerIntro);
256 $this->_testVerifyRegisterPage($registerStrings);
257 }
258
259 public function testAddFreeEventWithTemplate() {
260
261 // Log in using webtestLogin() method
262 $this->webtestLogin();
263
264 $this->openCiviPage("event/add", "reset=1&action=add");
265
266 $eventTitle = 'My Free Meeting - ' . substr(sha1(rand()), 0, 7);
267 $eventDescription = "Here is a description for this free meeting.";
268 // Select "Free Meeting with Online Registration" template (id = 5).
269 $templateID = 5;
270 $eventTypeID = 4;
271
272 $this->_testAddEventInfoFromTemplate($eventTitle, $eventDescription, $templateID, $eventTypeID);
273
274 $streetAddress = "100 Main Street";
275
276 $this->_testAddLocation($streetAddress);
277
278 // Go to Fees tab and check that Paid Event is false (No)
279 $this->click("link=Fees");
280 $this->waitForElementPresent("_qf_Fee_upload-bottom");
281 $this->verifyChecked("CIVICRM_QFID_0_is_monetary");
282
283 // intro text for registration page
284 $registerIntro = "Fill in all the fields below and click Continue.";
285 $this->_testAddOnlineRegistration($registerIntro);
286
287 // $eventInfoStrings = array( $eventTitle, $eventDescription, $streetAddress );
288 $eventInfoStrings = array($eventTitle, $streetAddress);
289 $this->_testVerifyEventInfo($eventTitle, $eventInfoStrings);
290
291 $registerStrings = array($registerIntro);
292 $this->_testVerifyRegisterPage($registerStrings);
293 // make sure paid_event div is NOT present since this is a free event
294 $this->verifyElementNotPresent("css=div.paid_event-section");
295 }
296
297 public function testUnpaidPaid() {
298 // Log in using webtestLogin() method
299 $this->webtestLogin();
300
301 $this->openCiviPage("event/add", "reset=1&action=add");
302 $eventTitle = 'My Conference - ' . substr(sha1(rand()), 0, 7);
303 $eventDescription = "Here is a description for this conference.";
304 $this->_testAddEventInfo($eventTitle, $eventDescription);
305
306 //add fee section with pay later checked
307 $this->_testAddFees(FALSE, FALSE, NULL, FALSE, TRUE);
308
309 //make the event unpaid
310 $this->waitForElementPresent("_qf_Fee_upload-bottom");
311 $this->assertChecked('is_pay_later');
312 $this->click("CIVICRM_QFID_0_is_monetary");
313
314 $this->click("_qf_Fee_upload-bottom");
315 $this->waitForText('crm-notification-container', "'Fees' information has been saved.");
316 $this->waitForAjaxContent();
317
318 //check if pay later option is disabled
319 $this->click('CIVICRM_QFID_1_is_monetary');
320 $this->waitForElementPresent('is_pay_later');
321 $this->assertNotChecked('is_pay_later');
322 }
323
324 public function testAjaxCustomGroupLoad() {
325 $this->webtestLogin();
326
327 $triggerElement = array('name' => 'event_type_id', 'type' => 'select');
328 $customSets = array(
329 array('entity' => 'Event', 'subEntity' => 'Conference', 'triggerElement' => $triggerElement),
330 );
331
332 $pageUrl = array('url' => 'event/add', 'args' => "reset=1&action=add");
333 $this->customFieldSetLoadOnTheFlyCheck($customSets, $pageUrl);
334 }
335
336 /**
337 * @param $eventTitle
338 * @param $eventDescription
339 */
340 public function _testAddEventInfo($eventTitle, $eventDescription) {
341 $this->waitForElementPresent("_qf_EventInfo_upload-bottom");
342
343 $this->select("event_type_id", "value=1");
344
345 // Attendee role s/b selected now.
346 $this->select("default_role_id", "value=1");
347
348 // Enter Event Title, Summary and Description
349 $this->type("title", $eventTitle);
350 $this->type("summary", "This is a great conference. Sign up now!");
351
352 // Type description in ckEditor (fieldname, text to type, editor)
353 $this->fillRichTextField("description", $eventDescription, 'CKEditor');
354
355 // Choose Start and End dates.
356 // Using helper webtestFillDate function.
357 $this->webtestFillDateTime("start_date", "+1 week");
358 $this->webtestFillDateTime("end_date", "+1 week 1 day 8 hours ");
359
360 $this->type("max_participants", "50");
361 $this->click("is_map");
362 $this->click("is_public");
363 $this->clickLink("_qf_EventInfo_upload-bottom");
364 }
365
366 /**
367 * @param $eventTitle
368 * @param $eventDescription
369 * @param int $templateID
370 * @param int $eventTypeID
371 */
372 public function _testAddEventInfoFromTemplate($eventTitle, $eventDescription, $templateID, $eventTypeID) {
373 $this->waitForElementPresent("_qf_EventInfo_upload-bottom");
374
375 // Select event template. Use option value, not label - since labels can be translated and test would fail
376 $this->select("template_id", "value={$templateID}");
377
378 // Wait for event type to be filled in (since page refreshes)
379 $this->waitForAjaxContent();
380 $this->verifySelectedValue("event_type_id", $eventTypeID);
381
382 // Attendee role s/b selected now.
383 $this->verifySelectedValue("default_role_id", "1");
384
385 // Enter Event Title, Summary and Description
386 $this->type("title", $eventTitle);
387
388 $this->type("summary", "This is a great conference. Sign up now!");
389
390 // Type description in ckEditor (fieldname, text to type, editor)
391 $this->fillRichTextField("description", $eventDescription, 'CKEditor');
392
393 // Choose Start and End dates.
394 // Using helper webtestFillDate function.
395 $this->webtestFillDateTime("start_date", "+1 week");
396 $this->webtestFillDateTime("end_date", "+1 week 1 day 8 hours ");
397
398 $this->type("max_participants", "50");
399 $this->click("is_map");
400 $this->clickLink("_qf_EventInfo_upload-bottom");
401 }
402
403 /**
404 * @param $streetAddress
405 */
406 public function _testAddLocation($streetAddress) {
407 // Wait for Location tab form to load
408 $this->waitForAjaxContent();
409 $this->waitForElementPresent("_qf_Location_upload-bottom");
410
411 // Fill in address fields
412 $streetAddress = "100 Main Street";
413 $this->type("address_1_street_address", $streetAddress);
414 $this->type("address_1_city", "San Francisco");
415 $this->type("address_1_postal_code", "94117");
416 $this->select('address_1_country_id', 'United States');
417 $this->select("address_1_state_province_id", "value=1004");
418 $this->type("email_1_email", "info@civicrm.org");
419
420 $this->click("_qf_Location_upload-bottom");
421
422 // Wait for "saved" status msg
423 $this->waitForText('crm-notification-container', "'Event Location' information has been saved.");
424 }
425
426 /**
427 * @param bool $discount
428 * @param bool $priceSet
429 * @param string $processorName
430 * @param bool $double
431 * @param bool $payLater
432 *
433 * @return array
434 */
435 public function _testAddFees($discount = FALSE, $priceSet = FALSE, $processorName = "PP Pro", $double = FALSE, $payLater = FALSE) {
436 $discount1 = "Early-bird" . substr(sha1(rand()), 0, 7);
437 $discount2 = "";
438 // Go to Fees tab
439 $this->click("link=Fees");
440 $this->waitForElementPresent("_qf_Fee_upload-bottom");
441 $this->click("CIVICRM_QFID_1_is_monetary");
442
443 if ($payLater) {
444 $this->click('is_pay_later');
445 $this->fillRichTextField('pay_later_receipt', 'testing later instructions');
446 }
447 else {
448 $this->uncheck('is_pay_later');
449 }
450
451 if ($processorName) {
452 $this->check("xpath=//tr[@class='crm-event-manage-fee-form-block-payment_processor']/td[2]/label[text()='$processorName']/../input");
453 }
454 $this->select("financial_type_id", "value=4");
455 if ($priceSet) {
456 // get one - TBD
457 }
458 else {
459 $this->type("label_1", "Member");
460 $this->type("value_1", "225.00");
461 $this->type("label_2", "Non-member");
462 $this->type("value_2", "300.00");
463 $this->click("CIVICRM_QFID_1_6");
464 }
465
466 if ($discount) {
467 // enter early bird discount fees
468 $this->click("is_discount");
469 $this->waitForElementPresent("discount_name_1");
470 $this->type("discount_name_1", $discount1);
471 $this->webtestFillDate("discount_start_date_1", "-3 week");
472 $this->webtestFillDate("discount_end_date_1", "-2 week");
473 $this->clickLink("_qf_Fee_submit", "discounted_value_1_1");
474
475 $this->type("discounted_value_1_1", "225.00");
476 $this->type("discounted_value_2_1", "300.00");
477
478 if ($double) {
479 $discount2 = "Early-bird" . substr(sha1(rand()), 0, 7);
480 // enter early bird discount fees
481 $this->click("link=another discount set");
482 $this->waitForElementPresent("discount_name_2");
483 $this->type("discount_name_2", $discount2);
484 $this->webtestFillDate("discount_start_date_2", "-1 week");
485 $this->webtestFillDate("discount_end_date_2", "+1 week");
486 $this->clickLink("_qf_Fee_submit", "discounted_value_2_1");
487 $this->type("discounted_value_1_2", "225.00");
488 $this->type("discounted_value_2_2", "300.00");
489 }
490 $this->click("xpath=//fieldset[@id='discount']/fieldset/table/tbody/tr[2]/td[3]/input");
491 }
492 $this->click("_qf_Fee_upload-bottom");
493
494 // Wait for "saved" status msg
495 $this->waitForText('crm-notification-container', "'Fees' information has been saved");
496 return array($discount1, $discount2);
497 }
498
499 /**
500 * @param $registerIntro
501 * @param bool $multipleRegistrations
502 */
503 public function _testAddOnlineRegistration($registerIntro, $multipleRegistrations = FALSE) {
504 // Go to Online Registration tab
505 $this->click("link=Online Registration");
506 $this->waitForElementPresent("_qf_Registration_upload-bottom");
507
508 $isChecked = $this->isChecked('is_online_registration');
509 if (!$isChecked) {
510 $this->click("is_online_registration");
511 }
512 $this->assertChecked("is_online_registration");
513 if ($multipleRegistrations) {
514 $isChecked = $this->isChecked('is_multiple_registrations');
515 if (!$isChecked) {
516 $this->click("is_multiple_registrations");
517 }
518 $this->assertChecked("is_multiple_registrations");
519 }
520
521 $this->fillRichTextField("intro_text", $registerIntro, 'CKEditor', TRUE);
522
523 // enable confirmation email
524 $this->click("CIVICRM_QFID_1_is_email_confirm");
525 $this->type("confirm_from_name", "Jane Doe");
526
527 $this->type("confirm_from_email", "jane.doe@example.org");
528
529 $this->click("_qf_Registration_upload-bottom");
530 $this->waitForText('crm-notification-container', "'Online Registration' information has been saved.");
531 }
532
533 /**
534 * @param $eventTitle
535 * @param $eventInfoStrings
536 * @param null $eventFees
537 *
538 * @return null
539 */
540 public function _testVerifyEventInfo($eventTitle, $eventInfoStrings, $eventFees = NULL) {
541 // verify event input on info page
542 // start at Manage Events listing
543 $this->openCiviPage("event/manage", "reset=1");
544 $this->click("link=$eventTitle");
545
546 // Look for Register button
547 $this->waitForElementPresent("link=Register Now");
548
549 // Check for correct event info strings
550 $this->assertStringsPresent($eventInfoStrings);
551
552 // Optionally verify event fees (especially for discounts)
553 if ($eventFees) {
554 $this->assertStringsPresent($eventFees);
555
556 }
557 return $this->urlArg('id');
558 }
559
560 /**
561 * @param $registerStrings
562 *
563 * @return string
564 */
565 public function _testVerifyRegisterPage($registerStrings) {
566 // Go to Register page and check for intro text and fee levels
567 $this->click("link=Register Now");
568 $this->waitForElementPresent("_qf_Register_upload-bottom");
569 $this->assertStringsPresent($registerStrings);
570 return $this->getLocation();
571 }
572
573 /**
574 * @param $registerUrl
575 * @param int $numberRegistrations
576 * @param bool $anonymous
577 * @param bool $isPayLater
578 * @param array $participantEmailInfo
579 * @param null $paymentProcessor
580 *
581 * @return array
582 */
583 public function _testOnlineRegistration($registerUrl, $numberRegistrations = 1, $anonymous = TRUE, $isPayLater = FALSE, $participantEmailInfo = array(), $paymentProcessor = NULL) {
584 $infoPassed = FALSE;
585 if (!empty($participantEmailInfo)) {
586 $infoPassed = TRUE;
587 }
588 if ($anonymous) {
589 $this->webtestLogout();
590 }
591 $primaryParticipantInfo = array();
592 $this->open($registerUrl);
593 $this->waitForPageToLoad($this->getTimeoutMsec());
594
595 $this->waitForElementPresent('additional_participants');
596
597 $this->select("additional_participants", "value=" . $numberRegistrations);
598
599 if ($infoPassed) {
600 $primaryParticipantInfo['first_name'] = $participantEmailInfo[0]['first_name'];
601 $primaryParticipantInfo['last_name'] = $participantEmailInfo[0]['last_name'];
602 $primaryParticipantInfo['email'] = $participantEmailInfo[0]['email'];
603 }
604 else {
605 $primaryParticipantInfo['first_name'] = "Jane";
606 $primaryParticipantInfo['last_name'] = "Smith" . substr(sha1(rand()), 0, 7);
607 $primaryParticipantInfo['email'] = "smith" . substr(sha1(rand()), 0, 7) . "@example.org";
608 }
609
610 $this->type("first_name", $primaryParticipantInfo['first_name']);
611 $this->type("last_name", $primaryParticipantInfo['last_name']);
612 $this->type("email-Primary", $primaryParticipantInfo['email']);
613
614 if (!$isPayLater) {
615 if ($paymentProcessor) {
616 $paymentProcessorEle = $this->getAttribute("xpath=//form[@id='Register']//label[contains(text(), '{$paymentProcessor}')]/@for");
617 $this->click($paymentProcessorEle);
618 }
619 $this->select("credit_card_type", "value=Visa");
620 $this->type("credit_card_number", "4111111111111111");
621 $this->type("cvv2", "000");
622 $this->select("credit_card_exp_date[M]", "value=1");
623 $this->select("credit_card_exp_date[Y]", "value=2020");
624 $this->type("billing_first_name", $primaryParticipantInfo['first_name']);
625 $this->type("billing_last_name", $primaryParticipantInfo['last_name']);
626 $this->type("billing_street_address-5", "15 Main St.");
627 $this->type(" billing_city-5", "San Jose");
628 $this->select("billing_country_id-5", "value=1228");
629 $this->select("billing_state_province_id-5", "value=1004");
630 $this->type("billing_postal_code-5", "94129");
631 }
632
633 $this->click("_qf_Register_upload-bottom");
634
635 if ($numberRegistrations > 1) {
636 for ($i = 1; $i <= $numberRegistrations; $i++) {
637 $this->waitForPageToLoad($this->getTimeoutMsec());
638 // Look for Skip button
639 $this->waitForElementPresent("_qf_Participant_{$i}_next_skip-Array");
640
641 if ($infoPassed) {
642 $this->type("first_name", $participantEmailInfo[$i]['first_name']);
643 $this->type("last_name", $participantEmailInfo[$i]['last_name']);
644 $this->type("email-Primary", $participantEmailInfo[$i]['email']);
645 }
646 else {
647 $this->type("first_name", "Jane Add $i");
648 $this->type("last_name", "Smith" . substr(sha1(rand()), 0, 7));
649 $this->type("email-Primary", "smith" . substr(sha1(rand()), 0, 7) . "@example.org");
650 }
651
652 $this->click("_qf_Participant_{$i}_next");
653 }
654 }
655
656 $this->waitForPageToLoad($this->getTimeoutMsec());
657 $this->waitForElementPresent("_qf_Confirm_next-bottom");
658 $confirmStrings = array("Event Fee(s)");
659 if (!$isPayLater) {
660 $confirmStrings += array("Billing Name and Address", "Credit Card Information");
661 }
662 $this->assertStringsPresent($confirmStrings);
663 $this->click("_qf_Confirm_next-bottom");
664 $this->waitForPageToLoad($this->getTimeoutMsec());
665 $thankStrings = array("Thank You for Registering", "Event Total");
666 if (!$isPayLater) {
667 $thankStrings = array("Transaction Date");
668 }
669 else {
670 $thankStrings += array("testing later instructions");
671 }
672 $this->assertStringsPresent($thankStrings);
673 return $primaryParticipantInfo;
674 }
675
676 /**
677 * @param $eventTitle
678 */
679 public function _testAddReminder($eventTitle) {
680 // Go to Schedule Reminders tab
681 $this->click('css=li#tab_reminder a');
682 $this->waitForElementPresent("newScheduleReminder");
683 $this->click("newScheduleReminder");
684 $this->waitForElementPresent("_qf_ScheduleReminders_next-bottom");
685 $this->type("title", "Event Reminder for " . $eventTitle);
686 $this->select('entity', 'label=Registered');
687
688 $this->select('start_action_offset', 'label=1');
689 $this->select('start_action_condition', 'label=after');
690 $this->click('is_repeat');
691 $this->select('repetition_frequency_interval', 'label=2');
692 $this->select('end_date', 'label=Event End Date');
693 $this->click('recipient');
694 $this->select('recipient', 'label=Participant Role');
695 // $this->select( 'recipient_listing', 'value=1' );
696
697 // Fill Subject
698 $subject = 'subject' . substr(sha1(rand()), 0, 4);
699 $this->type('subject', $subject);
700 $this->fillRichTextField("html_message", "This is the test HTML version here!!!", 'CKEditor');
701
702 $this->type("text_message", "This is the test text version here!!!");
703 //click on save
704 $this->click('_qf_ScheduleReminders_next-bottom');
705 $this->waitForElementPresent("link=Add Reminder");
706
707 $this->waitForElementPresent("xpath=//div[@class='dataTables_wrapper no-footer']/table/tbody/tr/td[7]/span/a[1]");
708
709 $verifyText = array(
710 1 => 'Event Reminder for ' . $eventTitle,
711 3 => '1 hour after Event Start Date',
712 4 => 'Registered',
713 5 => 'Yes',
714 6 => 'Yes',
715 );
716
717 $this->waitForElementPresent("xpath=//form[@id='ScheduleReminders']//div[@id='option11_wrapper']");
718 //verify the fields for Event Reminder selector
719 foreach ($verifyText as $key => $value) {
720 $this->verifyText("xpath=//form[@id='ScheduleReminders']//div['option11_wrapper']/table/tbody/tr/td[$key]", $value);
721 }
722 }
723
724 public function testEventAddMultipleParticipant() {
725 $this->markTestSkipped('Skipping for now as it works fine locally.');
726 // Log in using webtestLogin() method
727 $this->webtestLogin();
728 $this->openCiviPage("event/add", "reset=1&action=add");
729
730 $eventTitle = 'My Conference - ' . substr(sha1(rand()), 0, 7);
731 $eventDescription = "Here is a description for this conference.";
732 $this->_testAddEventInfo($eventTitle, $eventDescription);
733 $streetAddress = "100 Main Street";
734 $this->_testAddLocation($streetAddress);
735
736 $this->_testAddFees(FALSE, FALSE, "Test Processor", FALSE, TRUE);
737 $registerIntro = "Fill in all the fields below and click Continue.";
738 $multipleRegistrations = TRUE;
739 $this->_testAddOnlineRegistration($registerIntro, $multipleRegistrations);
740 $eventInfoStrings = array($eventTitle, $eventDescription, $streetAddress);
741 $eventId = $this->_testVerifyEventInfo($eventTitle, $eventInfoStrings);
742
743 $registerStrings = array("225.00", "Member", "300.00", "Non-member", $registerIntro);
744 $registerUrl = $this->_testVerifyRegisterPage($registerStrings);
745 $numberRegistrations = 3;
746 $anonymous = TRUE;
747
748 // CRM-12615 add additional participants and check email, amount
749 $primaryParticipant = array(
750 'email' => "smith" . substr(sha1(rand()), 0, 7) . "@example.org",
751 'first_name' => "Kate",
752 'last_name' => "Simth" . substr(sha1(rand()), 0, 7),
753 );
754 $secParticipant = array(
755 'email' => "smith" . substr(sha1(rand()), 0, 7) . "@example.org",
756 'first_name' => "Kate Add 1",
757 'last_name' => "Simth" . substr(sha1(rand()), 0, 7),
758 );
759 $thirdParticipant = array(
760 'email' => "smith" . substr(sha1(rand()), 0, 7) . "@example.org",
761 'first_name' => "Kate Add 2",
762 'last_name' => "Simth" . substr(sha1(rand()), 0, 7),
763 );
764
765 $participantEmails = array($primaryParticipant, $secParticipant, $thirdParticipant);
766 $addtlPart = array($secParticipant, $thirdParticipant);
767 $primaryParticipantInfo = $this->_testOnlineRegistration($registerUrl, 2, $anonymous, FALSE, $participantEmails, "Test Processor");
768 $primaryDisplayName = "{$primaryParticipantInfo['first_name']} {$primaryParticipantInfo['last_name']}";
769 $this->webtestLogin();
770 $this->openCiviPage("event/search", "reset=1");
771 $this->select2("event_id", $eventTitle, FALSE);
772 $this->clickLink('_qf_Search_refresh');
773 $this->waitForElementPresent("xpath=//div[@id='participantSearch']/table/tbody//tr/td[3]/a");
774 $this->verifyText("xpath=//div[@id='participantSearch']/table/tbody//tr/td[@class='crm-participant-sort_name']/a[contains(text(),
775 '{$secParticipant['last_name']}, {$secParticipant['first_name']}')]/../../td[6]", preg_quote('225.00'));
776 $this->verifyText("xpath=//div[@id='participantSearch']/table/tbody//tr/td[@class='crm-participant-sort_name']/a[contains(text(),
777 '{$thirdParticipant['last_name']}, {$thirdParticipant['first_name']}')]/../../td[6]", preg_quote('225.00'));
778
779 //CRM-12618 check edit screen of additional participant and ensuring record_contribution not present
780 foreach ($addtlPart as $value) {
781 $this->clickAjaxLink("xpath=//div[@id='participantSearch']/table/tbody//tr/td[3]/a[contains(text(),
782 '{$value['last_name']}, {$value['first_name']}')]/../../td[11]/span/a[2][contains(text(), 'Edit')]",
783 '_qf_Participant_upload-bottom');
784 $this->assertTrue(
785 $this->isElementPresent("xpath=//tr[@class='crm-participant-form-block-registered-by']/td[2]/a[contains(text(),
786 '$primaryDisplayName')]"), 'Registered By info is wrong on additional participant edit form');
787 $this->assertTrue(
788 $this->isElementPresent(
789 "xpath=//table/tbody/tr[@class='crm-participant-form-block-displayName']/td[2][contains(text(),
790 '{$value['first_name']} {$value['last_name']}')]"),
791 'Wrong Participant edit form'
792 );
793 $this->assertFalse($this->isElementPresent('record_contribution'),
794 'Record Payment checkbox showed up wrongly for additional participant edit screen');
795 $this->click("_qf_Participant_cancel-top");
796 }
797
798 //unselect the payment processor configured
799 $this->openCiviPage("event/manage/fee", "reset=1&action=update&id={$eventId}", '_qf_Fee_upload-bottom');
800 $this->click("xpath=//tr[@class='crm-event-manage-fee-form-block-payment_processor']/td[2]/label[text()='Test Processor']");
801 $this->click("_qf_Fee_upload-bottom");
802 $this->waitForText('crm-notification-container', "'Fees' information has been saved.");
803
804 // add participant and 3 additional participant and change status of participant from edit participant
805 $this->_testOnlineRegistration($registerUrl, $numberRegistrations, $anonymous, TRUE);
806 $this->webtestLogin();
807
808 $this->openCiviPage("event/search?reset=1", "reset=1");
809 $this->select2("event_id", $eventTitle, FALSE);
810 $this->multiselect2('participant_status_id', array('Pending from pay later'));
811 $this->clickLink('_qf_Search_refresh');
812 $this->waitForElementPresent("xpath=//div[@id='participantSearch']/table/tbody//tr/td[11]/span/a[2][text()='Edit']");
813
814 $uRL = $this->getAttribute("xpath=//div[@id='participantSearch']/table/tbody//tr/td[11]/span/a[2][text()='Edit']@href");
815 $this->click("xpath=//div[@id='participantSearch']/table/tbody//tr/td[11]/span/a[2][text()='Edit']");
816 $this->waitForElementPresent("status_id");
817 $this->select('status_id', 'label=Registered');
818 $this->waitForElementPresent("record_contribution");
819 $this->click('record_contribution');
820 $this->waitForElementPresent("contribution_status_id");
821 $this->select('contribution_status_id', 'label=Completed');
822 $pID = $this->urlArg('id', $uRL);
823 $contributionID = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment', $pID, 'contribution_id', 'participant_id');
824 $this->click('_qf_Participant_upload-top');
825 $this->waitForElementPresent("xpath=//div[@id='participantSearch']/table/tbody//tr/td[11]/span/a[text()='Edit']");
826 $this->waitForElementPresent("xpath=//div[@id='participantSearch']/table/tbody//tr/td[11]/span/a[text()='View']");
827 $this->click("xpath=//div[@id='participantSearch']/table/tbody//tr/td[11]/span/a[text()='View']");
828 $this->waitForElementPresent("css=.ui-dialog");
829 $this->waitForAjaxContent();
830 $this->verifyFinancialRecords($contributionID);
831
832 // add participant and 3 additional participant and change status of participant from edit contribution
833 $this->_testOnlineRegistration($registerUrl, $numberRegistrations, $anonymous, TRUE);
834 $this->webtestLogin();
835
836 $this->openCiviPage("event/search?reset=1", "reset=1");
837 $this->select2("event_id", $eventTitle, FALSE);
838 $this->multiselect2('participant_status_id', array('Pending from pay later'));
839 $this->clickLink('_qf_Search_refresh');
840 $this->waitForElementPresent("xpath=//div[@id='participantSearch']/table/tbody//tr/td[11]/span/a[text()='View']");
841 $uRL = $this->getAttribute("xpath=//div[@id='participantSearch']/table/tbody//tr/td[11]/span/a[text()='View']@href");
842 $this->click("xpath=//div[@id='participantSearch']/table/tbody//tr/td[11]/span/a[text()='View']");
843 $pID = $this->urlArg('id', $uRL);
844 $contributionID = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment', $pID, 'contribution_id', 'participant_id');
845 $this->waitForElementPresent("xpath=//tr[@id='rowid$contributionID']/td[8]/span//a[text()='Edit']");
846 $this->click("xpath=//tr[@id='rowid$contributionID']/td[8]/span//a[text()='Edit']");
847 $this->waitForElementPresent("_qf_Contribution_upload-bottom");
848 $this->select('contribution_status_id', 'label=Completed');
849 $this->clickLink('_qf_Contribution_upload-bottom', '_qf_ParticipantView_cancel-bottom', FALSE);
850 $this->waitForAjaxContent();
851 $this->verifyFinancialRecords($contributionID);
852 }
853
854 /**
855 * @param int $contributionID
856 */
857 public function verifyFinancialRecords($contributionID) {
858 // check count for civicrm_contribution and civicrm_financial_item in civicrm_entity_financial_trxn
859 $query = "SELECT COUNT(DISTINCT(c1.id)) civicrm_contribution, COUNT(c2.id) civicrm_financial_item FROM civicrm_entity_financial_trxn c1
860 LEFT JOIN civicrm_entity_financial_trxn c2 ON c1.financial_trxn_id = c2.financial_trxn_id AND c2.entity_table ='civicrm_financial_item'
861 LEFT JOIN civicrm_financial_item cfi ON cfi.id = c2.entity_id
862 WHERE c1.entity_table = 'civicrm_contribution' AND c1.entity_id = %1 AND cfi.status_id = 1";
863 $params = array(1 => array($contributionID, 'Integer'));
864 $dao = CRM_Core_DAO::executeQuery($query, $params);
865 $dao->fetch();
866 $this->assertEquals('2', $dao->civicrm_contribution, 'civicrm_financial_trxn count does not match');
867 $this->assertEquals('8', $dao->civicrm_financial_item, 'civicrm_financial_item count does not match');
868 $query = "SELECT COUNT(cft.id) civicrm_financial_trxn FROM civicrm_entity_financial_trxn ceft
869 INNER JOIN civicrm_financial_trxn cft ON ceft.financial_trxn_id = cft.id
870 WHERE ceft.entity_id = %1 AND ceft.entity_table = 'civicrm_contribution'";
871 $dao = CRM_Core_DAO::executeQuery($query, $params);
872 $dao->fetch();
873 $this->assertEquals('2', $dao->civicrm_financial_trxn, 'civicrm_financial_trxn count does not match');
874 }
875
876 public function testEventApprovalRegistration() {
877 $this->webtestLogin();
878
879 //Participant Status
880 $this->openCiviPage("admin/participant_status", "reset=1&action=browse");
881 foreach (array('Awaiting approval', 'Pending from approval', 'Rejected') as $label) {
882 $status = $this->webtest_civicrm_api("ParticipantStatusType", "getsingle", array('label' => $label));
883 $this->_testEnableParticipantStatuses($status['id']);
884 $this->isElementPresent("xpath=//tr[@id='participant_status_type-{$status['id']}']/td[9]/span/a[2][text()='Disable']");
885 }
886
887 //Create New Event
888
889 $this->openCiviPage('event/add', 'reset=1&action=add', '_qf_EventInfo_upload-bottom');
890 $eventTitle = 'My Conference - ' . substr(sha1(rand()), 0, 7);
891 $email = 'Smith' . substr(sha1(rand()), 0, 7) . '@example.com';
892 $eventDescription = 'Here is a description for this conference.';
893 $this->select('event_type_id', 'value=1');
894
895 // Attendee role s/b selected now.
896 $this->select('default_role_id', 'value=1');
897 // Enter Event Title, Summary and Description
898 $this->type('title', $eventTitle);
899 $this->type('summary', 'This is a great conference. Sign up now!');
900
901 // Type description in ckEditor (fieldname, text to type, editor)
902 $this->fillRichTextField('description', $eventDescription);
903 $this->type('max_participants', '50');
904 $this->click('is_map');
905 $this->click('_qf_EventInfo_upload-bottom');
906
907 // Wait for Location tab form to load
908 $this->waitForPageToLoad($this->getTimeoutMsec());
909
910 // Go to Fees tab
911 $this->click('link=Fees');
912 $id = $this->urlArg('id');
913 $this->waitForElementPresent('_qf_Fee_upload-bottom');
914 $this->click('CIVICRM_QFID_1_is_monetary');
915 $processorName = 'Test Processor';
916 $this->click("xpath=//tr[@class='crm-event-manage-fee-form-block-payment_processor']/td[2]/label[text()='$processorName']");
917 $this->select('financial_type_id', 'label=Event Fee');
918 $this->type("label[1]", 'Junior Stars');
919 $this->type("value[1]", '500.00');
920 $this->type("label[2]", 'Super Stars');
921 $this->type("value[2]", '1000.00');
922 $this->check('default');
923 $this->click('_qf_Fee_upload-bottom');
924 $this->waitForText('crm-notification-container', "'Fees' information has been saved.");
925
926 // intro text for registration page
927 $registerIntro = 'Fill in all the fields below and click Continue.';
928
929 // Go to Online Registration tab
930 $this->click('link=Online Registration');
931 $this->waitForElementPresent('_qf_Registration_upload-bottom');
932 $this->click('is_online_registration');
933 $this->assertChecked('is_online_registration');
934
935 //Requires Approvel
936 $this->click('requires_approval');
937 $this->assertChecked('requires_approval');
938 $this->click('_qf_Registration_upload-bottom');
939 $this->waitForText('crm-notification-container', "'Online Registration' information has been saved.");
940
941 // verify event input on info page
942 // start at Manage Events listing
943 $this->openCiviPage('event/manage', 'reset=1');
944 $this->click("link=$eventTitle");
945 $this->waitForPageToLoad($this->getTimeoutMsec());
946 $firstName = substr(sha1(rand()), 0, 7);
947 $this->webtestAddContact($firstName, 'Anderson', TRUE);
948 $contactName = "Anderson, $firstName";
949 $displayName = "$firstName Anderson";
950 $this->openCiviPage("event/register", "reset=1&id=$id&action=preview", '_qf_Register_upload-bottom');
951 $this->type('first_name', $firstName);
952
953 //fill in last name
954 $lastName = 'Recuron' . substr(sha1(rand()), 0, 7);
955 $this->type('last_name', $contactName);
956 $email = $firstName . '@example.com';
957 $this->type('email-Primary', $email);
958 $this->click('_qf_Register_upload');
959 $this->waitForElementPresent("_qf_Confirm_next");
960 $this->click('_qf_Confirm_next');
961 $this->waitForPageToLoad($this->getTimeoutMsec());
962 $this->waitForElementPresent("xpath=//div[@class='crm-group participant_info-group']");
963 $this->assertTextPresent("Thank You for Registering");
964
965 }
966
967 /**
968 * @param $status
969 */
970 public function _testEnableParticipantStatuses($statusId) {
971 // enable participant status
972 if ($this->isElementPresent("xpath=//tr[@id='participant_status_type-{$statusId}']/td[9]/span/a[2][text()='Enable']")) {
973 $this->click("xpath=//tr[@id='participant_status_type-{$statusId}']/td[9]/span/a[2][text()='Enable']");
974 $this->waitForElementPresent("xpath=//tr[@id='participant_status_type-{$statusId}']/td[9]/span/a[2][text()='Disable']");
975 }
976 }
977
978 }