Merge pull request #10138 from totten/master-hook-fix
[civicrm-core.git] / tests / phpunit / CRM / Contribute / BAO / ContributionTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
15a4309a 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info'AT'civicrm'DOT'org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035 27
4cbe18b8
EM
28/**
29 * Class CRM_Contribute_BAO_ContributionTest
acb109b7 30 * @group headless
4cbe18b8 31 */
6a488035 32class CRM_Contribute_BAO_ContributionTest extends CiviUnitTestCase {
6a488035 33
6a488035 34 /**
2449fe69 35 * Clean up after tests.
36 */
37 public function tearDown() {
38 $this->quickCleanUpFinancialEntities();
39 $this->quickCleanUpFinancialEntities(array('civicrm_event'));
40 parent::tearDown();
41 }
42
43 /**
44 * Test create method (create and update modes).
6a488035 45 */
00be9182 46 public function testCreate() {
2449fe69 47 $contactId = $this->individualCreate();
6a488035
TO
48
49 $params = array(
50 'contact_id' => $contactId,
51 'currency' => 'USD',
92915c55 52 'financial_type_id' => 1,
6a488035
TO
53 'contribution_status_id' => 1,
54 'payment_instrument_id' => 1,
55 'source' => 'STUDENT',
56 'receive_date' => '20080522000000',
57 'receipt_date' => '20080522000000',
58 'non_deductible_amount' => 0.00,
59 'total_amount' => 200.00,
60 'fee_amount' => 5,
61 'net_amount' => 195,
62 'trxn_id' => '22ereerwww444444',
63 'invoice_id' => '86ed39c9e9ee6ef6031621ce0eafe7eb81',
64 'thankyou_date' => '20080522',
65 );
66
2449fe69 67 $contribution = CRM_Contribute_BAO_Contribution::create($params);
6a488035 68
2449fe69 69 $this->assertEquals($params['trxn_id'], $contribution->trxn_id, 'Check for transaction id creation.');
6a488035
TO
70 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
71
72 //update contribution amount
73 $ids = array('contribution' => $contribution->id);
74 $params['fee_amount'] = 10;
75 $params['net_amount'] = 190;
76
77 $contribution = CRM_Contribute_BAO_Contribution::create($params, $ids);
78
79 $this->assertEquals($params['trxn_id'], $contribution->trxn_id, 'Check for transcation id .');
80 $this->assertEquals($params['net_amount'], $contribution->net_amount, 'Check for Amount updation.');
6a488035
TO
81 }
82
83 /**
f43ac8d8 84 * Create() method with custom data.
6a488035 85 */
00be9182 86 public function testCreateWithCustomData() {
2449fe69 87 $contactId = $this->individualCreate();
6a488035
TO
88
89 //create custom data
2449fe69 90 $customGroup = $this->customGroupCreate(array('extends' => 'Contribution'));
91 $customGroupID = $customGroup['id'];
92 $customGroup = $customGroup['values'][$customGroupID];
93
6a488035
TO
94 $fields = array(
95 'label' => 'testFld',
96 'data_type' => 'String',
97 'html_type' => 'Text',
98 'is_active' => 1,
2449fe69 99 'custom_group_id' => $customGroupID,
6a488035
TO
100 );
101 $customField = CRM_Core_BAO_CustomField::create($fields);
102
103 $params = array(
104 'contact_id' => $contactId,
105 'currency' => 'USD',
92915c55 106 'financial_type_id' => 1,
6a488035
TO
107 'contribution_status_id' => 1,
108 'payment_instrument_id' => 1,
109 'source' => 'STUDENT',
110 'receive_date' => '20080522000000',
111 'receipt_date' => '20080522000000',
112 'id' => NULL,
113 'non_deductible_amount' => 0.00,
114 'total_amount' => 200.00,
115 'fee_amount' => 5,
116 'net_amount' => 195,
117 'trxn_id' => '22ereerwww322323',
118 'invoice_id' => '22ed39c9e9ee6ef6031621ce0eafe6da70',
119 'thankyou_date' => '20080522',
120 );
121
6a488035
TO
122 $params['custom'] = array(
123 $customField->id => array(
124 -1 => array(
125 'value' => 'Test custom value',
126 'type' => 'String',
127 'custom_field_id' => $customField->id,
2449fe69 128 'custom_group_id' => $customGroupID,
129 'table_name' => $customGroup['table_name'],
6a488035
TO
130 'column_name' => $customField->column_name,
131 'file_id' => NULL,
132 ),
133 ),
134 );
135
2449fe69 136 $contribution = CRM_Contribute_BAO_Contribution::create($params);
6a488035
TO
137
138 // Check that the custom field value is saved
139 $customValueParams = array(
140 'entityID' => $contribution->id,
141 'custom_' . $customField->id => 1,
142 );
143 $values = CRM_Core_BAO_CustomValueTable::getValues($customValueParams);
144 $this->assertEquals('Test custom value', $values['custom_' . $customField->id], 'Check the custom field value');
145
146 $this->assertEquals($params['trxn_id'], $contribution->trxn_id, 'Check for transcation id creation.');
147 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id for Conribution.');
6a488035
TO
148 }
149
150 /**
100fef9d 151 * DeleteContribution() method
6a488035 152 */
00be9182 153 public function testDeleteContribution() {
2449fe69 154 $contactId = $this->individualCreate();
6a488035
TO
155
156 $params = array(
157 'contact_id' => $contactId,
158 'currency' => 'USD',
92915c55 159 'financial_type_id' => 1,
6a488035
TO
160 'contribution_status_id' => 1,
161 'payment_instrument_id' => 1,
162 'source' => 'STUDENT',
163 'receive_date' => '20080522000000',
164 'receipt_date' => '20080522000000',
165 'id' => NULL,
166 'non_deductible_amount' => 0.00,
167 'total_amount' => 200.00,
168 'fee_amount' => 5,
169 'net_amount' => 195,
170 'trxn_id' => '33ereerwww322323',
171 'invoice_id' => '33ed39c9e9ee6ef6031621ce0eafe6da70',
172 'thankyou_date' => '20080522',
173 );
174
2449fe69 175 $contribution = CRM_Contribute_BAO_Contribution::create($params);
6a488035
TO
176
177 $this->assertEquals($params['trxn_id'], $contribution->trxn_id, 'Check for transcation id creation.');
178 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
179
2449fe69 180 CRM_Contribute_BAO_Contribution::deleteContribution($contribution->id);
6a488035
TO
181
182 $this->assertDBNull('CRM_Contribute_DAO_Contribution', $contribution->trxn_id,
183 'id', 'trxn_id', 'Database check for deleted Contribution.'
184 );
6a488035
TO
185 }
186
187 /**
2449fe69 188 * Create honor-contact method.
6a488035 189 */
2449fe69 190 public function testCreateAndGetHonorContact() {
6a488035 191 $firstName = 'John_' . substr(sha1(rand()), 0, 7);
92915c55
TO
192 $lastName = 'Smith_' . substr(sha1(rand()), 0, 7);
193 $email = "{$firstName}.{$lastName}@example.com";
6a488035 194
8381af80 195 //Get profile id of name honoree_individual used to create profileContact
196 $honoreeProfileId = NULL;
197 $ufGroupDAO = new CRM_Core_DAO_UFGroup();
198 $ufGroupDAO->name = 'honoree_individual';
199 if ($ufGroupDAO->find(TRUE)) {
200 $honoreeProfileId = $ufGroupDAO->id;
201 }
202
6a488035 203 $params = array(
8381af80 204 'prefix_id' => 3,
205 'first_name' => $firstName,
206 'last_name' => $lastName,
207 'email-1' => $email,
6a488035 208 );
8381af80 209 $softParam = array('soft_credit_type_id' => 1);
210
211 $honoreeContactId = CRM_Contact_BAO_Contact::createProfileContact($params, CRM_Core_DAO::$_nullArray,
92915c55
TO
212 NULL, NULL, $honoreeProfileId
213 );
6a488035 214
8381af80 215 $this->assertDBCompareValue('CRM_Contact_DAO_Contact', $honoreeContactId, 'first_name', 'id', $firstName,
6a488035
TO
216 'Database check for created honor contact record.'
217 );
218 //create contribution on behalf of honary.
219
2449fe69 220 $contactId = $this->individualCreate(array('first_name' => 'John', 'last_name' => 'Doe'));
6a488035 221
6a488035
TO
222 $param = array(
223 'contact_id' => $contactId,
224 'currency' => 'USD',
92915c55 225 'financial_type_id' => 4,
6a488035
TO
226 'contribution_status_id' => 1,
227 'receive_date' => date('Ymd'),
228 'total_amount' => 66,
6a488035
TO
229 );
230
2449fe69 231 $contribution = CRM_Contribute_BAO_Contribution::create($param);
6a488035 232 $id = $contribution->id;
2449fe69 233 $softParam['contact_id'] = $honoreeContactId;
8381af80 234 $softParam['contribution_id'] = $id;
235 $softParam['currency'] = $contribution->currency;
236 $softParam['amount'] = $contribution->total_amount;
237
238 //Create Soft Contribution for honoree contact
239 CRM_Contribute_BAO_ContributionSoft::add($softParam);
240
241 $this->assertDBCompareValue('CRM_Contribute_DAO_ContributionSoft', $id, 'contact_id',
242 'contribution_id', $honoreeContactId, 'Check DB for honor contact of the contribution'
6a488035 243 );
e4f46be0 244 //get honorary information
8381af80 245 $getHonorContact = CRM_Contribute_BAO_Contribution::getHonorContacts($honoreeContactId);
4ff25fbb 246 $this->assertEquals(array(
247 $id => array(
248 'honor_type' => 'In Honor of',
2449fe69 249 'honorId' => $contactId,
250 'display_name' => 'Mr. John Doe II',
4ff25fbb 251 'type' => 'Event Fee',
252 'type_id' => '4',
253 'amount' => '$ 66.00',
254 'source' => NULL,
755ca72c 255 'receive_date' => date('Y-m-d 00:00:00'),
4ff25fbb 256 'contribution_status' => 'Completed',
257 ),
258 ), $getHonorContact);
6a488035 259
8381af80 260 $this->assertDBCompareValue('CRM_Contact_DAO_Contact', $honoreeContactId, 'first_name', 'id', $firstName,
6a488035
TO
261 'Database check for created honor contact record.'
262 );
263
264 //get annual contribution information
265 $annual = CRM_Contribute_BAO_Contribution::annual($contactId);
266
267 $config = CRM_Core_Config::singleton();
6c6e6187 268 $currencySymbol = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_Currency', $config->defaultCurrency, 'symbol', 'name');
6a488035
TO
269 $this->assertDBCompareValue('CRM_Contribute_DAO_Contribution', $id, 'total_amount',
270 'id', ltrim($annual[2], $currencySymbol), 'Check DB for total amount of the contribution'
271 );
6a488035
TO
272 }
273
274 /**
eceb18cc 275 * Display sort name during.
b581842f 276 * Update multiple contributions
6a488035
TO
277 * sortName();
278 */
00be9182 279 public function testsortName() {
6a488035
TO
280 $params = array(
281 'first_name' => 'Shane',
282 'last_name' => 'Whatson',
283 'contact_type' => 'Individual',
284 );
285
286 $contact = CRM_Contact_BAO_Contact::add($params);
287
288 //Now check $contact is object of contact DAO..
289 $this->assertInstanceOf('CRM_Contact_DAO_Contact', $contact, 'Check for created object');
290
291 $contactId = $contact->id;
292
293 $ids = array('contribution' => NULL);
294
295 $param = array(
296 'contact_id' => $contactId,
297 'currency' => 'USD',
92915c55 298 'financial_type_id' => 1,
6a488035
TO
299 'contribution_status_id' => 1,
300 'payment_instrument_id' => 1,
301 'source' => 'STUDENT',
302 'receive_date' => '20080522000000',
303 'receipt_date' => '20080522000000',
304 'id' => NULL,
305 'non_deductible_amount' => 0.00,
306 'total_amount' => 300.00,
307 'fee_amount' => 5,
308 'net_amount' => 295,
309 'trxn_id' => '22ereerwww323',
310 'invoice_id' => '22ed39c9e9ee621ce0eafe6da70',
311 'thankyou_date' => '20080522',
312 );
313
314 $contribution = CRM_Contribute_BAO_Contribution::create($param, $ids);
315
316 $this->assertEquals($param['trxn_id'], $contribution->trxn_id, 'Check for transcation id creation.');
317 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
318
b581842f 319 //display sort name during Update multiple contributions
6a488035
TO
320 $sortName = CRM_Contribute_BAO_Contribution::sortName($contribution->id);
321
322 $this->assertEquals('Whatson, Shane', $sortName, 'Check for sort name.');
6a488035
TO
323 }
324
325 /**
eceb18cc 326 * Add premium during online Contribution.
6a488035
TO
327 *
328 * AddPremium();
329 */
00be9182 330 public function testAddPremium() {
2449fe69 331 $contactId = $this->individualCreate();
6a488035
TO
332
333 $ids = array(
334 'premium' => NULL,
335 );
336
6a488035
TO
337 $params = array(
338 'name' => 'TEST Premium',
339 'sku' => 111,
340 'imageOption' => 'noImage',
341 'MAX_FILE_SIZE' => 2097152,
342 'price' => 100.00,
343 'cost' => 90.00,
344 'min_contribution' => 100,
345 'is_active' => 1,
346 );
347 $premium = CRM_Contribute_BAO_ManagePremiums::add($params, $ids);
348
349 $this->assertEquals('TEST Premium', $premium->name, 'Check for premium name.');
350
351 $ids = array('contribution' => NULL);
352
353 $param = array(
354 'contact_id' => $contactId,
355 'currency' => 'USD',
92915c55 356 'financial_type_id' => 1,
6a488035
TO
357 'contribution_status_id' => 1,
358 'payment_instrument_id' => 1,
359 'source' => 'STUDENT',
360 'receive_date' => '20080522000000',
361 'receipt_date' => '20080522000000',
362 'id' => NULL,
363 'non_deductible_amount' => 0.00,
364 'total_amount' => 300.00,
365 'fee_amount' => 5,
366 'net_amount' => 295,
367 'trxn_id' => '33erdfrwvw434',
368 'invoice_id' => '98ed34f7u9hh672ce0eafe8fb92',
369 'thankyou_date' => '20080522',
370 );
371
372 $contribution = CRM_Contribute_BAO_Contribution::create($param, $ids);
373
374 $this->assertEquals($param['trxn_id'], $contribution->trxn_id, 'Check for transcation id creation.');
375 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
376
377 //parameter for adding premium to contribution
378 $data = array(
379 'product_id' => $premium->id,
380 'contribution_id' => $contribution->id,
381 'product_option' => NULL,
382 'quantity' => 1,
383 );
384 $contributionProduct = CRM_Contribute_BAO_Contribution::addPremium($data);
385 $this->assertEquals($contributionProduct->product_id, $premium->id, 'Check for Product id .');
386
387 //Delete Product
388 CRM_Contribute_BAO_ManagePremiums::del($premium->id);
389 $this->assertDBNull('CRM_Contribute_DAO_Product', $premium->name,
390 'id', 'name', 'Database check for deleted Product.'
391 );
6a488035
TO
392 }
393
394 /**
fe482240 395 * Check duplicate contribution id.
6a488035
TO
396 * during the contribution import
397 * checkDuplicateIds();
398 */
00be9182 399 public function testcheckDuplicateIds() {
2449fe69 400 $contactId = $this->individualCreate();
6a488035
TO
401
402 $param = array(
403 'contact_id' => $contactId,
404 'currency' => 'USD',
92915c55 405 'financial_type_id' => 1,
6a488035
TO
406 'contribution_status_id' => 1,
407 'payment_instrument_id' => 1,
408 'source' => 'STUDENT',
409 'receive_date' => '20080522000000',
410 'receipt_date' => '20080522000000',
411 'id' => NULL,
412 'non_deductible_amount' => 0.00,
413 'total_amount' => 300.00,
414 'fee_amount' => 5,
415 'net_amount' => 295,
416 'trxn_id' => '76ereeswww835',
417 'invoice_id' => '93ed39a9e9hd621bs0eafe3da82',
418 'thankyou_date' => '20080522',
419 );
420
2449fe69 421 $contribution = CRM_Contribute_BAO_Contribution::create($param);
6a488035
TO
422
423 $this->assertEquals($param['trxn_id'], $contribution->trxn_id, 'Check for transcation id creation.');
424 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
425 $data = array(
426 'id' => $contribution->id,
427 'trxn_id' => $contribution->trxn_id,
428 'invoice_id' => $contribution->invoice_id,
429 );
430 $contributionID = CRM_Contribute_BAO_Contribution::checkDuplicateIds($data);
431 $this->assertEquals($contributionID, $contribution->id, 'Check for duplicate transcation id .');
6a488035 432 }
96025800 433
8022372f
GC
434 /**
435 * Check credit note id creation
436 * when a contribution is cancelled or refunded
437 * createCreditNoteId();
438 */
439 public function testCreateCreditNoteId() {
2449fe69 440 $contactId = $this->individualCreate();
8022372f
GC
441
442 $param = array(
443 'contact_id' => $contactId,
444 'currency' => 'USD',
445 'financial_type_id' => 1,
446 'contribution_status_id' => 3,
447 'payment_instrument_id' => 1,
448 'source' => 'STUDENT',
449 'receive_date' => '20080522000000',
450 'receipt_date' => '20080522000000',
451 'id' => NULL,
452 'non_deductible_amount' => 0.00,
453 'total_amount' => 300.00,
454 'fee_amount' => 5,
455 'net_amount' => 295,
456 'trxn_id' => '76ereeswww835',
457 'invoice_id' => '93ed39a9e9hd621bs0eafe3da82',
458 'thankyou_date' => '20080522',
459 );
460
461 $creditNoteId = CRM_Contribute_BAO_Contribution::createCreditNoteId();
2449fe69 462 $contribution = CRM_Contribute_BAO_Contribution::create($param);
8022372f
GC
463 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
464 $this->assertEquals($creditNoteId, $contribution->creditnote_id, 'Check if credit note id is created correctly.');
8022372f
GC
465 }
466
b04e4b11
PN
467 /**
468 * Create() method (create and update modes).
469 */
470 public function testIsPaymentFlag() {
2449fe69 471 $contactId = $this->individualCreate();
b04e4b11
PN
472
473 $params = array(
474 'contact_id' => $contactId,
475 'currency' => 'USD',
476 'financial_type_id' => 1,
477 'contribution_status_id' => 1,
478 'payment_instrument_id' => 1,
479 'source' => 'STUDENT',
480 'receive_date' => '20080522000000',
481 'receipt_date' => '20080522000000',
482 'non_deductible_amount' => 0.00,
483 'total_amount' => 200.00,
484 'fee_amount' => 5,
485 'net_amount' => 195,
486 'trxn_id' => '22ereerwww4444xx',
487 'invoice_id' => '86ed39c9e9ee6ef6541621ce0eafe7eb81',
488 'thankyou_date' => '20080522',
489 );
490
2449fe69 491 $contribution = CRM_Contribute_BAO_Contribution::create($params);
b04e4b11
PN
492
493 $this->assertEquals($params['trxn_id'], $contribution->trxn_id, 'Check for transcation id creation.');
494 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
495
496 $trxnArray = array(
497 'trxn_id' => $params['trxn_id'],
498 'is_payment' => 1,
499 );
500 $defaults = array();
501 $financialTrxn = CRM_Core_BAO_FinancialTrxn::retrieve($trxnArray, $defaults);
4ba3c75f 502 $this->assertEquals(1, $financialTrxn->N, 'Mismatch count for is payment flag.');
b04e4b11
PN
503 //update contribution amount
504 $ids = array('contribution' => $contribution->id);
505 $params['total_amount'] = 150;
506
507 $contribution = CRM_Contribute_BAO_Contribution::create($params, $ids);
508
509 $this->assertEquals($params['trxn_id'], $contribution->trxn_id, 'Check for transcation id .');
510 $this->assertEquals($params['total_amount'], $contribution->total_amount, 'Check for Amount updation.');
511 $trxnArray = array(
512 'trxn_id' => $params['trxn_id'],
513 'is_payment' => 1,
514 );
515 $defaults = array();
516 $financialTrxn = CRM_Core_BAO_FinancialTrxn::retrieve($trxnArray, $defaults);
4ba3c75f 517 $this->assertEquals(2, $financialTrxn->N, 'Mismatch count for is payment flag.');
b04e4b11
PN
518 $trxnArray['is_payment'] = 0;
519 $financialTrxn = CRM_Core_BAO_FinancialTrxn::retrieve($trxnArray, $defaults);
4ba3c75f 520 $this->assertEquals(1, $financialTrxn->N, 'Mismatch count for is payment flag.');
b04e4b11
PN
521 }
522
a387acc9
PN
523 /**
524 * Create() method (create and update modes).
525 */
526 public function testIsPaymentFlagForPending() {
2449fe69 527 $contactId = $this->individualCreate();
a387acc9
PN
528
529 $params = array(
530 'contact_id' => $contactId,
531 'currency' => 'USD',
532 'financial_type_id' => 1,
533 'contribution_status_id' => 2,
534 'payment_instrument_id' => 1,
535 'source' => 'STUDENT',
536 'is_pay_later' => 1,
537 'receive_date' => '20080522000000',
538 'receipt_date' => '20080522000000',
539 'non_deductible_amount' => 0.00,
540 'total_amount' => 200.00,
541 'fee_amount' => 5,
542 'net_amount' => 195,
543 'trxn_id' => '22ereerwww4444yy',
544 'invoice_id' => '86ed39c9e9yy6ef6541621ce0eafe7eb81',
545 'thankyou_date' => '20080522',
546 );
547
2449fe69 548 $contribution = CRM_Contribute_BAO_Contribution::create($params);
a387acc9
PN
549
550 $this->assertEquals($params['trxn_id'], $contribution->trxn_id, 'Check for transcation id creation.');
551 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
552
553 $trxnArray = array(
554 'trxn_id' => $params['trxn_id'],
555 'is_payment' => 0,
556 );
557 $defaults = array();
558 $financialTrxn = CRM_Core_BAO_FinancialTrxn::retrieve($trxnArray, $defaults);
559 $this->assertEquals(2, $financialTrxn->N, 'Mismatch count for is payment flag.');
560 $trxnArray['is_payment'] = 1;
561 $financialTrxn = CRM_Core_BAO_FinancialTrxn::retrieve($trxnArray, $defaults);
562 $this->assertEquals(NULL, $financialTrxn, 'Mismatch count for is payment flag.');
563 //update contribution amount
564 $ids = array('contribution' => $contribution->id);
565 $params['contribution_status_id'] = 1;
566
567 $contribution = CRM_Contribute_BAO_Contribution::create($params, $ids);
568
569 $this->assertEquals($params['trxn_id'], $contribution->trxn_id, 'Check for transcation id .');
570 $this->assertEquals($params['contribution_status_id'], $contribution->contribution_status_id, 'Check for status updation.');
571 $trxnArray = array(
572 'trxn_id' => $params['trxn_id'],
573 'is_payment' => 1,
574 );
575 $defaults = array();
576 $financialTrxn = CRM_Core_BAO_FinancialTrxn::retrieve($trxnArray, $defaults);
577 $this->assertEquals(1, $financialTrxn->N, 'Mismatch count for is payment flag.');
578 $trxnArray['is_payment'] = 0;
579 $financialTrxn = CRM_Core_BAO_FinancialTrxn::retrieve($trxnArray, $defaults);
580 $this->assertEquals(2, $financialTrxn->N, 'Mismatch count for is payment flag.');
a387acc9
PN
581 }
582
eec619df 583 /**
0a5651eb 584 * addPayments() method (add and edit modes of participant)
eec619df
PN
585 */
586 public function testAddPayments() {
587 list($lineItems, $contribution) = $this->addParticipantWithContribution();
955ee56e 588 CRM_Contribute_BAO_Contribution::addPayments(array($contribution));
0a5651eb
PN
589 $this->checkItemValues($contribution);
590 }
591
592 /**
593 * checks db values for financial item
594 */
624195c8 595 public function checkItemValues($contribution) {
eec619df
PN
596 $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Accounts Receivable Account is' "));
597 $toFinancialAccount = CRM_Contribute_PseudoConstant::financialAccountType(4, $relationTypeId);
2449fe69 598 $query = "SELECT eft1.entity_id, ft.total_amount, eft1.amount FROM civicrm_financial_trxn ft INNER JOIN civicrm_entity_financial_trxn eft ON (eft.financial_trxn_id = ft.id AND eft.entity_table = 'civicrm_contribution')
eec619df
PN
599INNER JOIN civicrm_entity_financial_trxn eft1 ON (eft1.financial_trxn_id = eft.financial_trxn_id AND eft1.entity_table = 'civicrm_financial_item')
600WHERE eft.entity_id = %1 AND ft.to_financial_account_id <> %2";
601
602 $queryParams[1] = array($contribution->id, 'Integer');
603 $queryParams[2] = array($toFinancialAccount, 'Integer');
604
605 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
19084b68 606 $amounts = array(100.00, 50.00);
eec619df
PN
607 while ($dao->fetch()) {
608 $this->assertEquals(150.00, $dao->total_amount, 'Mismatch of total amount paid.');
19084b68 609 $this->assertEquals($dao->amount, array_pop($amounts), 'Mismatch of amount proportionally assigned to financial item');
eec619df 610 }
eec619df
PN
611 }
612
0a5651eb
PN
613 /**
614 * assignProportionalLineItems() method (add and edit modes of participant)
615 */
616 public function testAssignProportionalLineItems() {
617 list($lineItems, $contribution) = $this->addParticipantWithContribution();
0a5651eb
PN
618 $params = array(
619 'contribution_id' => $contribution->id,
620 'total_amount' => 150.00,
621 );
622 $trxn = new CRM_Financial_DAO_FinancialTrxn();
623 $trxn->orderBy('id DESC');
624 $trxn->find(TRUE);
8de1ade9 625 CRM_Contribute_BAO_Contribution::assignProportionalLineItems($params, $trxn->id, $contribution->total_amount);
0a5651eb
PN
626 $this->checkItemValues($contribution);
627 }
628
eec619df
PN
629 /**
630 * Add participant with contribution
631 *
632 * @return array
633 */
78c99516 634 public function addParticipantWithContribution() {
eec619df 635 // creating price set, price field
2449fe69 636 $this->_contactId = $this->individualCreate();
637 $event = $this->eventCreate();
638 $this->_eventId = $event['id'];
624195c8 639 $paramsSet['title'] = 'Price Set' . substr(sha1(rand()), 0, 4);
19084b68 640 $paramsSet['name'] = CRM_Utils_String::titleToVar($paramsSet['title']);
eec619df
PN
641 $paramsSet['is_active'] = TRUE;
642 $paramsSet['financial_type_id'] = 4;
643 $paramsSet['extends'] = 1;
644
645 $priceset = CRM_Price_BAO_PriceSet::create($paramsSet);
646 $priceSetId = $priceset->id;
647
648 //Checking for priceset added in the table.
649 $this->assertDBCompareValue('CRM_Price_BAO_PriceSet', $priceSetId, 'title',
650 'id', $paramsSet['title'], 'Check DB for created priceset'
651 );
652 $paramsField = array(
653 'label' => 'Price Field',
654 'name' => CRM_Utils_String::titleToVar('Price Field'),
655 'html_type' => 'CheckBox',
656 'option_label' => array('1' => 'Price Field 1', '2' => 'Price Field 2'),
657 'option_value' => array('1' => 100, '2' => 200),
658 'option_name' => array('1' => 'Price Field 1', '2' => 'Price Field 2'),
659 'option_weight' => array('1' => 1, '2' => 2),
660 'option_amount' => array('1' => 100, '2' => 200),
661 'is_display_amounts' => 1,
662 'weight' => 1,
663 'options_per_line' => 1,
664 'is_active' => array('1' => 1, '2' => 1),
665 'price_set_id' => $priceset->id,
666 'is_enter_qty' => 1,
667 'financial_type_id' => CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialType', 'Event Fee', 'id', 'name'),
668 );
669 $priceField = CRM_Price_BAO_PriceField::create($paramsField);
670 $eventParams = array(
671 'id' => $this->_eventId,
672 'financial_type_id' => 4,
673 'is_monetary' => 1,
674 );
675 CRM_Event_BAO_Event::create($eventParams);
676 CRM_Price_BAO_PriceSet::addTo('civicrm_event', $this->_eventId, $priceSetId);
e4ba8498 677
eec619df
PN
678 $priceFields = $this->callAPISuccess('PriceFieldValue', 'get', array('price_field_id' => $priceField->id));
679 $participantParams = array(
680 'financial_type_id' => 4,
681 'event_id' => $this->_eventId,
682 'role_id' => 1,
683 'status_id' => 14,
684 'fee_currency' => 'USD',
685 'contact_id' => $this->_contactId,
686 );
687 $participant = CRM_Event_BAO_Participant::add($participantParams);
688 $contributionParams = array(
689 'total_amount' => 150,
690 'currency' => 'USD',
691 'contact_id' => $this->_contactId,
692 'financial_type_id' => 4,
693 'contribution_status_id' => 1,
694 'partial_payment_total' => 300.00,
695 'partial_amount_pay' => 150,
696 'contribution_mode' => 'participant',
697 'participant_id' => $participant->id,
698 );
699
700 foreach ($priceFields['values'] as $key => $priceField) {
701 $lineItems[1][$key] = array(
702 'price_field_id' => $priceField['price_field_id'],
703 'price_field_value_id' => $priceField['id'],
704 'label' => $priceField['label'],
705 'field_title' => $priceField['label'],
706 'qty' => 1,
707 'unit_price' => $priceField['amount'],
708 'line_total' => $priceField['amount'],
709 'financial_type_id' => $priceField['financial_type_id'],
710 );
711 }
712 $contributionParams['line_item'] = $lineItems;
713 $contributions = CRM_Contribute_BAO_Contribution::create($contributionParams);
714
715 $paymentParticipant = array(
716 'participant_id' => $participant->id,
717 'contribution_id' => $contributions->id,
718 );
719 $ids = array();
720 CRM_Event_BAO_ParticipantPayment::create($paymentParticipant, $ids);
721
722 return array($lineItems, $contributions);
723 }
724
5c8b902b 725 /**
a4a31ffe 726 * checkLineItems() check if total amount matches the sum of line total
5c8b902b
PN
727 */
728 public function testcheckLineItems() {
729 $params = array(
730 'contact_id' => 202,
731 'receive_date' => '2010-01-20',
732 'total_amount' => 100,
733 'financial_type_id' => 3,
734 'line_items' => array(
735 array(
736 'line_item' => array(
737 array(
738 'entity_table' => 'civicrm_contribution',
739 'price_field_id' => 8,
740 'price_field_value_id' => 16,
741 'label' => 'test 1',
742 'qty' => 1,
743 'unit_price' => 100,
744 'line_total' => 100,
745 ),
746 array(
747 'entity_table' => 'civicrm_contribution',
748 'price_field_id' => 8,
749 'price_field_value_id' => 17,
750 'label' => 'Test 2',
751 'qty' => 1,
752 'unit_price' => 200,
753 'line_total' => 200,
754 'financial_type_id' => 1,
755 ),
756 ),
a4a31ffe 757 'params' => array(),
5c8b902b 758 ),
a4a31ffe 759 ),
5c8b902b 760 );
af004c04 761 try {
2449fe69 762 CRM_Contribute_BAO_Contribution::checkLineItems($params);
af004c04
PN
763 $this->fail("Missed expected exception");
764 }
765 catch (Exception $e) {
766 $this->assertEquals("Line item total doesn't match with total amount.", $e->getMessage());
767 }
5c8b902b
PN
768 $this->assertEquals(3, $params['line_items'][0]['line_item'][0]['financial_type_id']);
769 $params['total_amount'] = 300;
af004c04 770 CRM_Contribute_BAO_Contribution::checkLineItems($params);
5c8b902b
PN
771 }
772
88f7a518
E
773 /**
774 * Test activity amount updation.
775 */
776 public function testActivityCreate() {
777 $contactId = $this->individualCreate();
778 $defaults = array();
779
780 $params = array(
781 'contact_id' => $contactId,
782 'currency' => 'USD',
783 'financial_type_id' => 1,
784 'contribution_status_id' => 1,
785 'payment_instrument_id' => 1,
786 'source' => 'STUDENT',
787 'receive_date' => '20080522000000',
788 'receipt_date' => '20080522000000',
789 'non_deductible_amount' => 0.00,
790 'total_amount' => 100.00,
791 'trxn_id' => '22ereerwww444444',
792 'invoice_id' => '86ed39c9e9ee6ef6031621ce0eafe7eb81',
793 'thankyou_date' => '20160519',
794 );
795
796 $contribution = CRM_Contribute_BAO_Contribution::create($params);
797
798 $this->assertEquals($params['total_amount'], $contribution->total_amount, 'Check for total amount in contribution.');
799 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
800
801 // Check amount in activity.
802 $activityParams = array(
803 'source_record_id' => $contribution->id,
804 'activity_type_id' => CRM_Core_OptionGroup::getValue('activity_type',
805 'Contribution',
806 'name'
807 ),
808 );
809 $activity = CRM_Activity_BAO_Activity::retrieve($activityParams, $defaults);
810
811 $this->assertEquals($contribution->id, $activity->source_record_id, 'Check for activity associated with contribution.');
812 $this->assertEquals("$ 100.00 - STUDENT", $activity->subject, 'Check for total amount in activity.');
813
814 // Update contribution amount.
815 $ids = array('contribution' => $contribution->id);
816 $params['total_amount'] = 200;
817
818 $contribution = CRM_Contribute_BAO_Contribution::create($params, $ids);
819
820 $this->assertEquals($params['total_amount'], $contribution->total_amount, 'Check for total amount in contribution.');
821 $this->assertEquals($contactId, $contribution->contact_id, 'Check for contact id creation.');
822
823 // Retrieve activity again.
824 $activity = CRM_Activity_BAO_Activity::retrieve($activityParams, $defaults);
825
826 $this->assertEquals($contribution->id, $activity->source_record_id, 'Check for activity associated with contribution.');
827 $this->assertEquals("$ 200.00 - STUDENT", $activity->subject, 'Check for total amount in activity.');
828 }
829
ce7fc91a
PN
830 /**
831 * Test checkContributeSettings.
832 */
833 public function testCheckContributeSettings() {
834 $settings = CRM_Contribute_BAO_Contribution::checkContributeSettings('deferred_revenue_enabled');
835 $this->assertNull($settings);
836 $params = array(
837 'contribution_invoice_settings' => array(
838 'deferred_revenue_enabled' => '1',
839 ),
840 );
841 $this->callAPISuccess('Setting', 'create', $params);
842 $settings = CRM_Contribute_BAO_Contribution::checkContributeSettings('deferred_revenue_enabled');
843 $this->assertEquals($settings, 1, 'Check for settings has failed');
844 }
845
5c3d600f
PN
846 /**
847 * Test allowUpdateRevenueRecognitionDate.
848 */
849 public function testAllowUpdateRevenueRecognitionDate() {
850 $contactId = $this->individualCreate();
851 $params = array(
852 'contact_id' => $contactId,
853 'receive_date' => '2010-01-20',
854 'total_amount' => 100,
4303ea89 855 'financial_type_id' => 4,
5c3d600f
PN
856 );
857 $order = $this->callAPISuccess('order', 'create', $params);
858 $allowUpdate = CRM_Contribute_BAO_Contribution::allowUpdateRevenueRecognitionDate($order['id']);
859 $this->assertTrue($allowUpdate);
860
861 $event = $this->eventCreate();
862 $params = array(
863 'contact_id' => $contactId,
864 'receive_date' => '2010-01-20',
865 'total_amount' => 300,
8484a5f0 866 'financial_type_id' => $this->getFinancialTypeId('Event Fee'),
867 'contribution_status_id' => 'Completed',
5c3d600f
PN
868 );
869 $priceFields = $this->createPriceSet('event', $event['id']);
870 foreach ($priceFields['values'] as $key => $priceField) {
871 $lineItems[$key] = array(
872 'price_field_id' => $priceField['price_field_id'],
873 'price_field_value_id' => $priceField['id'],
874 'label' => $priceField['label'],
875 'field_title' => $priceField['label'],
876 'qty' => 1,
877 'unit_price' => $priceField['amount'],
878 'line_total' => $priceField['amount'],
879 'financial_type_id' => $priceField['financial_type_id'],
880 'entity_table' => 'civicrm_participant',
881 );
882 }
883 $params['line_items'][] = array(
884 'line_item' => $lineItems,
885 'params' => array(
886 'contact_id' => $contactId,
887 'event_id' => $event['id'],
888 'status_id' => 1,
889 'role_id' => 1,
890 'register_date' => '2007-07-21 00:00:00',
891 'source' => 'Online Event Registration: API Testing',
892 ),
893 );
894 $order = $this->callAPISuccess('order', 'create', $params);
895 $allowUpdate = CRM_Contribute_BAO_Contribution::allowUpdateRevenueRecognitionDate($order['id']);
896 $this->assertFalse($allowUpdate);
897
898 $params = array(
899 'contact_id' => $contactId,
900 'receive_date' => '2010-01-20',
901 'total_amount' => 200,
8484a5f0 902 'financial_type_id' => $this->getFinancialTypeId('Member Dues'),
903 'contribution_status_id' => 'Completed',
5c3d600f
PN
904 );
905 $membershipType = $this->membershipTypeCreate();
906 $priceFields = $this->createPriceSet();
907 $lineItems = array();
908 foreach ($priceFields['values'] as $key => $priceField) {
909 $lineItems[$key] = array(
910 'price_field_id' => $priceField['price_field_id'],
911 'price_field_value_id' => $priceField['id'],
912 'label' => $priceField['label'],
913 'field_title' => $priceField['label'],
914 'qty' => 1,
915 'unit_price' => $priceField['amount'],
916 'line_total' => $priceField['amount'],
917 'financial_type_id' => $priceField['financial_type_id'],
918 'entity_table' => 'civicrm_membership',
919 'membership_type_id' => $membershipType,
920 );
921 }
922 $params['line_items'][] = array(
923 'line_item' => array(array_pop($lineItems)),
924 'params' => array(
925 'contact_id' => $contactId,
926 'membership_type_id' => $membershipType,
927 'join_date' => '2006-01-21',
928 'start_date' => '2006-01-21',
929 'end_date' => '2006-12-21',
930 'source' => 'Payment',
931 'is_override' => 1,
932 'status_id' => 1,
933 ),
934 );
935 $order = $this->callAPISuccess('order', 'create', $params);
936 $allowUpdate = CRM_Contribute_BAO_Contribution::allowUpdateRevenueRecognitionDate($order['id']);
937 $this->assertFalse($allowUpdate);
938 }
939
d9553c2e
PN
940 /**
941 * Test calculateFinancialItemAmount().
942 */
943 public function testcalculateFinancialItemAmount() {
944 $testParams = array(
945 array(
946 'params' => array(),
947 'amountParams' => array(
948 'line_total' => 100,
949 'previous_line_total' => 300,
950 'diff' => 1,
951 ),
952 'context' => 'changedAmount',
953 'expectedItemAmount' => -200,
954 ),
955 array(
956 'params' => array(),
957 'amountParams' => array(
958 'line_total' => 100,
959 'previous_line_total' => 100,
960 'diff' => -1,
961 ),
962 'context' => 'changePaymentInstrument',
963 'expectedItemAmount' => -100,
964 ),
965 array(
966 'params' => array(
967 'is_quick_config' => TRUE,
968 'total_amount' => 110,
969 'tax_amount' => 10,
970 ),
971 'amountParams' => array(
972 'item_amount' => 100,
973 ),
974 'context' => 'changedAmount',
975 'expectedItemAmount' => 100,
976 ),
977 array(
978 'params' => array(
979 'is_quick_config' => TRUE,
980 'total_amount' => 110,
981 'tax_amount' => 10,
982 ),
983 'amountParams' => array(
984 'item_amount' => NULL,
985 ),
986 'context' => 'changedAmount',
987 'expectedItemAmount' => 110,
988 ),
989 array(
990 'params' => array(
991 'is_quick_config' => TRUE,
992 'total_amount' => 110,
993 'tax_amount' => 10,
994 ),
995 'amountParams' => array(
996 'item_amount' => NULL,
997 ),
998 'context' => NULL,
999 'expectedItemAmount' => 100,
1000 ),
1001 );
1002 foreach ($testParams as $params) {
1003 $itemAmount = CRM_Contribute_BAO_Contribution::calculateFinancialItemAmount($params['params'], $params['amountParams'], $params['context']);
1004 $this->assertEquals($itemAmount, $params['expectedItemAmount'], 'Invalid Financial Item amount.');
1005 }
1006 }
1007
d934a732
PN
1008 /**
1009 * Test recording of amount with comma separator.
1010 */
1011 public function testCommaSeparatorAmount() {
1012 $contactId = $this->individualCreate();
1013
1014 $params = array(
1015 'contact_id' => $contactId,
1016 'currency' => 'USD',
1017 'financial_type_id' => 1,
1018 'contribution_status_id' => 8,
1019 'payment_instrument_id' => 1,
1020 'receive_date' => '20080522000000',
1021 'receipt_date' => '20080522000000',
1022 'total_amount' => '20000.00',
1023 'partial_payment_total' => '20,000.00',
1024 'partial_amount_pay' => '8,000.00',
1025 );
1026
1027 $contribution = CRM_Contribute_BAO_Contribution::create($params);
1028 $lastFinancialTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($contribution->id, 'DESC');
1029 $financialTrxn = $this->callAPISuccessGetSingle(
1030 'FinancialTrxn',
1031 array(
1032 'id' => $lastFinancialTrxnId['financialTrxnId'],
1033 'return' => array('total_amount'),
1034 )
1035 );
1036 $this->assertEquals($financialTrxn['total_amount'], 8000, 'Invalid Tax amount.');
1037 }
1038
adbc354b
PN
1039 /**
1040 * Test for function getSalesTaxFinancialAccounts().
1041 */
1042 public function testgetSalesTaxFinancialAccounts() {
1043 $this->enableTaxAndInvoicing();
1044 $financialType = $this->createFinancialType();
1045 $financialAccount = $this->relationForFinancialTypeWithFinancialAccount($financialType['id']);
1046 $expectedResult = array($financialAccount->financial_account_id => $financialAccount->financial_account_id);
1047 $financialType = $this->createFinancialType();
1048 $financialAccount = $this->relationForFinancialTypeWithFinancialAccount($financialType['id']);
1049 $expectedResult[$financialAccount->financial_account_id] = $financialAccount->financial_account_id;
1050 $salesTaxFinancialAccount = CRM_Contribute_BAO_Contribution::getSalesTaxFinancialAccounts();
1051 $this->assertTrue(($salesTaxFinancialAccount == $expectedResult), 'Function returned wrong values.');
1052 }
1053
0409b821
PN
1054 /**
1055 * Test for function createProportionalEntry().
1056 */
1057 public function testcreateProportionalEntry() {
2a4a2f00 1058 list($contribution, $financialAccount) = $this->createContributionWithTax();
0409b821
PN
1059 $params = array(
1060 'total_amount' => 55,
1061 'to_financial_account_id' => $financialAccount->financial_account_id,
1062 'payment_instrument_id' => 1,
1063 'trxn_date' => date('Ymd'),
1064 'status_id' => 1,
1065 );
1066 $financialTrxn = $this->callAPISuccess('FinancialTrxn', 'create', $params);
1067 $params = array(
1068 'amount' => 50,
1069 'entity_table' => 'civicrm_contribution',
1070 'entity_id' => $contribution['id'],
1071 'financial_trxn_id' => $financialTrxn['id'],
1072 );
1073 $this->callAPISuccess('EntityFinancialTrxn', 'create', $params);
1074 $entityParams = array(
1075 'contribution_total_amount' => $contribution['total_amount'],
1076 'trxn_total_amount' => 55,
1077 'line_item_amount' => 100,
1078 );
1079 $previousLineItem = CRM_Financial_BAO_FinancialItem::getPreviousFinancialItem($contribution['id']);
1080 $eftParams = array(
1081 'entity_table' => 'civicrm_financial_item',
1082 'entity_id' => $previousLineItem->id,
1083 'financial_trxn_id' => $financialTrxn['id'],
1084 );
1085 CRM_Contribute_BAO_Contribution::createProportionalEntry($entityParams, $eftParams);
1086 $trxnTestArray = array_merge($eftParams, array(
1087 'amount' => 50,
1088 ));
1089 $entityFinancialTrxn = $this->callAPISuccessGetSingle('EntityFinancialTrxn', $eftParams, $trxnTestArray);
1090 }
1091
646bc565
PN
1092 /**
1093 * Test for function getLastFinancialItemIds().
1094 */
1095 public function testgetLastFinancialItemIds() {
2a4a2f00 1096 list($contribution, $financialAccount) = $this->createContributionWithTax();
646bc565
PN
1097 list($ftIds, $taxItems) = CRM_Contribute_BAO_Contribution::getLastFinancialItemIds($contribution['id']);
1098 $this->assertEquals(count($ftIds), 1, 'Invalid count.');
1099 $this->assertEquals(count($taxItems), 1, 'Invalid count.');
1100 foreach ($taxItems as $value) {
1101 $this->assertEquals($value['amount'], 10, 'Invalid tax amount.');
1102 }
1103 }
1104
2a4a2f00
PN
1105 /**
1106 * Test for function createProportionalFinancialEntries().
1107 */
1108 public function testcreateProportionalFinancialEntries() {
1109 list($contribution, $financialAccount) = $this->createContributionWithTax();
1110 $params = array(
1111 'total_amount' => 55,
1112 'to_financial_account_id' => $financialAccount->financial_account_id,
1113 'payment_instrument_id' => 1,
1114 'trxn_date' => date('Ymd'),
1115 'status_id' => 1,
1116 );
1117 $financialTrxn = $this->callAPISuccess('FinancialTrxn', 'create', $params);
1118 $params = array(
1119 'amount' => 50,
1120 'entity_table' => 'civicrm_contribution',
1121 'entity_id' => $contribution['id'],
1122 'financial_trxn_id' => $financialTrxn['id'],
1123 );
1124 $this->callAPISuccess('EntityFinancialTrxn', 'create', $params);
1125 $entityParams = array(
1126 'contribution_total_amount' => $contribution['total_amount'],
1127 'trxn_total_amount' => 55,
1128 'trxn_id' => $financialTrxn['id'],
1129 );
1130 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($contribution['id']);
1131 list($ftIds, $taxItems) = CRM_Contribute_BAO_Contribution::getLastFinancialItemIds($contribution['id']);
1132 CRM_Contribute_BAO_Contribution::createProportionalFinancialEntries($entityParams, $lineItems, $ftIds, $taxItems);
1133 $eftParams = array(
1134 'entity_table' => 'civicrm_financial_item',
1135 'financial_trxn_id' => $financialTrxn['id'],
1136 );
1137 $entityFinancialTrxn = $this->callAPISuccess('EntityFinancialTrxn', 'Get', $eftParams);
1138 $this->assertEquals($entityFinancialTrxn['count'], 2, 'Invalid count.');
1139 $testAmount = array(5, 50);
1140 foreach ($entityFinancialTrxn['values'] as $value) {
1141 $this->assertEquals($value['amount'], array_pop($testAmount), 'Invalid amount stored in civicrm_entity_financial_trxn.');
77641de4
PN
1142 }
1143 }
1144
1145 /**
1146 * Test to check if amount is proportionally asigned for PI change.
1147 */
1148 public function testProportionallyAssignedForPIChange() {
1149 list($contribution, $financialAccount) = $this->createContributionWithTax();
1150 $params = array(
1151 'id' => $contribution['id'],
1152 'payment_instrument_id' => 3,
1153 );
1154 $this->callAPISuccess('Contribution', 'create', $params);
1155 $lastFinancialTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($contribution['id'], 'DESC');
1156 $eftParams = array(
1157 'entity_table' => 'civicrm_financial_item',
1158 'financial_trxn_id' => $lastFinancialTrxnId['financialTrxnId'],
1159 );
1160 $entityFinancialTrxn = $this->callAPISuccess('EntityFinancialTrxn', 'Get', $eftParams);
1161 $this->assertEquals($entityFinancialTrxn['count'], 2, 'Invalid count.');
1162 $testAmount = array(10, 100);
1163 foreach ($entityFinancialTrxn['values'] as $value) {
1164 $this->assertEquals($value['amount'], array_pop($testAmount), 'Invalid amount stored in civicrm_entity_financial_trxn.');
2a4a2f00
PN
1165 }
1166 }
1167
646bc565
PN
1168 /**
1169 * Function to create contribution with tax.
1170 */
1171 public function createContributionWithTax() {
1172 $contactId = $this->individualCreate();
1173 $this->enableTaxAndInvoicing();
1174 $financialType = $this->createFinancialType();
1175 $financialAccount = $this->relationForFinancialTypeWithFinancialAccount($financialType['id']);
1176 $form = new CRM_Contribute_Form_Contribution();
1177
1178 $form->testSubmit(array(
1179 'total_amount' => 100,
1180 'financial_type_id' => $financialType['id'],
1181 'receive_date' => '04/21/2015',
1182 'receive_date_time' => '11:27PM',
1183 'contact_id' => $contactId,
1184 'contribution_status_id' => 1,
1185 'price_set_id' => 0,
1186 ),
1187 CRM_Core_Action::ADD
1188 );
1189 $contribution = $this->callAPISuccessGetSingle('Contribution',
1190 array(
1191 'contact_id' => $contactId,
1192 'return' => array('tax_amount', 'total_amount'),
1193 )
1194 );
2a4a2f00 1195 return array($contribution, $financialAccount);
646bc565
PN
1196 }
1197
6a488035 1198}