Merge branch '4.5' of https://github.com/civicrm/civicrm-core into 4.6
[civicrm-core.git] / tests / phpunit / WebTest / Contribute / OfflineContributionTest.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06a1bc01 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
TO
26
27require_once 'CiviTest/CiviSeleniumTestCase.php';
28
e9479dcf
EM
29/**
30 * Class WebTest_Contribute_OfflineContributionTest
31 */
6a488035
TO
32class WebTest_Contribute_OfflineContributionTest extends CiviSeleniumTestCase {
33
6a488035
TO
34 protected function setUp() {
35 parent::setUp();
36 }
76e86fd8 37
00be9182 38 public function testStandaloneContributeAdd() {
6a488035
TO
39 $this->webtestLogin();
40
41 // Create a contact to be used as soft creditor
42 $softCreditFname = substr(sha1(rand()), 0, 7);
43 $softCreditLname = substr(sha1(rand()), 0, 7);
06321b47 44 $this->webtestAddContact($softCreditFname, $softCreditLname, FALSE);
76e86fd8 45
6a488035 46 //financial account for check
118e964e 47 $this->openCiviPage("admin/options/payment_instrument", "reset=1");
5c80555f 48 $financialAccount = $this->getText("xpath=//div[@id='payment_instrument']/table/tbody//tr/td[1]/div[text()='Check']/../../td[3]");
76e86fd8 49
6a488035 50 // Add new Financial Account
06321b47 51 $orgName = 'Alberta ' . substr(sha1(rand()), 0, 7);
52 $financialAccountTitle = 'Financial Account ' . substr(sha1(rand()), 0, 4);
6a488035
TO
53 $financialAccountDescription = "{$financialAccountTitle} Description";
54 $accountingCode = 1033;
55 $financialAccountType = 'Asset';
56 $taxDeductible = FALSE;
57 $isActive = FALSE;
58 $isTax = TRUE;
59 $taxRate = 9;
60 $isDefault = FALSE;
76e86fd8 61
6a488035 62 //Add new organisation
06321b47 63 if ($orgName) {
6a488035
TO
64 $this->webtestAddOrganization($orgName);
65 }
76e86fd8 66
6a488035
TO
67 $this->_testAddFinancialAccount($financialAccountTitle,
68 $financialAccountDescription,
69 $accountingCode,
70 $orgName,
71 $financialAccountType,
72 $taxDeductible,
73 $isActive,
74 $isTax,
75 $taxRate,
76 $isDefault
77 );
78
06321b47 79 $firstName = 'John' . substr(sha1(rand()), 0, 7);
80 $lastName = 'Dsouza' . substr(sha1(rand()), 0, 7);
6a488035 81 $this->webtestAddContact($firstName, $lastName);
76e86fd8 82
6a488035
TO
83 $this->waitForElementPresent("css=li#tab_contribute a");
84 $this->click("css=li#tab_contribute a");
85 $this->waitForElementPresent("link=Record Contribution (Check, Cash, EFT ...)");
3bbf7318 86 $this->clickLink("link=Record Contribution (Check, Cash, EFT ...)", "_qf_Contribution_cancel-bottom", FALSE);
6a488035
TO
87
88 // select financial type
89 $this->select("financial_type_id", "value=1");
76e86fd8 90
6a488035
TO
91 // fill in Received Date
92 $this->webtestFillDate('receive_date');
76e86fd8 93
6a488035
TO
94 // source
95 $this->type("source", "Mailer 1");
76e86fd8 96
6a488035
TO
97 // total amount
98 $this->type("total_amount", "100");
99
100 // select payment instrument type = Check and enter chk number
101 $this->select("payment_instrument_id", "value=4");
102 $this->waitForElementPresent("check_number");
103 $this->type("check_number", "check #1041");
104
105 $this->type("trxn_id", "P20901X1" . rand(100, 10000));
76e86fd8 106
5d48a234 107 // create first soft credit
3bbf7318 108 $this->click("softCredit");
109 $this->waitForElementPresent("soft_credit_amount_1");
110 $this->webtestFillAutocomplete("{$softCreditLname}, {$softCreditFname}", 's2id_soft_credit_contact_id_1');
5d48a234 111 $this->type("soft_credit_amount_1", "50");
06321b47 112
5d48a234
S
113 // add second soft credit field
114 $this->click("addMoreSoftCredit");
115 $this->waitForElementPresent("soft_credit_amount_2");
51fa20cb 116 // create new individual via soft credit
5d48a234 117 $softCreditSecondFname = substr(sha1(rand()), 0, 7);
06321b47 118 $softCreditSecondLname = substr(sha1(rand()), 0, 7);
3bbf7318 119 $this->webtestNewDialogContact($softCreditSecondFname, $softCreditSecondLname, NULL, 4, 's2id_soft_credit_contact_id_2', 'soft_credit_1');
5d48a234 120 // enter the second soft credit
06321b47 121 $this->verifyText("soft_credit_amount_2", ""); // it should be blank cause first soft credit != total_amount
122 $this->type("soft_credit_amount_2", "100"); //the sum of the soft credit amounts can exceed total_amount
51fa20cb 123 $this->select("soft_credit_type[2]", "In Honor of");
6a488035
TO
124
125 //Custom Data
126 // $this->click('CIVICRM_QFID_3_6');
127
128 //Additional Detail section
129 $this->click("AdditionalDetail");
130 $this->waitForElementPresent("thankyou_date");
131
132 $this->type("note", "This is a test note.");
133 $this->type("non_deductible_amount", "10.00");
134 $this->type("fee_amount", "0");
135 $this->type("net_amount", "0");
136 $this->type("invoice_id", time());
137 $this->webtestFillDate('thankyou_date');
76e86fd8 138
6a488035
TO
139 //Premium section
140 $this->click("Premium");
141 $this->waitForElementPresent("fulfilled_date");
142 $this->select("product_name[0]", "label=Coffee Mug ( MUG-101 )");
143 $this->select("product_name[1]", "label=Black");
144 $this->webtestFillDate('fulfilled_date');
145
146 // Clicking save.
147 $this->click("_qf_Contribution_upload");
6a488035
TO
148
149 // Is status message correct?
5d48a234 150 //$this->assertTrue($this->isTextPresent("The contribution record has been saved."), "Status message didn't show up after saving!");
76e86fd8 151
5d48a234 152 // verify if Contribution is created
3bbf7318 153 $this->waitForElementPresent("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[8]/span/a[text()='View']");
76e86fd8 154
5d48a234 155 //click through to the Contribution view screen
3bbf7318 156 $this->click("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035 157 $this->waitForElementPresent("_qf_ContributionView_cancel-bottom");
76e86fd8 158
06321b47 159 $expected = array(
160 'Financial Type' => 'Donation',
161 'Total Amount' => '100.00',
6a488035 162 'Contribution Status' => 'Completed',
06321b47 163 'Paid By' => 'Check',
164 'Check Number' => 'check #1041',
6a488035 165 'Non-deductible Amount' => '10.00',
06321b47 166 'Received Into' => $financialAccount,
6a488035 167 );
06321b47 168
3bbf7318 169 $this->waitForElementPresent("xpath=//*[@id='ContributionView']/div[2]");
06321b47 170 foreach ($expected as $value) {
3bbf7318 171 $this->verifyText("xpath=//*[@id='ContributionView']/div[2]", preg_quote($value));
6a488035
TO
172 }
173
06321b47 174 // verify if soft credit was created successfully
175 $expected = array(
176 'Soft Credit To 1' => "{$softCreditFname} {$softCreditLname}",
177 'Soft Credit To 2' => "{$softCreditSecondFname} {$softCreditSecondLname}",
51fa20cb 178 'Amount (Soft Credit Type)' => '100.00 (In Honor of)',
06321b47 179 );
180
181 foreach ($expected as $value) {
182 $this->verifyText("css=table.crm-soft-credit-listing", preg_quote($value));
183 }
184
185 // go to first soft creditor contact view page
3bbf7318 186 $this->clickLink("xpath=//*[@id='ContributionView']/div[2]/div[2]/div[2]/table/tbody/tr[1]/td[1]/a", "css=li#tab_contribute a");
6a488035
TO
187
188 // go to contribution tab
6a488035
TO
189 $this->click("css=li#tab_contribute a");
190 $this->waitForElementPresent("link=Record Contribution (Check, Cash, EFT ...)");
191
192 // verify soft credit details
06321b47 193 $expected = array(
51fa20cb 194 3 => 'Solicited',
195 4 => 'Donation',
06321b47 196 2 => '50.00',
51fa20cb 197 6 => 'Completed',
21dfd5f5 198 1 => "{$firstName} {$lastName}",
6a488035 199 );
06321b47 200 foreach ($expected as $value => $label) {
3bbf7318 201 $this->verifyText("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[2]/td[$value]", preg_quote($label));
6a488035
TO
202 }
203 }
76e86fd8 204
00be9182 205 public function testDeductibleAmount() {
6a488035
TO
206 $this->webtestLogin();
207
208 //add authorize .net payment processor
209 $processorName = 'Webtest AuthNet' . substr(sha1(rand()), 0, 7);
210 $this->webtestAddPaymentProcessor($processorName, 'AuthNet');
76e86fd8 211
071a6d2e 212 $this->openCiviPage("admin/contribute/managePremiums", "action=add&reset=1");
6a488035
TO
213 $premiumName = 'test Premium' . substr(sha1(rand()), 0, 7);
214 $this->addPremium($premiumName, 'SKU', 3, 12, NULL, NULL);
76e86fd8 215
06321b47 216 $firstName = 'John' . substr(sha1(rand()), 0, 7);
217 $lastName = 'Dsouza' . substr(sha1(rand()), 0, 7);
6a488035
TO
218 $this->webtestAddContact($firstName, $lastName);
219
220 //scenario 1 : is_deductible = 0 and non deductible amount is entered
221 $scenario1 = array(
222 'financial_type' => 'Campaign Contribution',
223 'total_amount' => 111,
646957a3 224 'non_deductible_amount' => 15,
225 'sort_name' => "$lastName, $firstName",
6a488035
TO
226 );
227 $this->_doOfflineContribution($scenario1, $firstName, $lastName, $processorName);
76e86fd8 228
6a488035
TO
229 $checkScenario1 = array(
230 'From' => "{$firstName} {$lastName}",
231 'Financial Type' => 'Campaign Contribution',
232 'Total Amount' => 111,
646957a3 233 'Non-deductible Amount' => 15,
234 'sort_name' => "$lastName, $firstName",
6a488035
TO
235 );
236 $this->_verifyAmounts($checkScenario1);
76e86fd8 237
6a488035
TO
238 //scenario 2 : is_deductible = TRUE and premium is set and premium is greater than total amount
239 $scenario2 = array(
240 'financial_type' => 'Donation',
241 'total_amount' => 10,
646957a3 242 'premium' => "{$premiumName} ( SKU )",
243 'sort_name' => "$lastName, $firstName",
6a488035
TO
244 );
245 $this->_doOfflineContribution($scenario2, $firstName, $lastName, $processorName);
76e86fd8 246
6a488035
TO
247 $checkScenario2 = array(
248 'From' => "{$firstName} {$lastName}",
249 'Financial Type' => 'Donation',
250 'Total Amount' => 10,
646957a3 251 'Non-deductible Amount' => 10,
252 'sort_name' => "$lastName, $firstName",
6a488035
TO
253 );
254 $this->_verifyAmounts($checkScenario2);
76e86fd8 255
6a488035
TO
256 //scenario 3 : is_deductible = TRUE and premium is set and premium is less than total amount
257 $scenario3 = array(
258 'financial_type' => 'Donation',
259 'total_amount' => 123,
646957a3 260 'premium' => "{$premiumName} ( SKU )",
261 'sort_name' => "$lastName, $firstName",
6a488035
TO
262 );
263 $this->_doOfflineContribution($scenario3, $firstName, $lastName, $processorName);
76e86fd8 264
6a488035
TO
265 $checkScenario3 = array(
266 'From' => "{$firstName} {$lastName}",
267 'Financial Type' => 'Donation',
268 'Total Amount' => 123,
646957a3 269 'Non-deductible Amount' => 12,
270 'sort_name' => "$lastName, $firstName",
6a488035
TO
271 );
272 $this->_verifyAmounts($checkScenario3);
76e86fd8 273
6a488035
TO
274 //scenario 4 : is_deductible = TRUE and premium is not set
275 $scenario4 = array(
276 'financial_type' => 'Donation',
277 'total_amount' => 123,
646957a3 278 'sort_name' => "$lastName, $firstName",
6a488035
TO
279 );
280 $this->_doOfflineContribution($scenario4, $firstName, $lastName, $processorName);
76e86fd8 281
6a488035
TO
282 $checkScenario4 = array(
283 'From' => "{$firstName} {$lastName}",
284 'Financial Type' => 'Donation',
285 'Total Amount' => 123,
7542b691 286 'Non-deductible Amount' => 123,
646957a3 287 'sort_name' => "$lastName, $firstName",
6a488035
TO
288 );
289 $this->_verifyAmounts($checkScenario4);
290
291 //scenario 5 : is_deductible = FALSE, non_deductible_amount = the total amount
292 $scenario5 = array(
293 'financial_type' => 'Campaign Contribution',
294 'total_amount' => 555,
646957a3 295 'sort_name' => "$lastName, $firstName",
6a488035
TO
296 );
297 $this->_doOfflineContribution($scenario5, $firstName, $lastName, $processorName);
76e86fd8 298
6a488035
TO
299 $checkScenario5 = array(
300 'From' => "{$firstName} {$lastName}",
301 'Financial Type' => 'Campaign Contribution',
302 'Total Amount' => 555,
646957a3 303 'Non-deductible Amount' => 555,
304 'sort_name' => "$lastName, $firstName",
6a488035
TO
305 );
306 $this->_verifyAmounts($checkScenario5);
307 }
76e86fd8 308
4cbe18b8 309 /**
eceb18cc 310 * common function for doing offline contribution.
c490a46a 311 * @param array $params
100fef9d
CW
312 * @param string $firstName
313 * @param string $lastName
4cbe18b8
EM
314 * @param $processorName
315 */
00be9182 316 public function _doOfflineContribution($params, $firstName, $lastName, $processorName) {
76e86fd8 317
6a488035
TO
318 $this->waitForElementPresent("css=li#tab_contribute a");
319 $this->click("css=li#tab_contribute a");
7542b691 320 $this->waitForElementPresent("link=Record Contribution (Check, Cash, EFT ...)");
6a488035
TO
321
322 // since we don't have live credentials we will switch to test mode
7542b691 323 $url = $this->getAttribute("xpath=//*[@id='Search']/div[2]/div[2]/a[1]@href");
2e21c7ba 324 $url .= '&mode=test';
6a488035 325 $this->open($url);
a471a3b6 326 $this->waitForPageToLoad($this->getTimeoutMsec());
6a488035
TO
327
328 // start filling out contribution form
329 $this->waitForElementPresent('payment_processor_id');
330 $this->select('payment_processor_id', "label={$processorName}");
331
332 // select financial type
333 $this->select("financial_type_id", "label={$params['financial_type']}");
334
335 // total amount
336 $this->type("total_amount", "{$params['total_amount']}");
337
338 // enter credit card info on form
339 $this->webtestAddCreditCardDetails();
340
341 // billing address
342 $this->webtestAddBillingDetails($firstName, NULL, $lastName);
76e86fd8 343
6a488035
TO
344 if ($nonDeductibleAmt = CRM_Utils_Array::value('non_deductible_amount', $params)) {
345 $this->click("AdditionalDetail");
346 $this->waitForElementPresent("thankyou_date");
347 $this->type("note", "This is a test note.");
348 $this->type("non_deductible_amount", "{$nonDeductibleAmt}");
349 }
350
a7488080 351 if (!empty($params['premium'])) {
6a488035
TO
352 //Premium section
353 $this->click("Premium");
354 $this->waitForElementPresent("fulfilled_date");
355 $this->select("product_name[0]", "label={$params['premium']}");
356 }
357 // Clicking save.
7542b691 358 $this->click("_qf_Contribution_upload-bottom");
6a488035
TO
359 $this->waitForPageToLoad($this->getTimeoutMsec());
360
361 // Is status message correct?
362 $this->assertTrue($this->isTextPresent("The contribution record has been processed."), "Status message didn't show up after saving!");
363 }
76e86fd8 364
4cbe18b8 365 /**
4f1f1f2a 366 * common function for verifing total_amount, and non_deductible_amount
4cbe18b8
EM
367 * @param $verifyData
368 */
00be9182 369 public function _verifyAmounts($verifyData) {
646957a3 370 // since we are doing test contributions we need to search for test contribution and select first contribution
371 // record for the contact
372 $this->openCiviPage("contribute/search", "reset=1", "contribution_date_low");
373 $this->type("sort_name", $verifyData['sort_name']);
374
375 // select show test contributions
376 $this->click("contribution_test", "value=1");
377 $this->clickLink("_qf_Search_refresh", "xpath=//div[@id='contributionSearch']//table//tbody/tr[1]/td[11]/span/a[text()='View']");
3bbf7318 378 $this->clickLink("xpath=//div[@id='contributionSearch']//table//tbody/tr[1]/td[11]/span/a[text()='View']", "_qf_ContributionView_cancel-bottom", FALSE);
6a488035
TO
379
380 foreach ($verifyData as $label => $value) {
481a74f4 381 if ($label == 'sort_name') {
646957a3 382 continue;
383 }
6a488035
TO
384 $this->verifyText("xpath=//form[@id='ContributionView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td",
385 preg_quote($value)
386 );
387 }
388
646957a3 389 // now find contact and go back to contact summary
390 $this->openCiviPage("contact/search", "reset=1", "sort_name");
391 $this->type("sort_name", $verifyData['sort_name']);
392 $this->clickLink("_qf_Basic_refresh",
393 "xpath=//form[@id='Basic']/div[3]/div[1]/div[2]/table/tbody/tr[1]/td[11]/span/a[text()='View']");
394
395 $this->clickLink("xpath=//form[@id='Basic']/div[3]/div[1]/div[2]/table/tbody/tr[1]/td[11]/span/a[text()='View']",
92915c55 396 'crm-contact-actions-link', FALSE);
6a488035 397 }
3fb990f4 398
00be9182 399 public function testOnlineContributionWithZeroAmount() {
3fb990f4
RN
400 $this->webtestLogin();
401
402 // Create a contact to be used as soft creditor
06321b47 403 $firstName = 'John' . substr(sha1(rand()), 0, 7);
404 $lastName = 'Peterson' . substr(sha1(rand()), 0, 7);
405 $this->webtestAddContact($firstName, $lastName);
3fb990f4
RN
406 $this->waitForElementPresent("css=li#tab_contribute a");
407 $this->click("css=li#tab_contribute a");
408 $this->waitForElementPresent("link=Record Contribution (Check, Cash, EFT ...)");
3bbf7318 409 $this->clickLink("link=Record Contribution (Check, Cash, EFT ...)", "_qf_Contribution_cancel-bottom", FALSE);
3fb990f4 410
06321b47 411 // select financial type
3fb990f4
RN
412 $this->select("financial_type_id", "value=1");
413
414 // total amount
415 $this->type("total_amount", "0.00");
416
417 // select payment instrument
418 $this->select("payment_instrument_id", "value=1");
419
420 $this->type("trxn_id", "X20901X1" . rand(100, 10000));
3bbf7318 421 $this->click('_qf_Contribution_upload-bottom');
3fb990f4
RN
422 $this->waitForText("crm-notification-container", "The contribution record has been saved.");
423
3bbf7318 424 $this->waitForElementPresent("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[8]/span/a[text()='View']");
425 $this->clickLink("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[8]/span/a[text()='View']", "_qf_ContributionView_cancel-bottom", FALSE);
3fb990f4 426 $expected = array(
06321b47 427 'Financial Type' => 'Donation',
428 'Total Amount' => '0.00',
3fb990f4 429 'Contribution Status' => 'Completed',
21dfd5f5 430 'Paid By' => 'Credit Card',
3fb990f4
RN
431 );
432 $this->webtestVerifyTabularData($expected);
433 }
96025800 434
42daf119 435}