Merge pull request #11757 from eileenmcnaughton/manual
[civicrm-core.git] / tests / phpunit / WebTest / Member / OfflineMembershipAddPricesetTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
d25dd0ee 25 */
6a488035 26
6a488035 27require_once 'CiviTest/CiviSeleniumTestCase.php';
e9479dcf
EM
28
29/**
30 * Class WebTest_Member_OfflineMembershipAddPricesetTest
31 */
6a488035
TO
32class WebTest_Member_OfflineMembershipAddPricesetTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
00be9182 38 public function testAddPriceSet() {
6a488035
TO
39 // Log in using webtestLogin() method
40 $this->webtestLogin();
41
92915c55
TO
42 $title = substr(sha1(rand()), 0, 7);
43 $setTitle = "Membership Fees - $title";
44 $usedFor = 'Membership';
6a488035 45 $contributionType = 'Donation';
92915c55 46 $setHelp = 'Select your membership options.';
6a488035
TO
47 $this->_testAddSet($setTitle, $usedFor, $contributionType, $setHelp);
48
49 // Get the price set id ($sid) by retrieving and parsing the URL of the New Price Field form
50 // which is where we are after adding Price Set.
a471a3b6 51 $sid = $this->urlArg('sid');
6a488035
TO
52 $this->assertType('numeric', $sid);
53
54 $fields = array(
55 "National Membership $title" => 'Radio',
56 "Local Chapter $title" => 'CheckBox',
57 );
58
59 list($memTypeTitle1, $memTypeTitle2) = $this->_testAddPriceFields($fields, $validateStrings, FALSE, $title, $sid, $contributionType);
6a488035
TO
60
61 // load the Price Set Preview and check for expected values
62 $this->_testVerifyPriceSet($validateStrings, $sid);
63
64 // Sign up for membership
92915c55
TO
65 $firstName = 'John_' . substr(sha1(rand()), 0, 7);
66 $lastName = 'Anderson_' . substr(sha1(rand()), 0, 7);
67 $email = "{$firstName}.{$lastName}@example.com";
6a488035
TO
68 $contactParams = array(
69 'first_name' => $firstName,
70 'last_name' => $lastName,
71 'email-5' => $email,
72 );
73
74 // Add a contact from the quick add block
75 $this->webtestAddContact($firstName, $lastName, $email);
76
77 $this->_testSignUpOrRenewMembership($sid, $contactParams, $memTypeTitle1, $memTypeTitle2);
78
79 // Renew this membership
80 $this->_testSignUpOrRenewMembership($sid, $contactParams, $memTypeTitle1, $memTypeTitle2, $renew = TRUE);
81 }
82
6c6e6187 83 public function testAddPriceSetWithMultipleTerms() {
6a488035
TO
84 // Log in using webtestLogin() method
85 $this->webtestLogin();
0ff7ff97 86
92915c55
TO
87 $title = substr(sha1(rand()), 0, 7);
88 $setTitle = "Membership Fees - $title";
89 $usedFor = 'Membership';
6a488035 90 $contributionType = 'Member Dues';
92915c55 91 $setHelp = 'Select your membership options.';
6a488035 92 $memTypeParams1 = $this->webtestAddMembershipType();
92915c55
TO
93 $memTypeTitle1 = $memTypeParams1['membership_type'];
94 $memTypeId1 = explode('&id=', $this->getAttribute("xpath=//div[@id='membership_type']/table/tbody//tr/td[1]/div[text()='{$memTypeTitle1}']/../../td[12]/span/a[3]@href"));
95 $memTypeId1 = $memTypeId1[1];
6a488035
TO
96 $this->_testAddSet($setTitle, $usedFor, $contributionType, $setHelp);
97
98 // Get the price set id ($sid) by retrieving and parsing the URL of the New Price Field form
99 // which is where we are after adding Price Set.
a471a3b6 100 $sid = $this->urlArg('sid');
6a488035
TO
101 $this->assertType('numeric', $sid);
102
103 $fields = array("National Membership $title", "Radio");
0ff7ff97
PJ
104 $this->openCiviPage("admin/price/field", "reset=1&action=add&sid={$sid}");
105
6a488035
TO
106 $validateStrings[] = $fields[0];
107 $this->type('label', $fields[0]);
108 $this->select('html_type', "value={$fields[1]}");
109 $options = array(
6c6e6187 110 1 => array(
92915c55
TO
111 'label' => $memTypeTitle1 . "_1",
112 'membership_type_id' => $memTypeId1,
113 'amount' => 50.00,
114 'membership_num_terms' => 1,
0ff7ff97
PJ
115 ),
116 2 => array(
92fcb95f 117 'label' => $memTypeTitle1 . "_2",
0ff7ff97
PJ
118 'membership_type_id' => $memTypeId1,
119 'amount' => 90.00,
120 'membership_num_terms' => 2,
121 ),
122 3 => array(
92fcb95f 123 'label' => $memTypeTitle1 . "_3",
0ff7ff97
PJ
124 'membership_type_id' => $memTypeId1,
125 'amount' => 120.00,
126 'membership_num_terms' => 3,
127 ),
128 );
6a488035 129 $i = 2;
9b873358 130 foreach ($options as $index => $values) {
6a488035 131 $this->select("membership_type_id_{$index}", "value={$values['membership_type_id']}");
efb29358
CW
132 // Because it tends to cause problems, all uses of sleep() must be justified in comments
133 // Sleep should never be used for wait for anything to load from the server
134 // Justification for this instance: FIXME
6a488035 135 sleep(1);
6c6e6187
TO
136 $this->type("xpath=//table[@id='optionField']/tbody/tr[$i]/td[4]/input", $values['membership_num_terms']);
137 $this->type("xpath=//table[@id='optionField']/tbody/tr[$i]/td[5]/input", $values['label']);
138 $this->type("xpath=//table[@id='optionField']/tbody/tr[$i]/td[6]/input", $values['amount']);
9b873358 139 if ($i > 3) {
0ff7ff97 140 $this->click('link=another choice');
6a488035
TO
141 }
142 $i++;
143 }
481a74f4 144 $this->waitForElementPresent('financial_type_id');
6a488035
TO
145 $this->select("financial_type_id", "label={$contributionType}");
146 $this->waitForElementPresent('_qf_Field_next-bottom');
147 $this->click('_qf_Field_next-bottom');
6c5f7368 148 $this->waitForText('crm-notification-container', "Price Field '{$fields[0]}' has been saved.");
0ff7ff97 149
6a488035
TO
150 // load the Price Set Preview and check for expected values
151 $this->_testVerifyPriceSet($validateStrings, $sid);
152
153 $firstName = 'John_' . substr(sha1(rand()), 0, 7);
92915c55
TO
154 $lastName = 'Anderson_' . substr(sha1(rand()), 0, 7);
155 $email = "{$firstName}.{$lastName}@example.com";
6a488035
TO
156
157 $contactParams = array(
158 'first_name' => $firstName,
159 'last_name' => $lastName,
160 'email-5' => $email,
161 );
162 $this->webtestAddContact($firstName, $lastName, $email);
163 //membership with number of terms as 3
164 $this->_testMultilpeTermsMembershipRegistration($sid, $contactParams, $memTypeTitle1, 3);
165 //membership with number of terms as 2
166 $this->_testMultilpeTermsMembershipRegistration($sid, $contactParams, $memTypeTitle1, 2);
0ff7ff97 167
6a488035
TO
168 }
169
4cbe18b8
EM
170 /**
171 * @param $setTitle
172 * @param $usedFor
173 * @param null $contributionType
174 * @param $setHelp
175 */
00be9182 176 public function _testAddSet($setTitle, $usedFor, $contributionType = NULL, $setHelp) {
0ff7ff97 177 $this->openCiviPage('admin/price', 'reset=1&action=add', '_qf_Set_next-bottom');
6a488035
TO
178
179 // Enter Priceset fields (Title, Used For ...)
180 $this->type('title', $setTitle);
181 if ($usedFor == 'Event') {
182 $this->check('extends_1');
183 }
184 elseif ($usedFor == 'Contribution') {
185 $this->check('extends_2');
186 }
187 elseif ($usedFor == 'Membership') {
188 $this->click('extends_3');
0ff7ff97 189 $this->waitForElementPresent('financial_type_id');
73072f84 190 $this->select("css=select.crm-form-select", "label={$contributionType}");
6a488035 191 }
6a488035 192 $this->type('help_pre', $setHelp);
6a488035 193 $this->assertChecked('is_active', 'Verify that Is Active checkbox is set.');
6a488035 194
0ff7ff97 195 $this->click('_qf_Set_next-bottom');
343688b7 196 $this->waitForElementPresent("xpath=//div[@id='crm-main-content-wrapper']//div[2]/a");
6c5f7368 197 $this->waitForText('crm-notification-container', "Your Set '{$setTitle}' has been added. You can add fields to this set now.");
6a488035
TO
198 }
199
4cbe18b8
EM
200 /**
201 * @param $fields
202 * @param $validateString
203 * @param bool $dateSpecificFields
204 * @param $title
100fef9d 205 * @param int $sid
4cbe18b8
EM
206 * @param $contributionType
207 *
208 * @return array
209 */
00be9182 210 public function _testAddPriceFields(&$fields, &$validateString, $dateSpecificFields = FALSE, $title, $sid, $contributionType) {
6a488035 211 $memTypeParams1 = $this->webtestAddMembershipType();
92915c55 212 $memTypeTitle1 = $memTypeParams1['membership_type'];
6a488035 213
92915c55
TO
214 $memTypeId1 = explode('&id=', $this->getAttribute("xpath=//div[@id='membership_type']/table/tbody//tr/td[1]/div[text()='{$memTypeTitle1}']/../../td[12]/span/a[3]@href"));
215 $memTypeId1 = $memTypeId1[1];
6a488035
TO
216
217 $memTypeParams2 = $this->webtestAddMembershipType();
92915c55
TO
218 $memTypeTitle2 = $memTypeParams2['membership_type'];
219 $memTypeId2 = explode('&id=', $this->getAttribute("xpath=//div[@id='membership_type']/table/tbody//tr/td[1]/div[text()='{$memTypeTitle2}']/../../td[12]/span/a[3]@href"));
220 $memTypeId2 = $memTypeId2[1];
6a488035 221
0ff7ff97 222 $this->openCiviPage("admin/price/field", "reset=1&action=add&sid={$sid}");
6a488035
TO
223
224 foreach ($fields as $label => $type) {
225 $validateStrings[] = $label;
226
227 $this->type('label', $label);
228 $this->select('html_type', "value={$type}");
229
230 switch ($type) {
231 case 'Radio':
232 $options = array(
6c6e6187 233 1 => array(
92915c55
TO
234 'label' => "$memTypeTitle1",
235 'membership_type_id' => $memTypeId1,
236 'amount' => 100.00,
6a488035
TO
237 ),
238 2 => array(
239 'label' => "$memTypeTitle2",
240 'membership_type_id' => $memTypeId2,
241 'amount' => 50.00,
242 ),
243 );
244 $this->addMultipleChoiceOptions($options, $validateStrings);
245 break;
246
247 case 'CheckBox':
248 $options = array(
6c6e6187 249 1 => array(
92915c55
TO
250 'label' => "$memTypeTitle1",
251 'membership_type_id' => $memTypeId1,
252 'amount' => 100.00,
6a488035
TO
253 ),
254 2 => array(
255 'label' => "$memTypeTitle2",
256 'membership_type_id' => $memTypeId2,
257 'amount' => 50.00,
258 ),
259 );
260 $this->addMultipleChoiceOptions($options, $validateStrings);
261 break;
262
263 default:
264 break;
265 }
266 $this->select("financial_type_id", "label={$contributionType}");
267 $this->click('_qf_Field_next_new-bottom');
268 $this->waitForPageToLoad($this->getTimeoutMsec());
6c5f7368 269 $this->waitForText('crm-notification-container', "Price Field '{$label}' has been saved.");
6a488035
TO
270 }
271 return array($memTypeTitle1, $memTypeTitle2);
272 }
273
4cbe18b8
EM
274 /**
275 * @param $validateStrings
100fef9d 276 * @param int $sid
4cbe18b8 277 */
00be9182 278 public function _testVerifyPriceSet($validateStrings, $sid) {
6a488035
TO
279 // verify Price Set at Preview page
280 // start at Manage Price Sets listing
0ff7ff97 281 $this->openCiviPage('admin/price', 'reset=1');
6a488035
TO
282
283 // Use the price set id ($sid) to pick the correct row
73072f84 284 $this->click("css=tr#price_set-{$sid} a[title='Preview Price Set']");
6a488035 285
6a488035
TO
286 // Look for Register button
287 $this->waitForElementPresent('_qf_Preview_cancel-bottom');
288
289 // Check for expected price set field strings
290 $this->assertStringsPresent($validateStrings);
291 }
292
4cbe18b8 293 /**
100fef9d
CW
294 * @param int $sid
295 * @param array $contactParams
4cbe18b8
EM
296 * @param $memTypeTitle1
297 * @param $memTypeTitle2
298 * @param bool $renew
299 */
00be9182 300 public function _testSignUpOrRenewMembership($sid, $contactParams, $memTypeTitle1, $memTypeTitle2, $renew = FALSE) {
6a488035
TO
301 //build the membership dates.
302 require_once 'CRM/Core/Config.php';
303 require_once 'CRM/Utils/Array.php';
304 require_once 'CRM/Utils/Date.php';
92915c55 305 $currentYear = date('Y');
6a488035 306 $currentMonth = date('m');
92915c55
TO
307 $previousDay = date('d') - 1;
308 $endYear = ($renew) ? $currentYear + 2 : $currentYear + 1;
309 $joinDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
310 $startDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
311 $endDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, $previousDay, $endYear));
6a488035 312 foreach (array(
92915c55
TO
313 'joinDate',
314 'startDate',
d5cc0fc2 315 'endDate',
92915c55 316 ) as $date) {
d3f2fd13 317 $$date = CRM_Utils_Date::customFormat($$date, $this->webtestGetSetting('dateformatFull'));
6a488035
TO
318 }
319
320 if (!$renew) {
42daf119 321
6a488035
TO
322 $this->click('css=li#tab_member a');
323 $this->waitForElementPresent('link=Add Membership');
8b5ddb04 324 if ($this->isTextPresent("No memberships have been recorded for this contact.")) {
325 $this->waitForTextPresent('No memberships have been recorded for this contact.');
326 }
6a488035 327
8b5ddb04 328 $this->clickAjaxLink('link=Add Membership');
6a488035
TO
329 $this->waitForElementPresent('_qf_Membership_cancel-bottom');
330
331 $this->select('price_set_id', "value={$sid}");
332 $this->waitForElementPresent('pricesetTotal');
333
334 $this->click("xpath=//div[@id='priceset']/div[2]/div[2]/div/span/input");
335 $this->click("xpath=//div[@id='priceset']/div[3]/div[2]/div[2]/span/input");
336
337 $this->type('source', 'Offline membership Sign Up Test Text');
338 $this->click('_qf_Membership_upload-bottom');
339 }
340 else {
00a86031 341 $this->click("xpath=//div[@id='memberships']/div//table/tbody//tr/td[text()='{$memTypeTitle1}']/../td[9]/span[2][text()='Renew...']/ul/li/a[text()='Renew']");
6a488035 342 $this->waitForElementPresent('_qf_MembershipRenewal_cancel-bottom');
9fd4062a 343 $this->waitForAjaxContent();
6a488035
TO
344 $this->click('_qf_MembershipRenewal_upload-bottom');
345
346 $this->waitForElementPresent("xpath=//div[@id='memberships']//table/tbody/tr");
00a86031 347 $this->click("xpath=//div[@id='memberships']/div//table/tbody//tr/td[text()='{$memTypeTitle2}']/../td[9]/span[2][text()='Renew...']/ul/li/a[text()='Renew']");
6a488035 348 $this->waitForElementPresent('_qf_MembershipRenewal_cancel-bottom');
9fd4062a 349 $this->waitForAjaxContent();
6a488035
TO
350 $this->click('_qf_MembershipRenewal_upload-bottom');
351 }
c880a737 352 $this->waitForElementPresent("xpath=//div[@id='memberships']//table/tbody//tr/td[text()='{$memTypeTitle1}']/../td[9]/span/a[text()='View']");
9fd4062a 353 $this->waitForAjaxContent();
6a488035 354 $this->click("xpath=//div[@id='memberships']//table/tbody//tr/td[text()='{$memTypeTitle1}']/../td[9]/span/a[text()='View']");
9fd4062a 355 $this->waitForElementPresent("xpath=//div[@class='ui-dialog-buttonset']/button[3]");
0ff7ff97 356
6a488035
TO
357 //View Membership Record
358 $verifyData = array(
359 'Membership Type' => "{$memTypeTitle1}",
360 'Status' => 'New',
361 'Member Since' => $joinDate,
362 'Start date' => $startDate,
363 'End date' => $endDate,
364 );
0ff7ff97 365 $this->webtestVerifyTabularData($verifyData);
6a488035 366
9fd4062a 367 $this->click("xpath=//div[@class='ui-dialog-buttonset']/button[3]/span[2]");
c880a737 368 $this->waitForElementPresent("xpath=//div[@id='memberships']//table/tbody//tr/td[text()='{$memTypeTitle2}']/../td[9]/span/a[text()='View']");
6a488035 369 $this->click("xpath=//div[@id='memberships']//table/tbody//tr/td[text()='{$memTypeTitle2}']/../td[9]/span/a[text()='View']");
9fd4062a 370 $this->waitForElementPresent("xpath=//div[@class='ui-dialog-buttonset']/button[3]");
6a488035
TO
371
372 //View Membership Record
373 $verifyData = array(
374 'Membership Type' => "{$memTypeTitle2}",
375 'Status' => 'New',
376 'Member Since' => $joinDate,
377 'Start date' => $startDate,
378 'End date' => $endDate,
379 );
0ff7ff97
PJ
380 $this->webtestVerifyTabularData($verifyData);
381
9fd4062a 382 $this->click("xpath=//div[@class='ui-dialog-buttonset']/button[3]/span[2]");
6a488035
TO
383 $this->waitForElementPresent("xpath=//div[@id='memberships']//table/tbody/tr");
384 }
385
4cbe18b8 386 /**
100fef9d
CW
387 * @param int $sid
388 * @param array $contactParams
4cbe18b8
EM
389 * @param $memTypeTitle1
390 * @param $term
391 */
9b873358 392 public function _testMultilpeTermsMembershipRegistration($sid, $contactParams, $memTypeTitle1, $term) {
6a488035
TO
393 //build the membership dates.
394 require_once 'CRM/Core/Config.php';
395 require_once 'CRM/Utils/Array.php';
396 require_once 'CRM/Utils/Date.php';
92915c55 397 $currentYear = date('Y');
6a488035 398 $currentMonth = date('m');
92915c55
TO
399 $previousDay = date('d') - 1;
400 $endYear = ($term == 3) ? $currentYear + 3 : (($term == 2) ? $currentYear + 2 : $currentYear + 1);
401 $joinDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
402 $startDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, date('d'), $currentYear));
403 $endDate = date('Y-m-d', mktime(0, 0, 0, $currentMonth, $previousDay, $endYear));
6a488035 404 foreach (array(
92915c55
TO
405 'joinDate',
406 'startDate',
d5cc0fc2 407 'endDate',
92915c55 408 ) as $date) {
d3f2fd13 409 $$date = CRM_Utils_Date::customFormat($$date, $this->webtestGetSetting('dateformatFull'));
6a488035 410 }
0ff7ff97 411
6a488035
TO
412 $this->click('css=li#tab_member a');
413 $this->waitForElementPresent('link=Add Membership');
8b5ddb04 414 if ($this->isTextPresent("No memberships have been recorded for this contact.")) {
415 $this->waitForTextPresent('No memberships have been recorded for this contact.');
416 }
0ff7ff97 417
8b5ddb04 418 $this->clickAjaxLink('link=Add Membership');
6a488035 419 $this->waitForElementPresent('_qf_Membership_cancel-bottom');
0ff7ff97 420
6a488035
TO
421 $this->select('price_set_id', "value={$sid}");
422 $this->waitForElementPresent('pricesetTotal');
0ff7ff97 423
92915c55 424 $i = ($term == 3) ? 3 : (($term == 2) ? 2 : 1);
6a488035
TO
425 $this->waitForElementPresent("xpath=//div[@id='priceset']/div[2]/div[2]/div[$i]/span/input");
426 $this->click("xpath=//div[@id='priceset']/div[2]/div[2]/div[$i]/span/input");
427 $amount = $this->getText("xpath=//div[@id='priceset']/div[2]/div[2]/div[$i]/span/label/span[@class='crm-price-amount-amount']");
0ff7ff97 428
6a488035 429 $this->type('source', 'Offline membership Sign Up Test Text');
565761e7 430 $this->waitForElementPresent('recordContribution');
6a488035 431 $this->click('_qf_Membership_upload-bottom');
0ff7ff97 432
343688b7
RK
433 $this->waitForElementPresent("xpath=//table[@class='display dataTable no-footer']/tbody//tr/td[4][text()='{$endDate}']/../td[9]/span[1]/a[1]");
434 $this->click("xpath=//table[@class='display dataTable no-footer']/tbody//tr/td[4][text()='{$endDate}']/../td[9]/span[1]/a[1]");
435 $this->waitForElementPresent("xpath=//div[@class='ui-dialog-buttonset']/button[3]/span[2]");
6a488035
TO
436 //View Membership Record
437 $verifyData = array(
438 'Membership Type' => "$memTypeTitle1",
439 'Status' => 'New',
440 'Member Since' => $joinDate,
441 'Start date' => $startDate,
442 'End date' => $endDate,
443 );
0ff7ff97
PJ
444 $this->webtestVerifyTabularData($verifyData);
445
6a488035 446 //check if the membership amount is correct
cd223eef 447 $this->waitForElementPresent("xpath=//form[@id='MembershipView']/div[2]/div/div[@class='crm-accordion-wrapper']/div[2]/table/tbody/tr/td/a");
448 $this->assertElementContainsText("xpath=//form[@id='MembershipView']/div[2]/div/div[@class='crm-accordion-wrapper']/div[2]/table/tbody/tr/td/a", $amount);
6a488035 449 $this->click("_qf_MembershipView_cancel-bottom");
6a488035 450 }
96025800 451
42daf119 452}