commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / tests / phpunit / WebTest / Member / OnlineMembershipAddPricesetTest.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_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
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 $configVars = new CRM_Core_Config_Variables();
325 foreach (array(
326 'joinDate',
327 'startDate',
328 'endDate',
329 ) as $date) {
330 $$date = CRM_Utils_Date::customFormat($$date, $configVars->dateformatFull);
331 }
332
333 $this->click("xpath=//div[@id='priceset']/div[2]/div[2]/div/span/input");
334 $this->click("xpath=//div[@id='priceset']/div[3]/div[2]/div[2]/span/input");
335
336 $this->type('email-5', $contactParams['email-5']);
337 $this->type('first_name', $contactParams['first_name']);
338 $this->type('last_name', $contactParams['last_name']);
339
340 $streetAddress = "100 Main Street";
341 $this->type("street_address-1", $streetAddress);
342 $this->type("city-1", "San Francisco");
343 $this->type("postal_code-1", "94117");
344 $this->select("country-1", "value=1228");
345 $this->select("state_province-1", "value=1001");
346
347 //Credit Card Info
348 $this->select("credit_card_type", "value=Visa");
349 $this->type("credit_card_number", "4111111111111111");
350 $this->type("cvv2", "000");
351 $this->select("credit_card_exp_date[M]", "value=1");
352 $this->select("credit_card_exp_date[Y]", "value=2020");
353
354 //Billing Info
355 $this->type("billing_first_name", $contactParams['first_name'] . "billing");
356 $this->type("billing_last_name", $contactParams['last_name'] . "billing");
357 $this->type("billing_street_address-5", "15 Main St.");
358 $this->type(" billing_city-5", "San Jose");
359 $this->select("billing_country_id-5", "value=1228");
360 $this->select("billing_state_province_id-5", "value=1004");
361 $this->type("billing_postal_code-5", "94129");
362 $this->clickLink("_qf_Main_upload-bottom", "_qf_Confirm_next-bottom");
363
364 $this->click("_qf_Confirm_next-bottom");
365 $this->waitForPageToLoad($this->getTimeoutMsec());
366
367 //login to check membership
368
369 // Log in using webtestLogin() method
370 $this->webtestLogin();
371
372 $this->openCiviPage('member/search', 'reset=1', 'member_end_date_high');
373
374 $this->type("sort_name", "{$contactParams['first_name']} {$contactParams['last_name']}");
375 $this->click("_qf_Search_refresh");
376
377 $this->waitForPageToLoad($this->getTimeoutMsec());
378 $this->assertElementContainsText('crm-container', '2 Results');
379
380 $this->waitForElementPresent("xpath=//div[@id='memberSearch']/table/tbody/tr");
381 $this->click("xpath=//div[@id='memberSearch']/table/tbody//tr/td[4][text()='{$memTypeTitle1}']/../td[11]/span/a[text()='View']");
382 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
383
384 //View Membership Record
385 $verifyData = array(
386 'Membership Type' => "$memTypeTitle1",
387 'Status' => 'New',
388 'Member Since' => $joinDate,
389 'Start date' => $startDate,
390 'End date' => $endDate,
391 );
392 foreach ($verifyData as $label => $value) {
393 $this->verifyText("xpath=//form[@id='MembershipView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td",
394 preg_quote($value)
395 );
396 }
397
398 $this->clickLink('_qf_MembershipView_cancel-bottom', "xpath=//div[@id='memberSearch']/table/tbody/tr[2]", FALSE);
399 $this->click("xpath=//div[@id='memberSearch']/table/tbody//tr/td[4][text()='{$memTypeTitle2}']/../td[11]/span/a[text()='View']");
400 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
401
402 //View Membership Record
403 $verifyData = array(
404 'Membership Type' => "$memTypeTitle2",
405 'Status' => 'New',
406 'Member Since' => $joinDate,
407 'Start date' => $startDate,
408 'End date' => $endDate,
409 );
410 foreach ($verifyData as $label => $value) {
411 $this->verifyText("xpath=//form[@id='MembershipView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td",
412 preg_quote($value)
413 );
414 }
415 }
416
417 /**
418 * @param int $pageId
419 * @param array $contactParams
420 * @param $memTypeTitle1
421 * @param $term
422 * @param bool $renew
423 */
424 public function _testMultilpeTermsMembershipRegistration($pageId, $contactParams, $memTypeTitle1, $term, $renew = FALSE) {
425 if ($renew) {
426 $this->openCiviPage('member/search', 'reset=1', 'member_end_date_high');
427 $this->type("sort_name", "{$contactParams['first_name']} {$contactParams['last_name']}");
428 $this->clickLink("_qf_Search_refresh", "xpath=//div[@id='memberSearch']/table/tbody/tr");
429 $this->click("xpath=//div[@id='memberSearch']/table/tbody//tr/td[4][text()='{$memTypeTitle1}']/../td[11]/span/a[text()='View']");
430 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
431 $year = CRM_Utils_Date::processDate($this->getText("xpath=//form[@id='MembershipView']//table/tbody/tr/td[text()='End date']/following-sibling::td"));
432 $prevYear = substr($year, 0, 4);
433 }
434
435 $this->webtestLogout();
436
437 $this->openCiviPage('contribute/transact', "reset=1&id=$pageId", '_qf_Main_upload-bottom');
438
439 //build the membership dates.
440 $currentYear = date('Y');
441 $currentMonth = date('m');
442 $previousDay = date('d') - 1;
443 $endYear = ($term == 3) ? $currentYear + 3 : (($term == 2) ? $currentYear + 2 : $currentYear + 1);
444 $endYear = ($renew) ? $endYear + ($prevYear - $currentYear) : $endYear;
445
446 $joinDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
447 $startDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
448 $endDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, $previousDay, $endYear));
449 $configVars = new CRM_Core_Config_Variables();
450 foreach (array(
451 'joinDate',
452 'startDate',
453 'endDate',
454 ) as $date) {
455 $$date = CRM_Utils_Date::customFormat($$date, $configVars->dateformatFull);
456 }
457 $i = ($term == 3) ? 3 : (($term == 2) ? 2 : 1);
458 $this->waitForElementPresent("xpath=//div[@id='priceset']/div[2]/div[2]/div[$i]/span/input");
459 $this->click("xpath=//div[@id='priceset']/div[2]/div[2]/div[$i]/span/input");
460 $amount = $this->getText("xpath=//div[@id='priceset']/div[2]/div[2]/div[$i]/span/label/span[@class='crm-price-amount-amount']");
461
462 $this->type('email-5', $contactParams['email-5']);
463 $this->type('first_name', $contactParams['first_name']);
464 $this->type('last_name', $contactParams['last_name']);
465
466 $streetAddress = "100 Main Street";
467 $this->type("street_address-1", $streetAddress);
468 $this->type("city-1", "San Francisco");
469 $this->type("postal_code-1", "94117");
470 $this->select("country-1", "value=1228");
471 $this->select("state_province-1", "value=1001");
472
473 //Credit Card Info
474 $this->select("credit_card_type", "value=Visa");
475 $this->type("credit_card_number", "4111111111111111");
476 $this->type("cvv2", "000");
477 $this->select("credit_card_exp_date[M]", "value=1");
478 $this->select("credit_card_exp_date[Y]", "value=2020");
479
480 //Billing Info
481 $this->type("billing_first_name", $contactParams['first_name'] . "billing");
482 $this->type("billing_last_name", $contactParams['last_name'] . "billing");
483 $this->type("billing_street_address-5", "15 Main St.");
484 $this->type(" billing_city-5", "San Jose");
485 $this->select("billing_country_id-5", "value=1228");
486 $this->select("billing_state_province_id-5", "value=1004");
487 $this->type("billing_postal_code-5", "94129");
488 $this->clickLink("_qf_Main_upload-bottom", "_qf_Confirm_next-bottom");
489
490 $this->click("_qf_Confirm_next-bottom");
491 $this->waitForPageToLoad($this->getTimeoutMsec());
492
493 //login to check membership
494
495 // Log in using webtestLogin() method
496 $this->webtestLogin();
497
498 $this->openCiviPage('member/search', 'reset=1', 'member_end_date_high');
499
500 $this->type("sort_name", "{$contactParams['first_name']} {$contactParams['last_name']}");
501 $this->click("_qf_Search_refresh");
502
503 $this->waitForPageToLoad($this->getTimeoutMsec());
504 $this->assertElementContainsText('crm-container', '1 Result ');
505
506 $this->waitForElementPresent("xpath=//div[@id='memberSearch']/table/tbody/tr");
507 $this->click("xpath=//div[@id='memberSearch']/table/tbody//tr/td[4][text()='{$memTypeTitle1}']/../td[11]/span/a[text()='View']");
508 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
509
510 //View Membership Record
511 $verifyData = array(
512 'Membership Type' => "$memTypeTitle1",
513 'Status' => 'New',
514 'Member Since' => $joinDate,
515 'Start date' => $startDate,
516 'End date' => $endDate,
517 );
518 foreach ($verifyData as $label => $value) {
519 $this->verifyText("xpath=//form[@id='MembershipView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td",
520 preg_quote($value)
521 );
522 }
523 //check if the membership amount is correct
524 $this->waitForElementPresent("xpath=//form[@id='MembershipView']/div[2]/div/div[2]/div[2]/table/tbody/tr/td[1]/span[text()='{$amount}']");
525 $this->assertTrue($this->isElementPresent("xpath=//form[@id='MembershipView']/div[2]/div/div[2]/div[2]/table/tbody/tr/td[1]/span[text()='{$amount}']"));
526 }
527
528 }