Merge pull request #7578 from seamuslee001/CRM-17802-master
[civicrm-core.git] / tests / phpunit / WebTest / Event / ParticipantCountTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
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_ParticipantCountTest
31 */
32 class WebTest_Event_ParticipantCountTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testParticipantCountWithFeelevel() {
39 $this->markTestSkipped('Skipping for now as it works fine locally.');
40 // Log in using webtestLogin() method
41 $this->webtestLogin();
42
43 // Use default payment processor
44 $processorName = 'Test Processor';
45 $this->webtestAddPaymentProcessor($processorName);
46
47 // create an event
48 $eventTitle = 'A Conference - ' . substr(sha1(rand()), 0, 7);
49 $paramsEvent = array(
50 'title' => $eventTitle,
51 'template_id' => 6,
52 'event_type_id' => 4,
53 'payment_processor' => $processorName,
54 'fee_level' => array(
55 'Member' => '250.00',
56 'Non-Member' => '325.00',
57 ),
58 );
59
60 $infoEvent = $this->_testAddEvent($paramsEvent);
61
62 // logout to register for event.
63 $this->webtestLogout();
64
65 // Register Participant 1
66 // visit event info page
67 $this->open($infoEvent);
68 $this->waitForPageToLoad($this->getTimeoutMsec());
69
70 // register for event
71 $this->click('link=Register Now');
72 $this->waitForElementPresent('_qf_Register_upload-bottom');
73 $this->click("xpath=//input[@class='crm-form-radio']");
74
75 $email = 'jane_' . substr(sha1(rand()), 0, 5) . '@example.org';
76 $this->type('first_name', 'Mary');
77 $this->type('last_name', 'Jones' . substr(sha1(rand()), 0, 5));
78 $this->type('email-Primary', $email);
79
80 // fill billing details and register
81 $this->_testRegisterWithBillingInfo();
82
83 // Register Participant 2
84 // visit event info page
85 $this->open($infoEvent);
86
87 // register for event
88 $this->click('link=Register Now');
89 $this->waitForElementPresent('_qf_Register_upload-bottom');
90
91 $this->click("xpath=//input[@class='crm-form-radio']");
92 $email = 'jane_' . substr(sha1(rand()), 0, 5) . '@example.org';
93 $this->type('first_name', 'Mary');
94 $this->type('last_name', 'Jones' . substr(sha1(rand()), 0, 5));
95 $this->type('email-Primary', $email);
96
97 // fill billing details and register
98 $this->_testRegisterWithBillingInfo();
99
100 // login to check participant count
101 $this->webtestLogin();
102
103 // Find Participant
104 $this->openCiviPage("event/search", "reset=1", 'participant_fee_amount_low');
105 $this->select2("event_id", $eventTitle);
106 $this->click('_qf_Search_refresh');
107 $this->waitForPageToLoad($this->getTimeoutMsec());
108
109 // verify number of registered participants
110 $this->assertElementContainsText("xpath=//div[@class='crm-results-block']//div/table/tbody/tr/td", '2 Results');
111 }
112
113 public function testParticipantCountWithPriceset() {
114 // Log in using webtestLogin() method
115 $this->webtestLogin();
116
117 // Use default payment processor
118 $processorName = 'Test Processor';
119 $this->webtestAddPaymentProcessor($processorName);
120
121 // create priceset
122 $priceset = 'Price - ' . substr(sha1(rand()), 0, 7);
123 $this->_testAddSet($priceset);
124
125 // create price fields
126 $fields = array(
127 'Full Conference' => array(
128 'type' => 'Text',
129 'amount' => '525.00',
130 'count' => '2',
131 ),
132 'Meal Choice' => array(
133 'type' => 'Select',
134 'options' => array(
135 1 => array(
136 'label' => 'Chicken',
137 'amount' => '525.00',
138 'count' => '2',
139 ),
140 2 => array(
141 'label' => 'Vegetarian',
142 'amount' => '200.00',
143 'count' => '2',
144 ),
145 ),
146 ),
147 'Pre-conference Meetup?' => array(
148 'type' => 'Radio',
149 'options' => array(
150 1 => array(
151 'label' => 'Yes',
152 'amount' => '50.00',
153 'count' => '2',
154 ),
155 2 => array(
156 'label' => 'No',
157 'amount' => '0',
158 ),
159 ),
160 ),
161 'Evening Sessions' => array(
162 'type' => 'CheckBox',
163 'options' => array(
164 1 => array(
165 'label' => 'First Five',
166 'amount' => '100.00',
167 'count' => '5',
168 ),
169 2 => array(
170 'label' => 'Second Four',
171 'amount' => '50.00',
172 'count' => '4',
173 ),
174 ),
175 ),
176 );
177
178 foreach ($fields as $label => $field) {
179 $this->waitForAjaxContent();
180 $this->select('html_type', "value={$field['type']}");
181 if ($field['type'] == 'Text') {
182 $this->type('price', $field['amount']);
183 //yash
184 $this->waitForElementPresent('count');
185 $this->type('count', $field['count']);
186 $this->check('is_required');
187 }
188 else {
189 $this->_testAddMultipleChoiceOptions($field['options']);
190 }
191 $this->type('label', $label);
192 $this->clickLink('_qf_Field_next_new-bottom', '_qf_Field_next-bottom', FALSE);
193 $this->waitForText("crm-notification-container", "Price Field '$label' has been saved.");
194 }
195
196 // create event.
197 $eventTitle = 'Meeting - ' . substr(sha1(rand()), 0, 7);
198 $paramsEvent = array(
199 'title' => $eventTitle,
200 'template_id' => 6,
201 'event_type_id' => 4,
202 'payment_processor' => $processorName,
203 'price_set' => $priceset,
204 );
205
206 $infoEvent = $this->_testAddEvent($paramsEvent);
207
208 // logout to register for event.
209 $this->webtestLogout();
210
211 $priceFieldOptionCounts = $participants = array();
212
213 // Register Participant 1
214 // visit event info page
215 $this->open($infoEvent);
216 $this->waitForPageToLoad($this->getTimeoutMsec());
217
218 // register for event
219 $this->click('link=Register Now');
220 $this->waitForElementPresent('_qf_Register_upload-bottom');
221
222 $this->type("xpath=//div[@id='priceset']/div[@class='crm-section full_conference-section']//div/input[@class='four crm-form-text required']", '1');
223
224 $email = 'jane_' . substr(sha1(rand()), 0, 5) . '@example.org';
225 $participants[1] = array(
226 'email' => $email,
227 'first_name' => 'Jane_' . substr(sha1(rand()), 0, 5),
228 'last_name' => 'San_' . substr(sha1(rand()), 0, 5),
229 );
230
231 $this->type('first_name', $participants[1]['first_name']);
232 $this->type('last_name', $participants[1]['last_name']);
233 $this->type('email-Primary', $email);
234
235 // fill billing related info and register
236 $this->_testRegisterWithBillingInfo($participants[1]);
237
238 // Options filled by 1st participants.
239 $priceFieldOptionCounts[1] = array(
240 'Full Conference' => 1,
241 'Meal Choice - Chicken' => 1,
242 'Meal Choice - Vegetarian' => 0,
243 'Pre-conference Meetup? - Yes' => 1,
244 'Pre-conference Meetup? - No' => 0,
245 'Evening Sessions - First Five' => 1,
246 'Evening Sessions - Second Four' => 0,
247 );
248
249 // Register Participant 1
250 // visit event info page
251 $this->open($infoEvent);
252
253 // register for event
254 $this->click('link=Register Now');
255 $this->waitForElementPresent('_qf_Register_upload-bottom');
256 $this->type("xpath=//div[@id='priceset']/div[@class='crm-section full_conference-section']//div/input[@class='four crm-form-text required']", '2');
257 $email = 'jane_' . substr(sha1(rand()), 0, 5) . '@example.org';
258
259 $participants[2] = array(
260 'email' => $email,
261 'first_name' => 'Jane_' . substr(sha1(rand()), 0, 5),
262 'last_name' => 'San_' . substr(sha1(rand()), 0, 5),
263 );
264
265 $this->type('first_name', $participants[2]['first_name']);
266 $this->type('last_name', $participants[2]['last_name']);
267 $this->type('email-Primary', $email);
268
269 // fill billing related info and register
270 $this->_testRegisterWithBillingInfo($participants[2]);
271
272 // Options filled by 2nd participants.
273 $priceFieldOptionCounts[2] = array(
274 'Full Conference' => 2,
275 'Meal Choice - Chicken' => 1,
276 'Meal Choice - Vegetarian' => 0,
277 'Pre-conference Meetup? - Yes' => 1,
278 'Pre-conference Meetup? - No' => 0,
279 'Evening Sessions - First Five' => 1,
280 'Evening Sessions - Second Four' => 0,
281 );
282
283 // login to check participant count
284 $this->webtestLogin();
285
286 // Find Participant
287 $this->openCiviPage('event/search', 'reset=1', 'participant_fee_amount_low');
288 $this->waitForElementPresent('event_id');
289 $this->select2("event_id", $eventTitle);
290 $this->click('_qf_Search_refresh');
291 $this->waitForPageToLoad($this->getTimeoutMsec());
292
293 // verify number of participants records and total participant count
294 $this->waitForAjaxContent();
295 $this->assertStringsPresent(array('2 Results', 'Actual participant count : 24'));
296
297 // CRM-7953, check custom search Price Set Details for Event
298 // Participants
299 $this->_testPricesetDetailsCustomSearch($paramsEvent, $participants, $priceFieldOptionCounts);
300 }
301
302 /**
303 * @param $setTitle
304 * @param string $financialType
305 */
306 public function _testAddSet($setTitle, $financialType = 'Event Fee') {
307 $this->openCiviPage('admin/price', 'reset=1&action=add', '_qf_Set_next-bottom');
308
309 // Enter Priceset fields (Title, Used For ...)
310 $this->waitForElementPresent("title");
311 $this->type('title', $setTitle);
312 $this->check('extends[1]');
313 $this->select("css=select.crm-form-select", "label={$financialType}");
314 $this->waitForElementPresent("help_pre");
315 $this->type('help_pre', 'This is test priceset.');
316
317 $this->assertChecked('is_active', 'Verify that Is Active checkbox is set.');
318 $this->clickLink('_qf_Set_next-bottom', '_qf_Field_next-bottom');
319 }
320
321 /**
322 * @param $options
323 */
324 public function _testAddMultipleChoiceOptions($options) {
325 foreach ($options as $oIndex => $oValue) {
326 $this->type("option_label_{$oIndex}", $oValue['label']);
327 $this->type("option_amount_{$oIndex}", $oValue['amount']);
328 if (array_key_exists('count', $oValue)) {
329 $this->waitForElementPresent("option_count_{$oIndex}");
330 $this->type("option_count_{$oIndex}", $oValue['count']);
331 }
332 $this->click('link=another choice');
333 }
334 $this->click('CIVICRM_QFID_1_2');
335 }
336
337 /**
338 * @param array $params
339 *
340 * @return string
341 */
342 public function _testAddEvent($params) {
343 $this->openCiviPage('event/add', 'reset=1&action=add', '_qf_EventInfo_upload-bottom');
344
345 $this->select('event_type_id', "value={$params['event_type_id']}");
346
347 // Attendee role s/b selected now.
348 $this->select('default_role_id', 'value=1');
349
350 // Enter Event Title, Summary and Description
351 $this->type('title', $params['title']);
352 $this->type('summary', 'This is a great conference. Sign up now!');
353 $this->fillRichTextField('description', 'Here is a description for this event.', '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('_qf_EventInfo_upload-bottom');
363
364 // Wait for Location tab form to load
365 $this->waitForPageToLoad($this->getTimeoutMsec());
366
367 // Go to Fees tab
368 $this->click('link=Fees');
369 $this->waitForElementPresent('_qf_Fee_upload-bottom');
370 $this->click('CIVICRM_QFID_1_is_monetary');
371 $this->select2('payment_processor', $params['payment_processor'], TRUE);
372
373 $this->select('financial_type_id', 'Event Fee');
374 if (array_key_exists('price_set', $params)) {
375 $this->select('price_set_id', 'label=' . $params['price_set']);
376 }
377 if (array_key_exists('fee_level', $params)) {
378 $counter = 1;
379 foreach ($params['fee_level'] as $label => $amount) {
380 $this->type("label_{$counter}", $label);
381 $this->type("value_{$counter}", $amount);
382 $counter++;
383 }
384 }
385
386 $this->click('_qf_Fee_upload-bottom');
387 $this->waitForElementPresent('_qf_Fee_cancel-top');
388
389 // Go to Online Registration tab
390 $this->click('link=Online Registration');
391 $this->waitForElementPresent('_qf_Registration_upload-bottom');
392
393 $this->check('is_online_registration');
394 $this->assertChecked('is_online_registration');
395
396 $this->click('intro_text');
397 $this->fillRichTextField('intro_text', 'Fill in all the fields below and click Continue.', 'CKEditor', TRUE);
398
399 // enable confirmation email
400 $this->click('CIVICRM_QFID_1_is_email_confirm');
401 $this->type('confirm_from_name', 'Jane Doe');
402 $this->type('confirm_from_email', 'jane.doe@example.org');
403
404 $this->click('_qf_Registration_upload-bottom');
405 $this->waitForElementPresent('_qf_Registration_upload-bottom');
406 $this->waitForTextPresent("'Online Registration' information has been saved.");
407
408 // verify event input on info page
409 // start at Manage Events listing
410 $this->openCiviPage('event/manage', 'reset=1');
411 $this->click('link=' . $params['title']);
412
413 $this->waitForPageToLoad($this->getTimeoutMsec());
414 return $this->getLocation();
415 }
416
417 /**
418 * @param array $participant
419 */
420 public function _testRegisterWithBillingInfo($participant = array()) {
421 $this->waitForElementPresent("credit_card_type");
422 $this->select('credit_card_type', 'value=Visa');
423 $this->type('credit_card_number', '4111111111111111');
424 $this->type('cvv2', '000');
425 $this->select('credit_card_exp_date[M]', 'value=1');
426 $this->select('credit_card_exp_date[Y]', 'value=2020');
427 $this->type('billing_first_name', isset($participant['first_name']) ? $participant['first_name'] : 'Jane_' . substr(sha1(rand()), 0, 5));
428 $this->type('billing_last_name', isset($participant['last_name']) ? $participant['last_name'] : 'San_' . substr(sha1(rand()), 0, 5));
429 $this->type('billing_street_address-5', '15 Main St.');
430 $this->type(' billing_city-5', 'San Jose');
431 $this->select('billing_country_id-5', 'value=1228');
432 $this->select('billing_state_province_id-5', 'value=1004');
433 $this->type('billing_postal_code-5', '94129');
434
435 $this->clickLink('_qf_Register_upload-bottom', '_qf_Confirm_next-bottom', FALSE);
436 $confirmStrings = array('Event Fee(s)', 'Billing Name and Address', 'Credit Card Information');
437 $this->assertStringsPresent($confirmStrings);
438 $this->click('_qf_Confirm_next-bottom');
439 $this->waitForPageToLoad($this->getTimeoutMsec());
440 $thankStrings = array('Thank You for Registering', 'Event Total', 'Transaction Date');
441 $this->assertStringsPresent($thankStrings);
442 }
443
444 /**
445 * @param array $eventParams
446 * @param $participants
447 * @param $priceFieldOptionCounts
448 */
449 public function _testPricesetDetailsCustomSearch($eventParams, $participants, $priceFieldOptionCounts) {
450 $this->openCiviPage('contact/search/custom', 'csid=9&reset=1');
451
452 $this->select('event_id', 'label=' . $eventParams['title']);
453 $this->click('_qf_Custom_refresh-bottom');
454 $this->waitForPageToLoad($this->getTimeoutMsec());
455
456 $tableHeaders = array('Contact ID', 'Participant ID', 'Name');
457 $tableHeaders = array_merge($tableHeaders, array_keys(current($priceFieldOptionCounts)));
458
459 $tdnum = 2;
460 foreach ($tableHeaders as $header) {
461 $this->verifyText("xpath=//form[@id='Custom']//div[@class='crm-search-results']//table[@class='selector row-highlight']/thead/tr[1]/th[$tdnum]", $header);
462 $tdnum++;
463 }
464
465 foreach ($participants as $participantNum => $participant) {
466 $tdnum = 4;
467 $this->verifyText("xpath=//form[@id='Custom']//div[@class='crm-search-results']//table[@class='selector row-highlight']/tbody/tr[{$participantNum}]/td[{$tdnum}]", preg_quote("{$participant['first_name']} {$participant['last_name']}"));
468 foreach ($priceFieldOptionCounts[$participantNum] as $priceFieldOptionCount) {
469 $tdnum++;
470 $this->verifyText("xpath=//form[@id='Custom']//div[@class='crm-search-results']//table[@class='selector row-highlight']/tbody/tr[{$participantNum}]/td[{$tdnum}]", preg_quote($priceFieldOptionCount));
471 }
472 }
473 }
474
475 }