(NFC) Update version headers in `tests/`
[civicrm-core.git] / tests / phpunit / WebTest / Member / OnlineMembershipAddPricesetTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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_Member_OnlineMembershipAddPricesetTest
31 */
32 class WebTest_Member_OnlineMembershipAddPricesetTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testAddPriceSet() {
39 // add the required permission
40 $permissions = array('edit-1-make-online-contributions');
41 $this->changePermissions($permissions);
42
43 // Log in as normal user
44 $this->webtestLogin();
45
46 $title = substr(sha1(rand()), 0, 7);
47 $setTitle = "Membership Fees - $title";
48 $usedFor = 'Membership';
49 $contributionType = 'Donation';
50 $setHelp = 'Select your membership options.';
51 $this->_testAddSet($setTitle, $usedFor, $contributionType, $setHelp);
52
53 // Get the price set id ($sid) by retrieving and parsing the URL of the New Price Field form
54 // which is where we are after adding Price Set.
55 $sid = $this->urlArg('sid');
56 $this->assertType('numeric', $sid);
57
58 $fields = array(
59 "National Membership $title" => 'Radio',
60 "Local Chapter $title" => 'CheckBox',
61 );
62
63 list($memTypeTitle1, $memTypeTitle2) = $this->_testAddPriceFields($fields, $validateStrings, FALSE, $title, $sid, $contributionType);
64 //var_dump($validateStrings);
65
66 // load the Price Set Preview and check for expected values
67 $this->_testVerifyPriceSet($validateStrings, $sid);
68
69 $contributionPageTitle = "Contribution Page $title";
70 $pageId = $this->webtestAddContributionPage(NULL, NULL, $contributionPageTitle, array('Test Processor' => 'Dummy'),
71 TRUE, FALSE, FALSE, FALSE, FALSE, TRUE, $sid, FALSE, 1, NULL
72 );
73
74 // Sign up for membership
75 $firstName = 'John_' . substr(sha1(rand()), 0, 7);
76 $lastName = 'Anderson_' . substr(sha1(rand()), 0, 7);
77 $email = "{$firstName}.{$lastName}@example.com";
78
79 $contactParams = array(
80 'first_name' => $firstName,
81 'last_name' => $lastName,
82 'email-5' => $email,
83 );
84 $this->_testSignUpOrRenewMembership($pageId, $contactParams, $memTypeTitle1, $memTypeTitle2);
85
86 // Renew this membership
87 $this->_testSignUpOrRenewMembership($pageId, $contactParams, $memTypeTitle1, $memTypeTitle2, $renew = TRUE);
88 }
89
90 public function testAddPriceSetWithMultipleTerms() {
91 // add the required permission
92 $permissions = array('edit-1-make-online-contributions');
93 $this->changePermissions($permissions);
94
95 // Log in as normal user
96 $this->webtestLogin();
97
98 $title = substr(sha1(rand()), 0, 7);
99 $setTitle = "Membership Fees - $title";
100 $usedFor = 'Membership';
101 $contributionType = 'Member Dues';
102 $setHelp = 'Select your membership options.';
103 $memTypeParams1 = $this->webtestAddMembershipType();
104 $memTypeTitle1 = $memTypeParams1['membership_type'];
105 $memTypeId1 = explode('&id=', $this->getAttribute("xpath=//div[@id='membership_type']/table/tbody//tr/td[1]/div[text()='{$memTypeTitle1}']/../../td[12]/span/a[3]@href"));
106 $memTypeId1 = $memTypeId1[1];
107 $this->_testAddSet($setTitle, $usedFor, $contributionType, $setHelp);
108
109 // Get the price set id ($sid) by retrieving and parsing the URL of the New Price Field form
110 // which is where we are after adding Price Set.
111 $sid = $this->urlArg('sid');
112 $this->assertType('numeric', $sid);
113
114 $fields = array("National Membership $title", "Radio");
115 $this->openCiviPage('admin/price/field', "reset=1&action=add&sid={$sid}");
116
117 $validateStrings[] = $fields[0];
118 $this->type('label', $fields[0]);
119 $this->select('html_type', "value={$fields[1]}");
120 $options = array(
121 1 => array(
122 'label' => $memTypeTitle1 . "_1",
123 'membership_type_id' => $memTypeId1,
124 'amount' => 50.00,
125 'membership_num_terms' => 1,
126 ),
127 2 => array(
128 'label' => $memTypeTitle1 . "_2",
129 'membership_type_id' => $memTypeId1,
130 'amount' => 90.00,
131 'membership_num_terms' => 2,
132 ),
133 3 => array(
134 'label' => $memTypeTitle1 . "_3",
135 'membership_type_id' => $memTypeId1,
136 'amount' => 120.00,
137 'membership_num_terms' => 3,
138 ),
139
140 );
141 $i = 2;
142 foreach ($options as $index => $values) {
143 $this->select("membership_type_id_{$index}", "value={$values['membership_type_id']}");
144 $this->waitForAjaxContent();
145 $this->waitForElementPresent("xpath=//table[@id='optionField']/tbody/tr[$i]/td[4]/input");
146 $this->type("xpath=//table[@id='optionField']/tbody/tr[$i]/td[4]/input", $values['membership_num_terms']);
147 $this->type("xpath=//table[@id='optionField']/tbody/tr[$i]/td[5]/input", $values['label']);
148 $this->type("xpath=//table[@id='optionField']/tbody/tr[$i]/td[6]/input", $values['amount']);
149 if ($i > 3) {
150 $this->click('link=another choice');
151 }
152 $i++;
153 }
154 $this->waitForElementPresent('financial_type_id');
155 $this->select("financial_type_id", "label={$contributionType}");
156 $this->waitForElementPresent('_qf_Field_next-bottom');
157 $this->clickLink('_qf_Field_next-bottom');
158 $this->waitForText('crm-notification-container', "Price Field '{$fields[0]}' has been saved.");
159
160 // load the Price Set Preview and check for expected values
161 $this->_testVerifyPriceSet($validateStrings, $sid);
162
163 $contributionPageTitle = "Contribution Page $title";
164 $pageId = $this->webtestAddContributionPage(NULL, NULL, $contributionPageTitle, array('Test Processor' => 'Dummy'),
165 TRUE, FALSE, FALSE, FALSE, FALSE, TRUE, $sid, FALSE, 1, NULL
166 );
167
168 // Sign up for membership
169 $firstName = 'John_' . substr(sha1(rand()), 0, 7);
170 $lastName = 'Anderson_' . substr(sha1(rand()), 0, 7);
171 $email = "{$firstName}.{$lastName}@example.com";
172
173 $contactParams = array(
174 'first_name' => $firstName,
175 'last_name' => $lastName,
176 'email-5' => $email,
177 );
178 //membership with number of terms as 2
179 $this->_testMultilpeTermsMembershipRegistration($pageId, $contactParams, $memTypeTitle1, 2);
180 //membership with number of terms as 3 which will renew the above membership
181 $this->_testMultilpeTermsMembershipRegistration($pageId, $contactParams, $memTypeTitle1, 3, TRUE);
182
183 }
184
185 /**
186 * @param $setTitle
187 * @param $usedFor
188 * @param null $contributionType
189 * @param $setHelp
190 */
191 public function _testAddSet($setTitle, $usedFor, $contributionType = NULL, $setHelp) {
192 $this->openCiviPage('admin/price', 'reset=1&action=add', '_qf_Set_next-bottom');
193
194 // Enter Priceset fields (Title, Used For ...)
195 $this->type('title', $setTitle);
196 if ($usedFor == 'Event') {
197 $this->check('extends[1]');
198 }
199 elseif ($usedFor == 'Contribution') {
200 $this->check('extends[2]');
201 }
202 elseif ($usedFor == 'Membership') {
203 $this->click('extends[3]');
204 $this->waitForElementPresent('financial_type_id');
205 $this->select("css=select.crm-form-select", "label={$contributionType}");
206 }
207
208 $this->type('help_pre', $setHelp);
209
210 $this->assertChecked('is_active', 'Verify that Is Active checkbox is set.');
211 $this->waitForElementPresent('_qf_Set_next-bottom');
212 $this->click('_qf_Set_next-bottom');
213 $this->waitForText('crm-notification-container', "Your Set '{$setTitle}' has been added. You can add fields to this set now.");
214 }
215
216 /**
217 * @param $fields
218 * @param $validateString
219 * @param bool $dateSpecificFields
220 * @param $title
221 * @param int $sid
222 * @param $contributionType
223 *
224 * @return array
225 */
226 public function _testAddPriceFields(&$fields, &$validateString, $dateSpecificFields = FALSE, $title, $sid, $contributionType) {
227 $memTypeParams1 = $this->webtestAddMembershipType();
228 $memTypeTitle1 = $memTypeParams1['membership_type'];
229 $memTypeId1 = explode('&id=', $this->getAttribute("xpath=//div[@id='membership_type']/table/tbody//tr/td[1]/div[text()='{$memTypeTitle1}']/../../td[12]/span/a[3]@href"));
230 $memTypeId1 = $memTypeId1[1];
231
232 $memTypeParams2 = $this->webtestAddMembershipType();
233 $memTypeTitle2 = $memTypeParams2['membership_type'];
234 $memTypeId2 = explode('&id=', $this->getAttribute("xpath=//div[@id='membership_type']/table/tbody//tr/td[1]/div[text()='{$memTypeTitle2}']/../../td[12]/span/a[3]@href"));
235 $memTypeId2 = $memTypeId2[1];
236
237 $this->openCiviPage('admin/price/field', "reset=1&action=add&sid={$sid}");
238
239 foreach ($fields as $label => $type) {
240 $validateStrings[] = $label;
241
242 $this->type('label', $label);
243 $this->select('html_type', "value={$type}");
244
245 switch ($type) {
246 case 'Radio':
247 $options = array(
248 1 => array(
249 'label' => "$memTypeTitle1",
250 'membership_type_id' => $memTypeId1,
251 'amount' => 100.00,
252 ),
253 2 => array(
254 'label' => "$memTypeTitle2",
255 'membership_type_id' => $memTypeId2,
256 'amount' => 50.00,
257 ),
258 );
259 $this->addMultipleChoiceOptions($options, $validateStrings);
260 break;
261
262 case 'CheckBox':
263 $options = array(
264 1 => array(
265 'label' => "$memTypeTitle1",
266 'membership_type_id' => $memTypeId1,
267 'amount' => 100.00,
268 ),
269 2 => array(
270 'label' => "$memTypeTitle2",
271 'membership_type_id' => $memTypeId2,
272 'amount' => 50.00,
273 ),
274 );
275 $this->addMultipleChoiceOptions($options, $validateStrings);
276 break;
277
278 default:
279 break;
280 }
281 $this->select("financial_type_id", "label={$contributionType}");
282 $this->clickLink('_qf_Field_next_new-bottom', '_qf_Field_next-bottom');
283 $this->waitForText('crm-notification-container', "Price Field '{$label}' has been saved.");
284 }
285 return array($memTypeTitle1, $memTypeTitle2);
286 }
287
288 /**
289 * @param $validateStrings
290 * @param int $sid
291 */
292 public function _testVerifyPriceSet($validateStrings, $sid) {
293 // verify Price Set at Preview page
294 // start at Manage Price Sets listing
295 $this->openCiviPage('admin/price', 'reset=1');
296
297 // Use the price set id ($sid) to pick the correct row
298 $this->clickLink("css=tr#price_set-{$sid} a[title='Preview Price Set']", '_qf_Preview_cancel-bottom');
299
300 // Check for expected price set field strings
301 $this->assertStringsPresent($validateStrings);
302 }
303
304 /**
305 * @param int $pageId
306 * @param array $contactParams
307 * @param $memTypeTitle1
308 * @param $memTypeTitle2
309 * @param bool $renew
310 */
311 public function _testSignUpOrRenewMembership($pageId, $contactParams, $memTypeTitle1, $memTypeTitle2, $renew = FALSE) {
312 $this->webtestLogout();
313
314 $this->openCiviPage('contribute/transact', "reset=1&id=$pageId", '_qf_Main_upload-bottom');
315
316 //build the membership dates.
317 $currentYear = date('Y');
318 $currentMonth = date('m');
319 $previousDay = date('d') - 1;
320 $endYear = ($renew) ? $currentYear + 2 : $currentYear + 1;
321 $joinDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
322 $startDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
323 $endDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, $previousDay, $endYear));
324 foreach (array(
325 'joinDate',
326 'startDate',
327 'endDate',
328 ) as $date) {
329 $$date = CRM_Utils_Date::customFormat($$date, $this->webtestGetSetting('dateformatFull'));
330 }
331
332 $this->click("xpath=//div[@id='priceset']/div[2]/div[2]/div/span/input");
333 $this->click("xpath=//div[@id='priceset']/div[3]/div[2]/div[2]/span/input");
334
335 $this->type('email-5', $contactParams['email-5']);
336 $this->type('first_name', $contactParams['first_name']);
337 $this->type('last_name', $contactParams['last_name']);
338
339 $streetAddress = "100 Main Street";
340 $this->type("street_address-1", $streetAddress);
341 $this->type("city-1", "San Francisco");
342 $this->type("postal_code-1", "94117");
343 $this->select("country-1", "value=1228");
344 $this->select("state_province-1", "value=1001");
345
346 //Credit Card Info
347 $this->select("credit_card_type", "value=Visa");
348 $this->type("credit_card_number", "4111111111111111");
349 $this->type("cvv2", "000");
350 $this->select("credit_card_exp_date[M]", "value=1");
351 $this->select("credit_card_exp_date[Y]", "value=2020");
352
353 //Billing Info
354 $this->type("billing_first_name", $contactParams['first_name'] . "billing");
355 $this->type("billing_last_name", $contactParams['last_name'] . "billing");
356 $this->type("billing_street_address-5", "15 Main St.");
357 $this->type(" billing_city-5", "San Jose");
358 $this->select("billing_country_id-5", "value=1228");
359 $this->select("billing_state_province_id-5", "value=1004");
360 $this->type("billing_postal_code-5", "94129");
361 $this->clickLink("_qf_Main_upload-bottom", "_qf_Confirm_next-bottom");
362
363 $this->click("_qf_Confirm_next-bottom");
364 $this->waitForPageToLoad($this->getTimeoutMsec());
365
366 //login to check membership
367
368 // Log in using webtestLogin() method
369 $this->webtestLogin();
370
371 $this->openCiviPage('member/search', 'reset=1', 'member_end_date_high');
372
373 $this->type("sort_name", "{$contactParams['first_name']} {$contactParams['last_name']}");
374 $this->click("_qf_Search_refresh");
375
376 $this->waitForPageToLoad($this->getTimeoutMsec());
377 $this->assertElementContainsText('crm-container', '2 Results');
378
379 $this->waitForElementPresent("xpath=//div[@id='memberSearch']/table/tbody/tr");
380 $this->click("xpath=//div[@id='memberSearch']/table/tbody//tr/td[4][text()='{$memTypeTitle1}']/../td[11]/span/a[text()='View']");
381 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
382
383 //View Membership Record
384 $verifyData = array(
385 'Membership Type' => "$memTypeTitle1",
386 'Status' => 'New',
387 'Member Since' => $joinDate,
388 'Start date' => $startDate,
389 'End date' => $endDate,
390 );
391 foreach ($verifyData as $label => $value) {
392 $this->verifyText("xpath=//form[@id='MembershipView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td",
393 preg_quote($value)
394 );
395 }
396
397 $this->clickLink('_qf_MembershipView_cancel-bottom', "xpath=//div[@id='memberSearch']/table/tbody/tr[2]", FALSE);
398 $this->click("xpath=//div[@id='memberSearch']/table/tbody//tr/td[4][text()='{$memTypeTitle2}']/../td[11]/span/a[text()='View']");
399 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
400
401 //View Membership Record
402 $verifyData = array(
403 'Membership Type' => "$memTypeTitle2",
404 'Status' => 'New',
405 'Member Since' => $joinDate,
406 'Start date' => $startDate,
407 'End date' => $endDate,
408 );
409 foreach ($verifyData as $label => $value) {
410 $this->verifyText("xpath=//form[@id='MembershipView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td",
411 preg_quote($value)
412 );
413 }
414 }
415
416 /**
417 * @param int $pageId
418 * @param array $contactParams
419 * @param $memTypeTitle1
420 * @param $term
421 * @param bool $renew
422 */
423 public function _testMultilpeTermsMembershipRegistration($pageId, $contactParams, $memTypeTitle1, $term, $renew = FALSE) {
424 if ($renew) {
425 $this->openCiviPage('member/search', 'reset=1', 'member_end_date_high');
426 $this->type("sort_name", "{$contactParams['first_name']} {$contactParams['last_name']}");
427 $this->clickLink("_qf_Search_refresh", "xpath=//div[@id='memberSearch']/table/tbody/tr");
428 $this->click("xpath=//div[@id='memberSearch']/table/tbody//tr/td[4][text()='{$memTypeTitle1}']/../td[11]/span/a[text()='View']");
429 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
430 $year = CRM_Utils_Date::processDate($this->getText("xpath=//form[@id='MembershipView']//table/tbody/tr/td[text()='End date']/following-sibling::td"));
431 $prevYear = substr($year, 0, 4);
432 }
433
434 $this->webtestLogout();
435
436 $this->openCiviPage('contribute/transact', "reset=1&id=$pageId", '_qf_Main_upload-bottom');
437
438 //build the membership dates.
439 $currentYear = date('Y');
440 $currentMonth = date('m');
441 $previousDay = date('d') - 1;
442 $endYear = ($term == 3) ? $currentYear + 3 : (($term == 2) ? $currentYear + 2 : $currentYear + 1);
443 $endYear = ($renew) ? $endYear + ($prevYear - $currentYear) : $endYear;
444
445 $joinDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
446 $startDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
447 $endDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, $previousDay, $endYear));
448 foreach (array(
449 'joinDate',
450 'startDate',
451 'endDate',
452 ) as $date) {
453 $$date = CRM_Utils_Date::customFormat($$date, $this->webtestGetSetting('dateformatFull'));
454 }
455 $i = ($term == 3) ? 3 : (($term == 2) ? 2 : 1);
456 $this->waitForElementPresent("xpath=//div[@id='priceset']/div[2]/div[2]/div[$i]/span/input");
457 $this->click("xpath=//div[@id='priceset']/div[2]/div[2]/div[$i]/span/input");
458 $amount = $this->getText("xpath=//div[@id='priceset']/div[2]/div[2]/div[$i]/span/label/span[@class='crm-price-amount-amount']");
459
460 $this->type('email-5', $contactParams['email-5']);
461 $this->type('first_name', $contactParams['first_name']);
462 $this->type('last_name', $contactParams['last_name']);
463
464 $streetAddress = "100 Main Street";
465 $this->type("street_address-1", $streetAddress);
466 $this->type("city-1", "San Francisco");
467 $this->type("postal_code-1", "94117");
468 $this->select("country-1", "value=1228");
469 $this->select("state_province-1", "value=1001");
470
471 //Credit Card Info
472 $this->select("credit_card_type", "value=Visa");
473 $this->type("credit_card_number", "4111111111111111");
474 $this->type("cvv2", "000");
475 $this->select("credit_card_exp_date[M]", "value=1");
476 $this->select("credit_card_exp_date[Y]", "value=2020");
477
478 //Billing Info
479 $this->type("billing_first_name", $contactParams['first_name'] . "billing");
480 $this->type("billing_last_name", $contactParams['last_name'] . "billing");
481 $this->type("billing_street_address-5", "15 Main St.");
482 $this->type(" billing_city-5", "San Jose");
483 $this->select("billing_country_id-5", "value=1228");
484 $this->select("billing_state_province_id-5", "value=1004");
485 $this->type("billing_postal_code-5", "94129");
486 $this->clickLink("_qf_Main_upload-bottom", "_qf_Confirm_next-bottom");
487
488 $this->click("_qf_Confirm_next-bottom");
489 $this->waitForPageToLoad($this->getTimeoutMsec());
490
491 //login to check membership
492
493 // Log in using webtestLogin() method
494 $this->webtestLogin();
495
496 $this->openCiviPage('member/search', 'reset=1', 'member_end_date_high');
497
498 $this->type("sort_name", "{$contactParams['first_name']} {$contactParams['last_name']}");
499 $this->click("_qf_Search_refresh");
500
501 $this->waitForPageToLoad($this->getTimeoutMsec());
502 $this->assertElementContainsText('crm-container', '1 Result ');
503
504 $this->waitForElementPresent("xpath=//div[@id='memberSearch']/table/tbody/tr");
505 $this->click("xpath=//div[@id='memberSearch']/table/tbody//tr/td[4][text()='{$memTypeTitle1}']/../td[11]/span/a[text()='View']");
506 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
507
508 //View Membership Record
509 $verifyData = array(
510 'Membership Type' => "$memTypeTitle1",
511 'Status' => 'New',
512 'Member Since' => $joinDate,
513 'Start date' => $startDate,
514 'End date' => $endDate,
515 );
516 foreach ($verifyData as $label => $value) {
517 $this->verifyText("xpath=//form[@id='MembershipView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td",
518 preg_quote($value)
519 );
520 }
521 //check if the membership amount is correct
522 $this->waitForElementPresent("xpath=//form[@id='MembershipView']/div[2]/div/div[2]/div[2]/table/tbody/tr/td[1]/a");
523 $this->assertElementContainsText("xpath=//form[@id='MembershipView']/div[2]/div/div[2]/div[2]/table/tbody/tr/td[1]/a", $amount);
524 }
525
526 }