Avoid fatal exception when a lineitem does not have a price_set set
[civicrm-core.git] / tests / phpunit / api / v3 / 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
6a488035
TO
28/**
29 * Test APIv3 civicrm_contribute_* functions
30 *
6c6e6187
TO
31 * @package CiviCRM_APIv3
32 * @subpackage API_Contribution
acb109b7 33 * @group headless
6a488035 34 */
6a488035
TO
35class api_v3_ContributionTest extends CiviUnitTestCase {
36
37 /**
fe482240 38 * Assume empty database with just civicrm_data.
6a488035
TO
39 */
40 protected $_individualId;
41 protected $_contribution;
4ab7d517 42 protected $_financialTypeId = 1;
6a488035
TO
43 protected $_apiversion;
44 protected $_entity = 'Contribution';
45 public $debug = 0;
46 protected $_params;
858d0bf8
EM
47 protected $_ids = array();
48 protected $_pageParams = array();
1eade77d 49 /**
50 * Payment processor ID (dummy processor).
51 *
52 * @var int
53 */
54 protected $paymentProcessorID;
b7c9bc4c 55
1e52837d
EM
56 /**
57 * Parameters to create payment processor.
58 *
59 * @var array
60 */
61 protected $_processorParams = array();
62
63 /**
64 * ID of created event.
65 *
66 * @var int
67 */
68 protected $_eventID;
69
ec7e3954
E
70 /**
71 * @var CiviMailUtils
72 */
73 protected $mut;
74
22f80e87
EM
75 /**
76 * Setup function.
77 */
00be9182 78 public function setUp() {
6a488035
TO
79 parent::setUp();
80
81 $this->_apiversion = 3;
82 $this->_individualId = $this->individualCreate();
6a488035
TO
83 $this->_params = array(
84 'contact_id' => $this->_individualId,
85 'receive_date' => '20120511',
86 'total_amount' => 100.00,
5896d037 87 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
88 'non_deductible_amount' => 10.00,
89 'fee_amount' => 5.00,
90 'net_amount' => 95.00,
91 'source' => 'SSF',
92 'contribution_status_id' => 1,
6a488035
TO
93 );
94 $this->_processorParams = array(
95 'domain_id' => 1,
96 'name' => 'Dummy',
97502bac 97 'payment_processor_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Financial_BAO_PaymentProcessor', 'payment_processor_type_id', 'Dummy'),
6a488035
TO
98 'financial_account_id' => 12,
99 'is_active' => 1,
100 'user_name' => '',
101 'url_site' => 'http://dummy.com',
102 'url_recur' => 'http://dummy.com',
103 'billing_mode' => 1,
104 );
1eade77d 105 $this->paymentProcessorID = $this->processorCreate();
6a488035 106 $this->_pageParams = array(
6a488035
TO
107 'title' => 'Test Contribution Page',
108 'financial_type_id' => 1,
109 'currency' => 'USD',
110 'financial_account_id' => 1,
1eade77d 111 'payment_processor' => $this->paymentProcessorID,
6a488035
TO
112 'is_active' => 1,
113 'is_allow_other_amount' => 1,
114 'min_amount' => 10,
115 'max_amount' => 1000,
5896d037 116 );
6a488035
TO
117 }
118
22f80e87
EM
119 /**
120 * Clean up after each test.
121 */
00be9182 122 public function tearDown() {
39d632fd 123 $this->quickCleanUpFinancialEntities();
225d474b 124 $this->quickCleanup(array('civicrm_uf_match'));
6a488035
TO
125 }
126
22f80e87
EM
127 /**
128 * Test Get.
129 */
00be9182 130 public function testGetContribution() {
6a488035
TO
131 $p = array(
132 'contact_id' => $this->_individualId,
133 'receive_date' => '2010-01-20',
134 'total_amount' => 100.00,
4ab7d517 135 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
136 'non_deductible_amount' => 10.00,
137 'fee_amount' => 5.00,
138 'net_amount' => 95.00,
139 'trxn_id' => 23456,
140 'invoice_id' => 78910,
141 'source' => 'SSF',
142 'contribution_status_id' => 1,
6a488035 143 );
2f45e1c2 144 $this->_contribution = $this->callAPISuccess('contribution', 'create', $p);
6a488035
TO
145
146 $params = array(
147 'contribution_id' => $this->_contribution['id'],
6a488035 148 );
e0e3c51b 149
3af96592 150 $contributions = $this->callAPIAndDocument('contribution', 'get', $params, __FUNCTION__, __FILE__);
4ab7d517 151 $financialParams['id'] = $this->_financialTypeId;
6c6e6187 152 $default = NULL;
858d0bf8 153 CRM_Financial_BAO_FinancialType::retrieve($financialParams, $default);
2f45e1c2 154
3af96592 155 $this->assertEquals(1, $contributions['count']);
156 $contribution = $contributions['values'][$contributions['id']];
157 $this->assertEquals($contribution['contact_id'], $this->_individualId);
22f80e87
EM
158 // Note there was an assertion converting financial_type_id to 'Donation' which wasn't working.
159 // Passing back a string rather than an id seems like an error/cruft.
160 // If it is to be introduced we should discuss.
3af96592 161 $this->assertEquals($contribution['financial_type_id'], 1);
162 $this->assertEquals($contribution['total_amount'], 100.00);
163 $this->assertEquals($contribution['non_deductible_amount'], 10.00);
164 $this->assertEquals($contribution['fee_amount'], 5.00);
165 $this->assertEquals($contribution['net_amount'], 95.00);
166 $this->assertEquals($contribution['trxn_id'], 23456);
167 $this->assertEquals($contribution['invoice_id'], 78910);
168 $this->assertEquals($contribution['contribution_source'], 'SSF');
169 $this->assertEquals($contribution['contribution_status'], 'Completed');
22f80e87 170 // Create a second contribution - we are testing that 'id' gets the right contribution id (not the contact id).
6a488035
TO
171 $p['trxn_id'] = '3847';
172 $p['invoice_id'] = '3847';
173
2f45e1c2 174 $contribution2 = $this->callAPISuccess('contribution', 'create', $p);
175
22f80e87 176 // Now we have 2 - test getcount.
4ab7d517 177 $contribution = $this->callAPISuccess('contribution', 'getcount', array());
6a488035 178 $this->assertEquals(2, $contribution);
22f80e87 179 // Test id only format.
4ab7d517 180 $contribution = $this->callAPISuccess('contribution', 'get', array(
181 'id' => $this->_contribution['id'],
182 'format.only_id' => 1,
183 ));
22f80e87
EM
184 $this->assertEquals($this->_contribution['id'], $contribution, print_r($contribution, TRUE));
185 // Test id only format.
2f45e1c2 186 $contribution = $this->callAPISuccess('contribution', 'get', array(
4ab7d517 187 'id' => $contribution2['id'],
188 'format.only_id' => 1,
189 ));
190 $this->assertEquals($contribution2['id'], $contribution);
22f80e87 191 // Test id as field.
4ab7d517 192 $contribution = $this->callAPISuccess('contribution', 'get', array(
193 'id' => $this->_contribution['id'],
194 ));
2bfae985 195 $this->assertEquals(1, $contribution['count']);
4ab7d517 196
22f80e87 197 // Test get by contact id works.
4ab7d517 198 $contribution = $this->callAPISuccess('contribution', 'get', array('contact_id' => $this->_individualId));
6a488035 199
2bfae985 200 $this->assertEquals(2, $contribution['count']);
2f45e1c2 201 $this->callAPISuccess('Contribution', 'Delete', array(
6a488035 202 'id' => $this->_contribution['id'],
4ab7d517 203 ));
2f45e1c2 204 $this->callAPISuccess('Contribution', 'Delete', array(
6a488035 205 'id' => $contribution2['id'],
4ab7d517 206 ));
6a488035
TO
207 }
208
71d5a412 209 /**
210 * Test that test contributions can be retrieved.
211 */
212 public function testGetTestContribution() {
213 $this->callAPISuccess('Contribution', 'create', array_merge($this->_params, array('is_test' => 1)));
214 $this->callAPISuccessGetSingle('Contribution', array('is_test' => 1));
215 }
216
59f9e5a6 217 /**
218 * Test the 'return' param works for all fields.
219 */
220 public function testGetContributionReturnFunctionality() {
221 $params = $this->_params;
222 $params['check_number'] = 'bouncer';
223 $params['payment_instrument_id'] = 'Check';
224 $params['cancel_date'] = 'yesterday';
225 $params['receipt_date'] = 'yesterday';
226 $params['thankyou_date'] = 'yesterday';
227 $params['revenue_recognition_date'] = 'yesterday';
228 $params['amount_level'] = 'Unreasonable';
229 $params['cancel_reason'] = 'You lose sucker';
230 $params['creditnote_id'] = 'sudo rm -rf';
231 $params['tax_amount'] = '1';
232 $address = $this->callAPISuccess('Address', 'create', array(
233 'street_address' => 'Knockturn Alley',
234 'contact_id' => $this->_individualId,
235 'location_type_id' => 'Home',
236 ));
237 $params['address_id'] = $address['id'];
238 $contributionPage = $this->contributionPageCreate();
239 $params['contribution_page_id'] = $contributionPage['id'];
240 $contributionRecur = $this->callAPISuccess('ContributionRecur', 'create', array(
241 'contact_id' => $this->_individualId,
242 'frequency_interval' => 1,
243 'amount' => 5,
244 ));
245 $params['contribution_recur_id'] = $contributionRecur['id'];
246
247 $params['campaign_id'] = $this->campaignCreate();
248
249 $contributionID = $this->contributionCreate($params);
250 $contribution = $this->callAPISuccessGetSingle('Contribution', array('id' => $contributionID));
251 $this->assertEquals('bouncer', $contribution['check_number']);
252 $this->assertEquals('bouncer', $contribution['contribution_check_number']);
253
254 $fields = CRM_Contribute_BAO_Contribution::fields();
3123273f 255 // Re-add these 2 to the fields to check. They were locked in but the metadata changed so we
256 // need to specify them.
257 $fields['address_id'] = $fields['contribution_address_id'];
258 $fields['check_number'] = $fields['contribution_check_number'];
259
59f9e5a6 260 $fieldsLockedIn = array(
261 'contribution_id', 'contribution_contact_id', 'financial_type_id', 'contribution_page_id',
262 'payment_instrument_id', 'receive_date', 'non_deductible_amount', 'total_amount',
263 'fee_amount', 'net_amount', 'trxn_id', 'invoice_id', 'currency', 'cancel_date', 'cancel_reason',
264 'receipt_date', 'thankyou_date', 'contribution_source', 'amount_level', 'contribution_recur_id',
265 'is_test', 'is_pay_later', 'contribution_status_id', 'address_id', 'check_number', 'contribution_campaign_id',
266 'creditnote_id', 'tax_amount', 'revenue_recognition_date', 'decoy',
267 );
268 $missingFields = array_diff($fieldsLockedIn, array_keys($fields));
269 // If any of the locked in fields disappear from the $fields array we need to make sure it is still
270 // covered as the test contract now guarantees them in the return array.
271 $this->assertEquals($missingFields, array(29 => 'decoy'), 'A field which was covered by the test contract has changed.');
272 foreach ($fields as $fieldName => $fieldSpec) {
273 $contribution = $this->callAPISuccessGetSingle('Contribution', array('id' => $contributionID, 'return' => $fieldName));
274 $returnField = $fieldName;
275 if ($returnField == 'contribution_contact_id') {
276 $returnField = 'contact_id';
277 }
278 $this->assertTrue((!empty($contribution[$returnField]) || $contribution[$returnField] === "0"), $returnField);
279 }
280 }
281
6c6e6187 282 /**
22f80e87 283 * We need to ensure previous tested behaviour still works as part of the api contract.
6c6e6187 284 */
00be9182 285 public function testGetContributionLegacyBehaviour() {
6a488035
TO
286 $p = array(
287 'contact_id' => $this->_individualId,
288 'receive_date' => '2010-01-20',
289 'total_amount' => 100.00,
4ab7d517 290 'contribution_type_id' => $this->_financialTypeId,
6a488035
TO
291 'non_deductible_amount' => 10.00,
292 'fee_amount' => 5.00,
293 'net_amount' => 95.00,
294 'trxn_id' => 23456,
295 'invoice_id' => 78910,
296 'source' => 'SSF',
297 'contribution_status_id' => 1,
6a488035 298 );
71d5a412 299 $this->_contribution = $this->callAPISuccess('Contribution', 'create', $p);
6a488035
TO
300
301 $params = array(
302 'contribution_id' => $this->_contribution['id'],
6a488035 303 );
5be22f39 304 $contribution = $this->callAPISuccess('contribution', 'get', $params);
4ab7d517 305 $financialParams['id'] = $this->_financialTypeId;
6c6e6187 306 $default = NULL;
858d0bf8 307 CRM_Financial_BAO_FinancialType::retrieve($financialParams, $default);
2f45e1c2 308
6c6e6187 309 $this->assertEquals(1, $contribution['count']);
2bfae985 310 $this->assertEquals($contribution['values'][$contribution['id']]['contact_id'], $this->_individualId);
4ab7d517 311 $this->assertEquals($contribution['values'][$contribution['id']]['financial_type_id'], $this->_financialTypeId);
312 $this->assertEquals($contribution['values'][$contribution['id']]['contribution_type_id'], $this->_financialTypeId);
2bfae985
EM
313 $this->assertEquals($contribution['values'][$contribution['id']]['total_amount'], 100.00);
314 $this->assertEquals($contribution['values'][$contribution['id']]['non_deductible_amount'], 10.00);
315 $this->assertEquals($contribution['values'][$contribution['id']]['fee_amount'], 5.00);
316 $this->assertEquals($contribution['values'][$contribution['id']]['net_amount'], 95.00);
317 $this->assertEquals($contribution['values'][$contribution['id']]['trxn_id'], 23456);
318 $this->assertEquals($contribution['values'][$contribution['id']]['invoice_id'], 78910);
319 $this->assertEquals($contribution['values'][$contribution['id']]['contribution_source'], 'SSF');
320 $this->assertEquals($contribution['values'][$contribution['id']]['contribution_status'], 'Completed');
22f80e87
EM
321
322 // Create a second contribution - we are testing that 'id' gets the right contribution id (not the contact id).
6a488035
TO
323 $p['trxn_id'] = '3847';
324 $p['invoice_id'] = '3847';
325
2f45e1c2 326 $contribution2 = $this->callAPISuccess('contribution', 'create', $p);
6a488035 327
6a488035 328 // now we have 2 - test getcount
4ab7d517 329 $contribution = $this->callAPISuccess('contribution', 'getcount', array());
6a488035
TO
330 $this->assertEquals(2, $contribution);
331 //test id only format
4ab7d517 332 $contribution = $this->callAPISuccess('contribution', 'get', array(
333 'id' => $this->_contribution['id'],
334 'format.only_id' => 1,
335 ));
22f80e87 336 $this->assertEquals($this->_contribution['id'], $contribution, print_r($contribution, TRUE));
6a488035 337 //test id only format
4ab7d517 338 $contribution = $this->callAPISuccess('contribution', 'get', array(
339 'id' => $contribution2['id'],
340 'format.only_id' => 1,
341 ));
6a488035 342 $this->assertEquals($contribution2['id'], $contribution);
2f45e1c2 343 $contribution = $this->callAPISuccess('contribution', 'get', array(
6a488035
TO
344 'id' => $this->_contribution['id'],
345 ));
346 //test id as field
2bfae985 347 $this->assertEquals(1, $contribution['count']);
6a488035
TO
348 // $this->assertEquals($this->_contribution['id'], $contribution['id'] ) ;
349 //test get by contact id works
4ab7d517 350 $contribution = $this->callAPISuccess('contribution', 'get', array('contact_id' => $this->_individualId));
6a488035 351
2bfae985 352 $this->assertEquals(2, $contribution['count']);
2f45e1c2 353 $this->callAPISuccess('Contribution', 'Delete', array(
5896d037 354 'id' => $this->_contribution['id'],
6a488035 355 ));
2f45e1c2 356 $this->callAPISuccess('Contribution', 'Delete', array(
5896d037 357 'id' => $contribution2['id'],
6a488035
TO
358 ));
359 }
5896d037 360
a1a2a83d
TO
361 /**
362 * Create an contribution_id=FALSE and financial_type_id=Donation.
363 */
00be9182 364 public function testCreateEmptyContributionIDUseDonation() {
6a488035
TO
365 $params = array(
366 'contribution_id' => FALSE,
367 'contact_id' => 1,
368 'total_amount' => 1,
6c6e6187 369 'check_permissions' => FALSE,
6a488035
TO
370 'financial_type_id' => 'Donation',
371 );
858d0bf8 372 $this->callAPISuccess('contribution', 'create', $params);
6c6e6187 373 }
6a488035 374
6a488035 375 /**
1e52837d
EM
376 * Check with complete array + custom field.
377 *
6a488035
TO
378 * Note that the test is written on purpose without any
379 * variables specific to participant so it can be replicated into other entities
380 * and / or moved to the automated test suite
381 */
00be9182 382 public function testCreateWithCustom() {
6a488035
TO
383 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, __FILE__);
384
385 $params = $this->_params;
386 $params['custom_' . $ids['custom_field_id']] = "custom string";
387
6c6e6187 388 $result = $this->callAPIAndDocument($this->_entity, 'create', $params, __FUNCTION__, __FILE__);
6a488035 389 $this->assertEquals($result['id'], $result['values'][$result['id']]['id']);
2f45e1c2 390 $check = $this->callAPISuccess($this->_entity, 'get', array(
4ab7d517 391 'return.custom_' . $ids['custom_field_id'] => 1,
392 'id' => $result['id'],
393 ));
6a488035
TO
394 $this->customFieldDelete($ids['custom_field_id']);
395 $this->customGroupDelete($ids['custom_group_id']);
22f80e87 396 $this->assertEquals("custom string", $check['values'][$check['id']]['custom_' . $ids['custom_field_id']]);
6a488035
TO
397 }
398
399 /**
fd786d03
EM
400 * Check with complete array + custom field.
401 *
6a488035
TO
402 * Note that the test is written on purpose without any
403 * variables specific to participant so it can be replicated into other entities
404 * and / or moved to the automated test suite
405 */
00be9182 406 public function testCreateGetFieldsWithCustom() {
5896d037 407 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, __FILE__);
6a488035 408 $idsContact = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, 'ContactTest.php');
5896d037 409 $result = $this->callAPISuccess('Contribution', 'getfields', array());
6a488035
TO
410 $this->assertArrayHasKey('custom_' . $ids['custom_field_id'], $result['values']);
411 $this->assertArrayNotHasKey('custom_' . $idsContact['custom_field_id'], $result['values']);
412 $this->customFieldDelete($ids['custom_field_id']);
413 $this->customGroupDelete($ids['custom_group_id']);
414 $this->customFieldDelete($idsContact['custom_field_id']);
415 $this->customGroupDelete($idsContact['custom_group_id']);
416 }
417
00be9182 418 public function testCreateContributionNoLineItems() {
6a488035
TO
419
420 $params = array(
421 'contact_id' => $this->_individualId,
422 'receive_date' => '20120511',
423 'total_amount' => 100.00,
5896d037 424 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
425 'payment_instrument_id' => 1,
426 'non_deductible_amount' => 10.00,
427 'fee_amount' => 50.00,
428 'net_amount' => 90.00,
429 'trxn_id' => 12345,
430 'invoice_id' => 67890,
431 'source' => 'SSF',
432 'contribution_status_id' => 1,
6a488035
TO
433 'skipLineItem' => 1,
434 );
435
2f45e1c2 436 $contribution = $this->callAPISuccess('contribution', 'create', $params);
6c6e6187 437 $lineItems = $this->callAPISuccess('line_item', 'get', array(
6a488035
TO
438 'entity_id' => $contribution['id'],
439 'entity_table' => 'civicrm_contribution',
440 'sequential' => 1,
441 ));
442 $this->assertEquals(0, $lineItems['count']);
443 }
5896d037 444
a1a2a83d 445 /**
eceb18cc 446 * Test checks that passing in line items suppresses the create mechanism.
6a488035 447 */
00be9182 448 public function testCreateContributionChainedLineItems() {
6a488035
TO
449 $params = array(
450 'contact_id' => $this->_individualId,
451 'receive_date' => '20120511',
452 'total_amount' => 100.00,
4ab7d517 453 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
454 'payment_instrument_id' => 1,
455 'non_deductible_amount' => 10.00,
456 'fee_amount' => 50.00,
457 'net_amount' => 90.00,
458 'trxn_id' => 12345,
459 'invoice_id' => 67890,
460 'source' => 'SSF',
461 'contribution_status_id' => 1,
6a488035
TO
462 'skipLineItem' => 1,
463 'api.line_item.create' => array(
464 array(
465 'price_field_id' => 1,
466 'qty' => 2,
467 'line_total' => '20',
468 'unit_price' => '10',
469 ),
470 array(
471 'price_field_id' => 1,
472 'qty' => 1,
473 'line_total' => '80',
474 'unit_price' => '80',
475 ),
476 ),
477 );
478
5c49fee0 479 $description = "Create Contribution with Nested Line Items.";
6a488035 480 $subfile = "CreateWithNestedLineItems";
6c6e6187 481 $contribution = $this->callAPIAndDocument('contribution', 'create', $params, __FUNCTION__, __FILE__, $description, $subfile);
2f45e1c2 482
6c6e6187 483 $lineItems = $this->callAPISuccess('line_item', 'get', array(
6a488035 484 'entity_id' => $contribution['id'],
4ede4532 485 'contribution_id' => $contribution['id'],
6a488035
TO
486 'entity_table' => 'civicrm_contribution',
487 'sequential' => 1,
488 ));
489 $this->assertEquals(2, $lineItems['count']);
490 }
491
00be9182 492 public function testCreateContributionOffline() {
6a488035
TO
493 $params = array(
494 'contact_id' => $this->_individualId,
495 'receive_date' => '20120511',
496 'total_amount' => 100.00,
497 'financial_type_id' => 1,
498 'trxn_id' => 12345,
499 'invoice_id' => 67890,
500 'source' => 'SSF',
501 'contribution_status_id' => 1,
6a488035
TO
502 );
503
5be22f39 504 $contribution = $this->callAPISuccess('contribution', 'create', $params);
2bfae985
EM
505 $this->assertEquals($contribution['values'][$contribution['id']]['contact_id'], $this->_individualId);
506 $this->assertEquals($contribution['values'][$contribution['id']]['total_amount'], 100.00);
5896d037 507 $this->assertEquals($contribution['values'][$contribution['id']]['financial_type_id'], 1);
2bfae985
EM
508 $this->assertEquals($contribution['values'][$contribution['id']]['trxn_id'], 12345);
509 $this->assertEquals($contribution['values'][$contribution['id']]['invoice_id'], 67890);
510 $this->assertEquals($contribution['values'][$contribution['id']]['source'], 'SSF');
511 $this->assertEquals($contribution['values'][$contribution['id']]['contribution_status_id'], 1);
6c6e6187 512 $lineItems = $this->callAPISuccess('line_item', 'get', array(
6a488035 513 'entity_id' => $contribution['id'],
4ede4532 514 'contribution_id' => $contribution['id'],
6a488035
TO
515 'entity_table' => 'civicrm_contribution',
516 'sequential' => 1,
5896d037 517 ));
6a488035
TO
518 $this->assertEquals(1, $lineItems['count']);
519 $this->assertEquals($contribution['id'], $lineItems['values'][0]['entity_id']);
4ede4532 520 $this->assertEquals($contribution['id'], $lineItems['values'][0]['contribution_id']);
6a488035
TO
521 $this->_checkFinancialRecords($contribution, 'offline');
522 $this->contributionGetnCheck($params, $contribution['id']);
523 }
5896d037 524
f70a6752 525 /**
28de42d1 526 * Test create with valid payment instrument.
6a488035 527 */
00be9182 528 public function testCreateContributionWithPaymentInstrument() {
6a488035 529 $params = $this->_params + array('payment_instrument' => 'EFT');
53191813 530 $contribution = $this->callAPISuccess('contribution', 'create', $params);
6c6e6187 531 $contribution = $this->callAPISuccess('contribution', 'get', array(
53191813 532 'sequential' => 1,
21dfd5f5 533 'id' => $contribution['id'],
53191813 534 ));
6a488035 535 $this->assertArrayHasKey('payment_instrument', $contribution['values'][0]);
53191813
CW
536 $this->assertEquals('EFT', $contribution['values'][0]['payment_instrument']);
537
5896d037 538 $this->callAPISuccess('contribution', 'create', array(
92915c55
TO
539 'id' => $contribution['id'],
540 'payment_instrument' => 'Credit Card',
541 ));
6c6e6187 542 $contribution = $this->callAPISuccess('contribution', 'get', array(
53191813 543 'sequential' => 1,
21dfd5f5 544 'id' => $contribution['id'],
53191813
CW
545 ));
546 $this->assertArrayHasKey('payment_instrument', $contribution['values'][0]);
547 $this->assertEquals('Credit Card', $contribution['values'][0]['payment_instrument']);
6a488035
TO
548 }
549
00be9182 550 public function testGetContributionByPaymentInstrument() {
6a488035 551 $params = $this->_params + array('payment_instrument' => 'EFT');
53191813 552 $params2 = $this->_params + array('payment_instrument' => 'Cash');
6c6e6187
TO
553 $this->callAPISuccess('contribution', 'create', $params);
554 $this->callAPISuccess('contribution', 'create', $params2);
5896d037 555 $contribution = $this->callAPISuccess('contribution', 'get', array(
92915c55 556 'sequential' => 1,
7d543448 557 'contribution_payment_instrument' => 'Cash',
92915c55 558 ));
6a488035 559 $this->assertArrayHasKey('payment_instrument', $contribution['values'][0]);
ff977830
EM
560 $this->assertEquals('Cash', $contribution['values'][0]['payment_instrument']);
561 $this->assertEquals(1, $contribution['count']);
868e247d 562 $contribution = $this->callAPISuccess('contribution', 'get', array('sequential' => 1, 'payment_instrument' => 'Cash'));
6a488035 563 $this->assertArrayHasKey('payment_instrument', $contribution['values'][0]);
868e247d 564 $this->assertEquals('Cash', $contribution['values'][0]['payment_instrument']);
6a488035 565 $this->assertEquals(1, $contribution['count']);
5896d037 566 $contribution = $this->callAPISuccess('contribution', 'get', array(
92915c55
TO
567 'sequential' => 1,
568 'payment_instrument_id' => 5,
569 ));
6a488035 570 $this->assertArrayHasKey('payment_instrument', $contribution['values'][0]);
6c6e6187
TO
571 $this->assertEquals('EFT', $contribution['values'][0]['payment_instrument']);
572 $this->assertEquals(1, $contribution['count']);
5896d037 573 $contribution = $this->callAPISuccess('contribution', 'get', array(
92915c55
TO
574 'sequential' => 1,
575 'payment_instrument' => 'EFT',
576 ));
6a488035 577 $this->assertArrayHasKey('payment_instrument', $contribution['values'][0]);
53191813
CW
578 $this->assertEquals('EFT', $contribution['values'][0]['payment_instrument']);
579 $this->assertEquals(1, $contribution['count']);
5896d037 580 $contribution = $this->callAPISuccess('contribution', 'create', array(
92915c55
TO
581 'id' => $contribution['id'],
582 'payment_instrument' => 'Credit Card',
583 ));
5896d037 584 $contribution = $this->callAPISuccess('contribution', 'get', array('sequential' => 1, 'id' => $contribution['id']));
6a488035 585 $this->assertArrayHasKey('payment_instrument', $contribution['values'][0]);
6c6e6187
TO
586 $this->assertEquals('Credit Card', $contribution['values'][0]['payment_instrument']);
587 $this->assertEquals(1, $contribution['count']);
6a488035
TO
588 }
589
b5a37491
EM
590 /**
591 * CRM-16227 introduces invoice_id as a parameter.
592 */
593 public function testGetContributionByInvoice() {
594 $this->callAPISuccess('Contribution', 'create', array_merge($this->_params, array('invoice_id' => 'curly')));
595 $this->callAPISuccess('Contribution', 'create', array_merge($this->_params), array('invoice_id' => 'churlish'));
596 $this->callAPISuccessGetCount('Contribution', array(), 2);
597 $this->callAPISuccessGetSingle('Contribution', array('invoice_id' => 'curly'));
598 // The following don't work. They are the format we are trying to introduce but although the form uses this format
599 // CRM_Contact_BAO_Query::convertFormValues puts them into the other format & the where only supports that.
600 // ideally the where clause would support this format (as it does on contact_BAO_Query) and those lines would
601 // come out of convertFormValues
602 // $this->callAPISuccessGetSingle('Contribution', array('invoice_id' => array('LIKE' => '%ish%')));
603 // $this->callAPISuccessGetSingle('Contribution', array('invoice_id' => array('NOT IN' => array('curly'))));
604 // $this->callAPISuccessGetCount('Contribution', array('invoice_id' => array('LIKE' => '%ly%')), 2);
605 // $this->callAPISuccessGetCount('Contribution', array('invoice_id' => array('IN' => array('curly', 'churlish'))),
606 // 2);
607 }
608
2b3e31ac 609 /**
610 * Check the credit note retrieval is case insensitive.
611 */
612 public function testGetCreditNoteCaseInsensitive() {
613 $this->contributionCreate(array('contact_id' => $this->_individualId));
614 $this->contributionCreate(array('creditnote_id' => 'cN1234', 'contact_id' => $this->_individualId, 'invoice_id' => rand(), 'trxn_id' => rand()));
615 $contribution = $this->callAPISuccess('Contribution', 'getsingle', array('creditnote_id' => 'CN1234'));
616 $this->assertEquals($contribution['creditnote_id'], 'cN1234');
617 }
618
e58a3abb 619 /**
620 * Test retrieval by total_amount works.
621 *
622 * @throws Exception
623 */
624 public function testGetContributionByTotalAmount() {
625 $this->callAPISuccess('Contribution', 'create', array_merge($this->_params, array('total_amount' => '5')));
626 $this->callAPISuccess('Contribution', 'create', array_merge($this->_params, array('total_amount' => '10')));
627 $this->callAPISuccessGetCount('Contribution', array('total_amount' => 10), 1);
628 $this->callAPISuccessGetCount('Contribution', array('total_amount' => array('>' => 6)), 1);
629 $this->callAPISuccessGetCount('Contribution', array('total_amount' => array('>' => 0)), 2);
630 $this->callAPISuccessGetCount('Contribution', array('total_amount' => array('>' => -5)), 2);
631 $this->callAPISuccessGetCount('Contribution', array('total_amount' => array('<' => 0)), 0);
632 $this->callAPISuccessGetCount('Contribution', array(), 2);
633 }
634
c490a46a 635 /**
eceb18cc 636 * Create test with unique field name on source.
c490a46a 637 */
00be9182 638 public function testCreateContributionSource() {
6a488035
TO
639
640 $params = array(
641 'contact_id' => $this->_individualId,
642 'receive_date' => date('Ymd'),
643 'total_amount' => 100.00,
4ab7d517 644 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
645 'payment_instrument_id' => 1,
646 'non_deductible_amount' => 10.00,
647 'fee_amount' => 50.00,
648 'net_amount' => 90.00,
649 'trxn_id' => 12345,
650 'invoice_id' => 67890,
651 'contribution_source' => 'SSF',
652 'contribution_status_id' => 1,
6a488035
TO
653 );
654
4ab7d517 655 $contribution = $this->callAPISuccess('contribution', 'create', $params);
2bfae985
EM
656 $this->assertEquals($contribution['values'][$contribution['id']]['total_amount'], 100.00);
657 $this->assertEquals($contribution['values'][$contribution['id']]['source'], 'SSF');
6a488035 658 }
d5d148ab 659
d424ffde 660 /**
eceb18cc 661 * Create test with unique field name on source.
d424ffde 662 */
00be9182 663 public function testCreateDefaultNow() {
d5d148ab
EM
664
665 $params = $this->_params;
666 unset($params['receive_date']);
667
668 $contribution = $this->callAPISuccess('contribution', 'create', $params);
669 $contribution = $this->callAPISuccessGetSingle('contribution', array('id' => $contribution['id']));
670 $this->assertEquals(date('Y-m-d'), date('Y-m-d', strtotime($contribution['receive_date'])));
671 }
672
c490a46a 673 /**
55d2c6f1 674 * Create test with unique field name on source.
c490a46a 675 */
55d2c6f1 676 public function testCreateContributionSourceInvalidContact() {
6a488035
TO
677
678 $params = array(
679 'contact_id' => 999,
680 'receive_date' => date('Ymd'),
681 'total_amount' => 100.00,
4ab7d517 682 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
683 'payment_instrument_id' => 1,
684 'non_deductible_amount' => 10.00,
685 'fee_amount' => 50.00,
686 'net_amount' => 90.00,
687 'trxn_id' => 12345,
688 'invoice_id' => 67890,
689 'contribution_source' => 'SSF',
690 'contribution_status_id' => 1,
6a488035
TO
691 );
692
858d0bf8 693 $this->callAPIFailure('contribution', 'create', $params, 'contact_id is not valid : 999');
6a488035
TO
694 }
695
00be9182 696 public function testCreateContributionSourceInvalidContContact() {
6a488035
TO
697
698 $params = array(
699 'contribution_contact_id' => 999,
700 'receive_date' => date('Ymd'),
701 'total_amount' => 100.00,
4ab7d517 702 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
703 'payment_instrument_id' => 1,
704 'non_deductible_amount' => 10.00,
705 'fee_amount' => 50.00,
706 'net_amount' => 90.00,
707 'trxn_id' => 12345,
708 'invoice_id' => 67890,
709 'contribution_source' => 'SSF',
710 'contribution_status_id' => 1,
6a488035
TO
711 );
712
33139905 713 $this->callAPIFailure('contribution', 'create', $params);
6a488035
TO
714 }
715
858d0bf8 716 /**
442cf836 717 * Test note created correctly.
858d0bf8 718 */
00be9182 719 public function testCreateContributionWithNote() {
5c49fee0 720 $description = "Demonstrates creating contribution with Note Entity.";
5896d037
TO
721 $subfile = "ContributionCreateWithNote";
722 $params = array(
6a488035
TO
723 'contact_id' => $this->_individualId,
724 'receive_date' => '2012-01-01',
725 'total_amount' => 100.00,
4ab7d517 726 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
727 'payment_instrument_id' => 1,
728 'non_deductible_amount' => 10.00,
729 'fee_amount' => 50.00,
730 'net_amount' => 90.00,
731 'trxn_id' => 12345,
732 'invoice_id' => 67890,
733 'source' => 'SSF',
734 'contribution_status_id' => 1,
6a488035
TO
735 'note' => 'my contribution note',
736 );
737
4ab7d517 738 $contribution = $this->callAPIAndDocument('contribution', 'create', $params, __FUNCTION__, __FILE__, $description, $subfile);
5896d037 739 $result = $this->callAPISuccess('note', 'get', array(
92915c55
TO
740 'entity_table' => 'civicrm_contribution',
741 'entity_id' => $contribution['id'],
742 'sequential' => 1,
743 ));
6a488035 744 $this->assertEquals('my contribution note', $result['values'][0]['note']);
4ab7d517 745 $this->callAPISuccess('contribution', 'delete', array('id' => $contribution['id']));
6a488035
TO
746 }
747
00be9182 748 public function testCreateContributionWithNoteUniqueNameAliases() {
5896d037 749 $params = array(
6a488035
TO
750 'contact_id' => $this->_individualId,
751 'receive_date' => '2012-01-01',
752 'total_amount' => 100.00,
4ab7d517 753 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
754 'payment_instrument_id' => 1,
755 'non_deductible_amount' => 10.00,
756 'fee_amount' => 50.00,
757 'net_amount' => 90.00,
758 'trxn_id' => 12345,
759 'invoice_id' => 67890,
760 'source' => 'SSF',
761 'contribution_status_id' => 1,
6a488035
TO
762 'contribution_note' => 'my contribution note',
763 );
764
4ab7d517 765 $contribution = $this->callAPISuccess('contribution', 'create', $params);
5896d037 766 $result = $this->callAPISuccess('note', 'get', array(
92915c55
TO
767 'entity_table' => 'civicrm_contribution',
768 'entity_id' => $contribution['id'],
769 'sequential' => 1,
770 ));
6a488035 771 $this->assertEquals('my contribution note', $result['values'][0]['note']);
4ab7d517 772 $this->callAPISuccess('contribution', 'delete', array('id' => $contribution['id']));
6a488035 773 }
c490a46a
CW
774
775 /**
55d2c6f1 776 * This is the test for creating soft credits.
c490a46a 777 */
55d2c6f1 778 public function testCreateContributionWithSoftCredit() {
5c49fee0 779 $description = "Demonstrates creating contribution with SoftCredit.";
5896d037
TO
780 $subfile = "ContributionCreateWithSoftCredit";
781 $contact2 = $this->callAPISuccess('Contact', 'create', array(
92915c55
TO
782 'display_name' => 'superman',
783 'contact_type' => 'Individual',
784 ));
55d2c6f1 785 $softParams = array(
bcc03b98 786 'contact_id' => $contact2['id'],
787 'amount' => 50,
21dfd5f5 788 'soft_credit_type_id' => 3,
6a488035
TO
789 );
790
55d2c6f1 791 $params = $this->_params + array('soft_credit' => array(1 => $softParams));
4ab7d517 792 $contribution = $this->callAPIAndDocument('contribution', 'create', $params, __FUNCTION__, __FILE__, $description, $subfile);
6c6e6187 793 $result = $this->callAPISuccess('contribution', 'get', array('return' => 'soft_credit', 'sequential' => 1));
a1c68fd2 794
55d2c6f1
EM
795 $this->assertEquals($softParams['contact_id'], $result['values'][0]['soft_credit'][1]['contact_id']);
796 $this->assertEquals($softParams['amount'], $result['values'][0]['soft_credit'][1]['amount']);
797 $this->assertEquals($softParams['soft_credit_type_id'], $result['values'][0]['soft_credit'][1]['soft_credit_type']);
6a516bd6
DG
798
799 $this->callAPISuccess('contribution', 'delete', array('id' => $contribution['id']));
800 $this->callAPISuccess('contact', 'delete', array('id' => $contact2['id']));
801 }
802
00be9182 803 public function testCreateContributionWithSoftCreditDefaults() {
5c49fee0 804 $description = "Demonstrates creating contribution with Soft Credit defaults for amount and type.";
5896d037
TO
805 $subfile = "ContributionCreateWithSoftCreditDefaults";
806 $contact2 = $this->callAPISuccess('Contact', 'create', array(
92915c55
TO
807 'display_name' => 'superman',
808 'contact_type' => 'Individual',
809 ));
6a516bd6 810 $params = $this->_params + array(
442cf836
EM
811 'soft_credit_to' => $contact2['id'],
812 );
6a516bd6 813 $contribution = $this->callAPIAndDocument('contribution', 'create', $params, __FUNCTION__, __FILE__, $description, $subfile);
6c6e6187 814 $result = $this->callAPISuccess('contribution', 'get', array('return' => 'soft_credit', 'sequential' => 1));
6a516bd6
DG
815
816 $this->assertEquals($contact2['id'], $result['values'][0]['soft_credit'][1]['contact_id']);
817 // Default soft credit amount = contribution.total_amount
818 $this->assertEquals($this->_params['total_amount'], $result['values'][0]['soft_credit'][1]['amount']);
819 $this->assertEquals(CRM_Core_OptionGroup::getDefaultValue("soft_credit_type"), $result['values'][0]['soft_credit'][1]['soft_credit_type']);
820
821 $this->callAPISuccess('contribution', 'delete', array('id' => $contribution['id']));
822 $this->callAPISuccess('contact', 'delete', array('id' => $contact2['id']));
823 }
824
6c266de6 825 /**
826 * Test creating contribution with Soft Credit by passing in honor_contact_id.
827 */
00be9182 828 public function testCreateContributionWithHonoreeContact() {
5c49fee0 829 $description = "Demonstrates creating contribution with Soft Credit by passing in honor_contact_id.";
5896d037
TO
830 $subfile = "ContributionCreateWithHonoreeContact";
831 $contact2 = $this->callAPISuccess('Contact', 'create', array(
92915c55
TO
832 'display_name' => 'superman',
833 'contact_type' => 'Individual',
834 ));
6a516bd6 835 $params = $this->_params + array(
442cf836
EM
836 'honor_contact_id' => $contact2['id'],
837 );
6a516bd6 838 $contribution = $this->callAPIAndDocument('contribution', 'create', $params, __FUNCTION__, __FILE__, $description, $subfile);
6c6e6187 839 $result = $this->callAPISuccess('contribution', 'get', array('return' => 'soft_credit', 'sequential' => 1));
6a516bd6
DG
840
841 $this->assertEquals($contact2['id'], $result['values'][0]['soft_credit'][1]['contact_id']);
842 // Default soft credit amount = contribution.total_amount
843 // Legacy mode in create api (honor_contact_id param) uses the standard "In Honor of" soft credit type
844 $this->assertEquals($this->_params['total_amount'], $result['values'][0]['soft_credit'][1]['amount']);
6c266de6 845 $softCreditValueTypeID = $result['values'][0]['soft_credit'][1]['soft_credit_type'];
846 $this->assertEquals('in_honor_of', CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_ContributionSoft', 'soft_credit_type_id', $softCreditValueTypeID));
6a488035 847
4ab7d517 848 $this->callAPISuccess('contribution', 'delete', array('id' => $contribution['id']));
849 $this->callAPISuccess('contact', 'delete', array('id' => $contact2['id']));
6a488035
TO
850 }
851
852 /**
92c99a4a 853 * Test using example code.
6a488035 854 */
00be9182 855 public function testContributionCreateExample() {
6a488035 856 //make sure at least on page exists since there is a truncate in tear down
8be629ac 857 $this->callAPISuccess('contribution_page', 'create', $this->_pageParams);
3ec6e38d 858 require_once 'api/v3/examples/Contribution/Create.php';
5896d037 859 $result = contribution_create_example();
006d6361 860 $id = $result['id'];
6a488035 861 $expectedResult = contribution_create_expectedresult();
8e342a79 862 $this->checkArrayEquals($expectedResult, $result);
006d6361 863 $this->contributionDelete($id);
6a488035
TO
864 }
865
a1a2a83d 866 /**
f55c5fa8 867 * Function tests that additional financial records are created when fee amount is recorded.
6a488035 868 */
00be9182 869 public function testCreateContributionWithFee() {
6a488035
TO
870 $params = array(
871 'contact_id' => $this->_individualId,
872 'receive_date' => '20120511',
873 'total_amount' => 100.00,
874 'fee_amount' => 50,
875 'financial_type_id' => 1,
876 'trxn_id' => 12345,
877 'invoice_id' => 67890,
878 'source' => 'SSF',
879 'contribution_status_id' => 1,
6a488035
TO
880 );
881
5be22f39 882 $contribution = $this->callAPISuccess('contribution', 'create', $params);
2bfae985
EM
883 $this->assertEquals($contribution['values'][$contribution['id']]['contact_id'], $this->_individualId);
884 $this->assertEquals($contribution['values'][$contribution['id']]['total_amount'], 100.00);
e0e3c51b
EM
885 $this->assertEquals($contribution['values'][$contribution['id']]['fee_amount'], 50.00);
886 $this->assertEquals($contribution['values'][$contribution['id']]['net_amount'], 50.00);
5896d037 887 $this->assertEquals($contribution['values'][$contribution['id']]['financial_type_id'], 1);
2bfae985
EM
888 $this->assertEquals($contribution['values'][$contribution['id']]['trxn_id'], 12345);
889 $this->assertEquals($contribution['values'][$contribution['id']]['invoice_id'], 67890);
890 $this->assertEquals($contribution['values'][$contribution['id']]['source'], 'SSF');
891 $this->assertEquals($contribution['values'][$contribution['id']]['contribution_status_id'], 1);
e0e3c51b 892
6c6e6187 893 $lineItems = $this->callAPISuccess('line_item', 'get', array(
4ab7d517 894
6a488035
TO
895 'entity_id' => $contribution['id'],
896 'entity_table' => 'civicrm_contribution',
897 'sequential' => 1,
5896d037 898 ));
6a488035
TO
899 $this->assertEquals(1, $lineItems['count']);
900 $this->assertEquals($contribution['id'], $lineItems['values'][0]['entity_id']);
4ede4532 901 $this->assertEquals($contribution['id'], $lineItems['values'][0]['contribution_id']);
6c6e6187 902 $lineItems = $this->callAPISuccess('line_item', 'get', array(
4ab7d517 903
5896d037
TO
904 'entity_id' => $contribution['id'],
905 'contribution_id' => $contribution['id'],
906 'entity_table' => 'civicrm_contribution',
907 'sequential' => 1,
6a488035
TO
908 ));
909 $this->assertEquals(1, $lineItems['count']);
910 $this->_checkFinancialRecords($contribution, 'feeAmount');
911 }
912
913
f70a6752 914 /**
442cf836 915 * Function tests that additional financial records are created when online contribution is created.
6a488035 916 */
00be9182 917 public function testCreateContributionOnline() {
858d0bf8 918 CRM_Financial_BAO_PaymentProcessor::create($this->_processorParams);
5896d037 919 $contributionPage = $this->callAPISuccess('contribution_page', 'create', $this->_pageParams);
fc928539 920 $this->assertAPISuccess($contributionPage);
6a488035
TO
921 $params = array(
922 'contact_id' => $this->_individualId,
923 'receive_date' => '20120511',
924 'total_amount' => 100.00,
925 'financial_type_id' => 1,
926 'contribution_page_id' => $contributionPage['id'],
16f3bd02 927 'payment_processor' => $this->paymentProcessorID,
6a488035
TO
928 'trxn_id' => 12345,
929 'invoice_id' => 67890,
930 'source' => 'SSF',
931 'contribution_status_id' => 1,
4ab7d517 932
6a488035
TO
933 );
934
5be22f39 935 $contribution = $this->callAPISuccess('contribution', 'create', $params);
2bfae985
EM
936 $this->assertEquals($contribution['values'][$contribution['id']]['contact_id'], $this->_individualId);
937 $this->assertEquals($contribution['values'][$contribution['id']]['total_amount'], 100.00);
5896d037 938 $this->assertEquals($contribution['values'][$contribution['id']]['financial_type_id'], 1);
2bfae985
EM
939 $this->assertEquals($contribution['values'][$contribution['id']]['trxn_id'], 12345);
940 $this->assertEquals($contribution['values'][$contribution['id']]['invoice_id'], 67890);
941 $this->assertEquals($contribution['values'][$contribution['id']]['source'], 'SSF');
942 $this->assertEquals($contribution['values'][$contribution['id']]['contribution_status_id'], 1);
16f3bd02 943 $contribution['payment_instrument_id'] = $this->callAPISuccessGetValue('PaymentProcessor', array(
944 'id' => $this->paymentProcessorID,
945 'return' => 'payment_instrument_id',
946 ));
6a488035
TO
947 $this->_checkFinancialRecords($contribution, 'online');
948 }
949
f70a6752 950 /**
442cf836
EM
951 * Check handling of financial type.
952 *
100fef9d 953 * In the interests of removing financial type / contribution type checks from
f70a6752 954 * legacy format function lets test that the api is doing this for us
955 */
00be9182 956 public function testCreateInvalidFinancialType() {
f70a6752 957 $params = $this->_params;
958 $params['financial_type_id'] = 99999;
858d0bf8 959 $this->callAPIFailure($this->_entity, 'create', $params, "'99999' is not a valid option for field financial_type_id");
f70a6752 960 }
961
4302618d 962 /**
442cf836
EM
963 * Check handling of financial type.
964 *
100fef9d 965 * In the interests of removing financial type / contribution type checks from
4302618d 966 * legacy format function lets test that the api is doing this for us
967 */
00be9182 968 public function testValidNamedFinancialType() {
4302618d 969 $params = $this->_params;
970 $params['financial_type_id'] = 'Donation';
858d0bf8 971 $this->callAPISuccess($this->_entity, 'create', $params);
4302618d 972 }
973
f70a6752 974 /**
92c99a4a
EM
975 * Tests that additional financial records are created.
976 *
977 * Checks when online contribution with pay later option is created
6a488035 978 */
00be9182 979 public function testCreateContributionPayLaterOnline() {
858d0bf8 980 CRM_Financial_BAO_PaymentProcessor::create($this->_processorParams);
6a488035 981 $this->_pageParams['is_pay_later'] = 1;
5896d037 982 $contributionPage = $this->callAPISuccess('contribution_page', 'create', $this->_pageParams);
fc928539 983 $this->assertAPISuccess($contributionPage);
6a488035
TO
984 $params = array(
985 'contact_id' => $this->_individualId,
986 'receive_date' => '20120511',
987 'total_amount' => 100.00,
988 'financial_type_id' => 1,
989 'contribution_page_id' => $contributionPage['id'],
990 'trxn_id' => 12345,
991 'is_pay_later' => 1,
992 'invoice_id' => 67890,
993 'source' => 'SSF',
994 'contribution_status_id' => 2,
4ab7d517 995
6a488035
TO
996 );
997
4ab7d517 998 $contribution = $this->callAPIAndDocument('contribution', 'create', $params, __FUNCTION__, __FILE__);
2bfae985
EM
999 $this->assertEquals($contribution['values'][$contribution['id']]['contact_id'], $this->_individualId);
1000 $this->assertEquals($contribution['values'][$contribution['id']]['total_amount'], 100.00);
5896d037 1001 $this->assertEquals($contribution['values'][$contribution['id']]['financial_type_id'], 1);
2bfae985
EM
1002 $this->assertEquals($contribution['values'][$contribution['id']]['trxn_id'], 12345);
1003 $this->assertEquals($contribution['values'][$contribution['id']]['invoice_id'], 67890);
1004 $this->assertEquals($contribution['values'][$contribution['id']]['source'], 'SSF');
1005 $this->assertEquals($contribution['values'][$contribution['id']]['contribution_status_id'], 2);
6a488035
TO
1006 $this->_checkFinancialRecords($contribution, 'payLater');
1007 }
1008
a1a2a83d 1009 /**
1e52837d 1010 * Function tests that additional financial records are created for online contribution with pending option.
6a488035 1011 */
00be9182 1012 public function testCreateContributionPendingOnline() {
6a488035 1013 $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::create($this->_processorParams);
5896d037 1014 $contributionPage = $this->callAPISuccess('contribution_page', 'create', $this->_pageParams);
fc928539 1015 $this->assertAPISuccess($contributionPage);
6a488035
TO
1016 $params = array(
1017 'contact_id' => $this->_individualId,
1018 'receive_date' => '20120511',
1019 'total_amount' => 100.00,
1020 'financial_type_id' => 1,
1021 'contribution_page_id' => $contributionPage['id'],
1022 'trxn_id' => 12345,
1023 'invoice_id' => 67890,
1024 'source' => 'SSF',
1025 'contribution_status_id' => 2,
6a488035
TO
1026 );
1027
5be22f39 1028 $contribution = $this->callAPISuccess('contribution', 'create', $params);
2bfae985
EM
1029 $this->assertEquals($contribution['values'][$contribution['id']]['contact_id'], $this->_individualId);
1030 $this->assertEquals($contribution['values'][$contribution['id']]['total_amount'], 100.00);
5896d037 1031 $this->assertEquals($contribution['values'][$contribution['id']]['financial_type_id'], 1);
2bfae985
EM
1032 $this->assertEquals($contribution['values'][$contribution['id']]['trxn_id'], 12345);
1033 $this->assertEquals($contribution['values'][$contribution['id']]['invoice_id'], 67890);
1034 $this->assertEquals($contribution['values'][$contribution['id']]['source'], 'SSF');
1035 $this->assertEquals($contribution['values'][$contribution['id']]['contribution_status_id'], 2);
6a488035
TO
1036 $this->_checkFinancialRecords($contribution, 'pending');
1037 }
1038
e748bf60 1039 /**
92c99a4a 1040 * Test that BAO defaults work.
e748bf60 1041 */
00be9182 1042 public function testCreateBAODefaults() {
e748bf60
EM
1043 unset($this->_params['contribution_source_id'], $this->_params['payment_instrument_id']);
1044 $contribution = $this->callAPISuccess('contribution', 'create', $this->_params);
5896d037 1045 $contribution = $this->callAPISuccess('contribution', 'getsingle', array(
92915c55
TO
1046 'id' => $contribution['id'],
1047 'api.contribution.delete' => 1,
1048 ));
e748bf60 1049 $this->assertEquals(1, $contribution['contribution_status_id']);
12879069 1050 $this->assertEquals('Check', $contribution['payment_instrument']);
e748bf60
EM
1051 }
1052
a1a2a83d 1053 /**
1e52837d 1054 * Function tests that line items, financial records are updated when contribution amount is changed.
6a488035 1055 */
00be9182 1056 public function testCreateUpdateContributionChangeTotal() {
4ab7d517 1057 $contribution = $this->callAPISuccess('contribution', 'create', $this->_params);
6c6e6187 1058 $lineItems = $this->callAPISuccess('line_item', 'getvalue', array(
4ab7d517 1059
6a488035
TO
1060 'entity_id' => $contribution['id'],
1061 'entity_table' => 'civicrm_contribution',
1062 'sequential' => 1,
1063 'return' => 'line_total',
1064 ));
1065 $this->assertEquals('100.00', $lineItems);
1066 $trxnAmount = $this->_getFinancialTrxnAmount($contribution['id']);
1067 // Financial trxn SUM = 100 + 5 (fee)
1068 $this->assertEquals('105.00', $trxnAmount);
1069 $newParams = array(
4ab7d517 1070
6a488035 1071 'id' => $contribution['id'],
21dfd5f5 1072 'total_amount' => '125',
5896d037 1073 );
694769da 1074 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
4ab7d517 1075
6c6e6187 1076 $lineItems = $this->callAPISuccess('line_item', 'getvalue', array(
6a488035 1077
5896d037
TO
1078 'entity_id' => $contribution['id'],
1079 'entity_table' => 'civicrm_contribution',
1080 'sequential' => 1,
1081 'return' => 'line_total',
6a488035
TO
1082 ));
1083
1084 $this->assertEquals('125.00', $lineItems);
1085 $trxnAmount = $this->_getFinancialTrxnAmount($contribution['id']);
28de42d1
EM
1086
1087 // Financial trxn SUM = 125 + 5 (fee).
6a488035 1088 $this->assertEquals('130.00', $trxnAmount);
28de42d1 1089 $this->assertEquals('125.00', $this->_getFinancialItemAmount($contribution['id']));
6a488035
TO
1090 }
1091
a1a2a83d 1092 /**
1e52837d 1093 * Function tests that line items, financial records are updated when pay later contribution is received.
6a488035 1094 */
00be9182 1095 public function testCreateUpdateContributionPayLater() {
6a488035
TO
1096 $contribParams = array(
1097 'contact_id' => $this->_individualId,
1098 'receive_date' => '2012-01-01',
1099 'total_amount' => 100.00,
4ab7d517 1100 'financial_type_id' => $this->_financialTypeId,
6a488035 1101 'payment_instrument_id' => 1,
8f39a111 1102 'contribution_status_id' => 2,
1103 'is_pay_later' => 1,
4ab7d517 1104
6a488035 1105 );
4ab7d517 1106 $contribution = $this->callAPISuccess('contribution', 'create', $contribParams);
6a488035
TO
1107
1108 $newParams = array_merge($contribParams, array(
5896d037
TO
1109 'id' => $contribution['id'],
1110 'contribution_status_id' => 1,
1111 )
c71ae314 1112 );
694769da 1113 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
6a488035 1114 $contribution = $contribution['values'][$contribution['id']];
6c6e6187 1115 $this->assertEquals($contribution['contribution_status_id'], '1');
6a488035
TO
1116 $this->_checkFinancialItem($contribution['id'], 'paylater');
1117 $this->_checkFinancialTrxn($contribution, 'payLater');
1118 }
1119
a1a2a83d 1120 /**
eceb18cc 1121 * Function tests that financial records are updated when Payment Instrument is changed.
6a488035 1122 */
00be9182 1123 public function testCreateUpdateContributionPaymentInstrument() {
6a488035
TO
1124 $instrumentId = $this->_addPaymentInstrument();
1125 $contribParams = array(
1126 'contact_id' => $this->_individualId,
1127 'total_amount' => 100.00,
4ab7d517 1128 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
1129 'payment_instrument_id' => 4,
1130 'contribution_status_id' => 1,
4ab7d517 1131
6a488035 1132 );
4ab7d517 1133 $contribution = $this->callAPISuccess('contribution', 'create', $contribParams);
6a488035
TO
1134
1135 $newParams = array_merge($contribParams, array(
5896d037
TO
1136 'id' => $contribution['id'],
1137 'payment_instrument_id' => $instrumentId,
1138 )
6a488035 1139 );
694769da 1140 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
fc928539 1141 $this->assertAPISuccess($contribution);
4ecc6d4b 1142 $this->_checkFinancialTrxn($contribution, 'paymentInstrument', $instrumentId);
6a488035
TO
1143 }
1144
122250ec
SL
1145 /**
1146 * Function tests that financial records are updated when Payment Instrument is changed when amount is negative.
1147 */
1148 public function testCreateUpdateNegativeContributionPaymentInstrument() {
1149 $instrumentId = $this->_addPaymentInstrument();
1150 $contribParams = array(
1151 'contact_id' => $this->_individualId,
1152 'total_amount' => -100.00,
1153 'financial_type_id' => $this->_financialTypeId,
1154 'payment_instrument_id' => 4,
1155 'contribution_status_id' => 1,
1156
1157 );
1158 $contribution = $this->callAPISuccess('contribution', 'create', $contribParams);
1159
1160 $newParams = array_merge($contribParams, array(
1161 'id' => $contribution['id'],
1162 'payment_instrument_id' => $instrumentId,
1163 )
1164 );
1165 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
1166 $this->assertAPISuccess($contribution);
1167 $this->_checkFinancialTrxn($contribution, 'paymentInstrument', $instrumentId, array('total_amount' => '-100.00'));
1168 }
1169
a1a2a83d 1170 /**
eceb18cc 1171 * Function tests that financial records are added when Contribution is Refunded.
6a488035 1172 */
00be9182 1173 public function testCreateUpdateContributionRefund() {
797d4c52 1174 $contributionParams = array(
6a488035
TO
1175 'contact_id' => $this->_individualId,
1176 'receive_date' => '2012-01-01',
1177 'total_amount' => 100.00,
4ab7d517 1178 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
1179 'payment_instrument_id' => 4,
1180 'contribution_status_id' => 1,
797d4c52 1181 'trxn_id' => 'original_payment',
1182 );
1183 $contribution = $this->callAPISuccess('contribution', 'create', $contributionParams);
1184 $newParams = array_merge($contributionParams, array(
1185 'id' => $contribution['id'],
1186 'contribution_status_id' => 'Refunded',
1187 'cancel_date' => '2015-01-01 09:00',
1188 'refund_trxn_id' => 'the refund',
1189 )
1190 );
1191
1192 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
1193 $this->_checkFinancialTrxn($contribution, 'refund');
1194 $this->_checkFinancialItem($contribution['id'], 'refund');
1195 $this->assertEquals('original_payment', $this->callAPISuccessGetValue('Contribution', array(
1196 'id' => $contribution['id'],
1197 'return' => 'trxn_id',
1198 )));
1199 }
4ab7d517 1200
52da5b1e 1201 /**
1202 * Refund a contribution for a financial type with a contra account.
1203 *
1204 * CRM-17951 the contra account is a financial account with a relationship to a
1205 * financial type. It is not always configured but should be reflected
1206 * in the financial_trxn & financial_item table if it is.
1207 */
1208 public function testCreateUpdateChargebackContributionDefaultAccount() {
1209 $contribution = $this->callAPISuccess('Contribution', 'create', $this->_params);
1210 $this->callAPISuccess('Contribution', 'create', array(
1211 'id' => $contribution['id'],
1212 'contribution_status_id' => 'Chargeback',
1213 ));
1214 $this->callAPISuccessGetSingle('Contribution', array('contribution_status_id' => 'Chargeback'));
1215
1216 $lineItems = $this->callAPISuccessGetSingle('LineItem', array(
1217 'contribution_id' => $contribution['id'],
1218 'api.FinancialItem.getsingle' => array('amount' => array('<' => 0)),
1219 ));
1220 $this->assertEquals(1, $lineItems['api.FinancialItem.getsingle']['financial_account_id']);
1221 $this->callAPISuccessGetSingle('FinancialTrxn', array(
1222 'total_amount' => -100,
1223 'status_id' => 'Chargeback',
1224 'to_financial_account_id' => 6,
1225 ));
1226 }
1227
1228 /**
1229 * Refund a contribution for a financial type with a contra account.
1230 *
1231 * CRM-17951 the contra account is a financial account with a relationship to a
1232 * financial type. It is not always configured but should be reflected
1233 * in the financial_trxn & financial_item table if it is.
1234 */
1235 public function testCreateUpdateChargebackContributionCustomAccount() {
1236 $financialAccount = $this->callAPISuccess('FinancialAccount', 'create', array(
1237 'name' => 'Chargeback Account',
1238 'is_active' => TRUE,
1239 ));
1240
1241 $entityFinancialAccount = $this->callAPISuccess('EntityFinancialAccount', 'create', array(
1242 'entity_id' => $this->_financialTypeId,
1243 'entity_table' => 'civicrm_financial_type',
1244 'account_relationship' => 'Chargeback Account is',
1245 'financial_account_id' => 'Chargeback Account',
1246 ));
1247
1248 $contribution = $this->callAPISuccess('Contribution', 'create', $this->_params);
1249 $this->callAPISuccess('Contribution', 'create', array(
1250 'id' => $contribution['id'],
1251 'contribution_status_id' => 'Chargeback',
1252 ));
1253 $this->callAPISuccessGetSingle('Contribution', array('contribution_status_id' => 'Chargeback'));
1254
1255 $lineItems = $this->callAPISuccessGetSingle('LineItem', array(
1256 'contribution_id' => $contribution['id'],
1257 'api.FinancialItem.getsingle' => array('amount' => array('<' => 0)),
1258 ));
1259 $this->assertEquals($financialAccount['id'], $lineItems['api.FinancialItem.getsingle']['financial_account_id']);
1260
1261 $this->callAPISuccess('Contribution', 'delete', array('id' => $contribution['id']));
1262 $this->callAPISuccess('EntityFinancialAccount', 'delete', array('id' => $entityFinancialAccount['id']));
1263 $this->callAPISuccess('FinancialAccount', 'delete', array('id' => $financialAccount['id']));
1264 }
1265
bf2cf926 1266 /**
1267 * Refund a contribution for a financial type with a contra account.
1268 *
1269 * CRM-17951 the contra account is a financial account with a relationship to a
1270 * financial type. It is not always configured but should be reflected
1271 * in the financial_trxn & financial_item table if it is.
1272 */
1273 public function testCreateUpdateRefundContributionConfiguredContraAccount() {
1274 $financialAccount = $this->callAPISuccess('FinancialAccount', 'create', array(
1275 'name' => 'Refund Account',
1276 'is_active' => TRUE,
1277 ));
1278
1279 $entityFinancialAccount = $this->callAPISuccess('EntityFinancialAccount', 'create', array(
1280 'entity_id' => $this->_financialTypeId,
1281 'entity_table' => 'civicrm_financial_type',
1282 'account_relationship' => 'Credit/Contra Revenue Account is',
1283 'financial_account_id' => 'Refund Account',
1284 ));
1285
1286 $contribution = $this->callAPISuccess('Contribution', 'create', $this->_params);
1287 $this->callAPISuccess('Contribution', 'create', array(
1288 'id' => $contribution['id'],
1289 'contribution_status_id' => 'Refunded',
1290 ));
1291
52da5b1e 1292 $lineItems = $this->callAPISuccessGetSingle('LineItem', array(
bf2cf926 1293 'contribution_id' => $contribution['id'],
1294 'api.FinancialItem.getsingle' => array('amount' => array('<' => 0)),
1295 ));
1296 $this->assertEquals($financialAccount['id'], $lineItems['api.FinancialItem.getsingle']['financial_account_id']);
1297
1298 $this->callAPISuccess('Contribution', 'delete', array('id' => $contribution['id']));
1299 $this->callAPISuccess('EntityFinancialAccount', 'delete', array('id' => $entityFinancialAccount['id']));
1300 $this->callAPISuccess('FinancialAccount', 'delete', array('id' => $financialAccount['id']));
bf2cf926 1301 }
1302
797d4c52 1303 /**
1304 * Function tests that trxn_id is set when passed in.
1305 *
1306 * Here we ensure that the civicrm_financial_trxn.trxn_id & the civicrm_contribution.trxn_id are set
1307 * when trxn_id is passed in.
1308 */
1309 public function testCreateUpdateContributionRefundTrxnIDPassedIn() {
1310 $contributionParams = array(
1311 'contact_id' => $this->_individualId,
1312 'receive_date' => '2012-01-01',
1313 'total_amount' => 100.00,
1314 'financial_type_id' => $this->_financialTypeId,
1315 'payment_instrument_id' => 4,
1316 'contribution_status_id' => 1,
1317 'trxn_id' => 'original_payment',
6a488035 1318 );
797d4c52 1319 $contribution = $this->callAPISuccess('contribution', 'create', $contributionParams);
1320 $newParams = array_merge($contributionParams, array(
1321 'id' => $contribution['id'],
1322 'contribution_status_id' => 'Refunded',
1323 'cancel_date' => '2015-01-01 09:00',
1324 'trxn_id' => 'the refund',
1325 )
1326 );
1327
1328 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
1329 $this->_checkFinancialTrxn($contribution, 'refund');
1330 $this->_checkFinancialItem($contribution['id'], 'refund');
1331 $this->assertEquals('the refund', $this->callAPISuccessGetValue('Contribution', array(
1332 'id' => $contribution['id'],
1333 'return' => 'trxn_id',
1334 )));
1335 }
1336
1337 /**
1338 * Function tests that trxn_id is set when passed in.
1339 *
1340 * Here we ensure that the civicrm_contribution.trxn_id is set
1341 * when trxn_id is passed in but if refund_trxn_id is different then that
1342 * is kept for the refund transaction.
1343 */
1344 public function testCreateUpdateContributionRefundRefundAndTrxnIDPassedIn() {
1345 $contributionParams = array(
1346 'contact_id' => $this->_individualId,
1347 'receive_date' => '2012-01-01',
1348 'total_amount' => 100.00,
1349 'financial_type_id' => $this->_financialTypeId,
1350 'payment_instrument_id' => 4,
1351 'contribution_status_id' => 1,
1352 'trxn_id' => 'original_payment',
1353 );
1354 $contribution = $this->callAPISuccess('contribution', 'create', $contributionParams);
1355 $newParams = array_merge($contributionParams, array(
5896d037 1356 'id' => $contribution['id'],
b7990bb6 1357 'contribution_status_id' => 'Refunded',
1358 'cancel_date' => '2015-01-01 09:00',
797d4c52 1359 'trxn_id' => 'cont id',
1360 'refund_trxn_id' => 'the refund',
6a488035
TO
1361 )
1362 );
1363
694769da 1364 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
6a488035
TO
1365 $this->_checkFinancialTrxn($contribution, 'refund');
1366 $this->_checkFinancialItem($contribution['id'], 'refund');
797d4c52 1367 $this->assertEquals('cont id', $this->callAPISuccessGetValue('Contribution', array(
1368 'id' => $contribution['id'],
1369 'return' => 'trxn_id',
1370 )));
1371 }
1372
1373 /**
1374 * Function tests that refund_trxn_id is set when passed in empty.
1375 *
1376 * Here we ensure that the civicrm_contribution.trxn_id is set
1377 * when trxn_id is passed in but if refund_trxn_id isset but empty then that
1378 * is kept for the refund transaction.
1379 */
1380 public function testCreateUpdateContributionRefundRefundNullTrxnIDPassedIn() {
1381 $contributionParams = array(
1382 'contact_id' => $this->_individualId,
1383 'receive_date' => '2012-01-01',
1384 'total_amount' => 100.00,
1385 'financial_type_id' => $this->_financialTypeId,
1386 'payment_instrument_id' => 4,
1387 'contribution_status_id' => 1,
1388 'trxn_id' => 'original_payment',
1389 );
1390 $contribution = $this->callAPISuccess('contribution', 'create', $contributionParams);
1391 $newParams = array_merge($contributionParams, array(
1392 'id' => $contribution['id'],
1393 'contribution_status_id' => 'Refunded',
1394 'cancel_date' => '2015-01-01 09:00',
1395 'trxn_id' => 'cont id',
1396 'refund_trxn_id' => '',
1397 )
1398 );
1399
1400 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
1401 $this->_checkFinancialTrxn($contribution, 'refund', NULL, array('trxn_id' => NULL));
1402 $this->_checkFinancialItem($contribution['id'], 'refund');
1403 $this->assertEquals('cont id', $this->callAPISuccessGetValue('Contribution', array(
1404 'id' => $contribution['id'],
1405 'return' => 'trxn_id',
1406 )));
8f39a111 1407 }
c71ae314 1408
a1a2a83d 1409 /**
eceb18cc 1410 * Function tests invalid contribution status change.
c71ae314 1411 */
00be9182 1412 public function testCreateUpdateContributionInValidStatusChange() {
c71ae314
PN
1413 $contribParams = array(
1414 'contact_id' => 1,
1415 'receive_date' => '2012-01-01',
1416 'total_amount' => 100.00,
1417 'financial_type_id' => 1,
1418 'payment_instrument_id' => 1,
1419 'contribution_status_id' => 1,
c71ae314 1420 );
4ab7d517 1421 $contribution = $this->callAPISuccess('contribution', 'create', $contribParams);
c71ae314 1422 $newParams = array_merge($contribParams, array(
5896d037
TO
1423 'id' => $contribution['id'],
1424 'contribution_status_id' => 2,
c71ae314
PN
1425 )
1426 );
6c6e6187 1427 $this->callAPIFailure('contribution', 'create', $newParams, ts('Cannot change contribution status from Completed to Pending.'));
c71ae314 1428
6a488035
TO
1429 }
1430
a1a2a83d 1431 /**
eceb18cc 1432 * Function tests that financial records are added when Pending Contribution is Canceled.
6a488035 1433 */
00be9182 1434 public function testCreateUpdateContributionCancelPending() {
6a488035
TO
1435 $contribParams = array(
1436 'contact_id' => $this->_individualId,
1437 'receive_date' => '2012-01-01',
1438 'total_amount' => 100.00,
4ab7d517 1439 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
1440 'payment_instrument_id' => 1,
1441 'contribution_status_id' => 2,
c71ae314 1442 'is_pay_later' => 1,
4ab7d517 1443
6a488035 1444 );
4ab7d517 1445 $contribution = $this->callAPISuccess('contribution', 'create', $contribParams);
6a488035 1446 $newParams = array_merge($contribParams, array(
5896d037
TO
1447 'id' => $contribution['id'],
1448 'contribution_status_id' => 3,
0a8160e8 1449 'cancel_date' => '2012-02-02 09:00',
6a488035
TO
1450 )
1451 );
0a8160e8 1452 //Check if trxn_date is same as cancel_date.
1453 $checkTrxnDate = array(
1454 'trxn_date' => '2012-02-02 09:00:00',
1455 );
694769da 1456 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
0a8160e8 1457 $this->_checkFinancialTrxn($contribution, 'cancelPending', NULL, $checkTrxnDate);
6a488035
TO
1458 $this->_checkFinancialItem($contribution['id'], 'cancelPending');
1459 }
1460
a1a2a83d 1461 /**
eceb18cc 1462 * Function tests that financial records are added when Financial Type is Changed.
6a488035 1463 */
00be9182 1464 public function testCreateUpdateContributionChangeFinancialType() {
6a488035
TO
1465 $contribParams = array(
1466 'contact_id' => $this->_individualId,
1467 'receive_date' => '2012-01-01',
1468 'total_amount' => 100.00,
1469 'financial_type_id' => 1,
1470 'payment_instrument_id' => 1,
1471 'contribution_status_id' => 1,
4ab7d517 1472
6a488035 1473 );
4ab7d517 1474 $contribution = $this->callAPISuccess('contribution', 'create', $contribParams);
6a488035 1475 $newParams = array_merge($contribParams, array(
5896d037
TO
1476 'id' => $contribution['id'],
1477 'financial_type_id' => 3,
6a488035
TO
1478 )
1479 );
694769da 1480 $contribution = $this->callAPISuccess('contribution', 'create', $newParams);
6a488035
TO
1481 $this->_checkFinancialTrxn($contribution, 'changeFinancial');
1482 $this->_checkFinancialItem($contribution['id'], 'changeFinancial');
1483 }
1484
694769da 1485 /**
1e52837d 1486 * Test that update does not change status id CRM-15105.
694769da 1487 */
00be9182 1488 public function testCreateUpdateWithoutChangingPendingStatus() {
694769da
VU
1489 $contribution = $this->callAPISuccess('contribution', 'create', array_merge($this->_params, array('contribution_status_id' => 2)));
1490 $this->callAPISuccess('contribution', 'create', array('id' => $contribution['id'], 'source' => 'new source'));
5896d037 1491 $contribution = $this->callAPISuccess('contribution', 'getsingle', array(
92915c55
TO
1492 'id' => $contribution['id'],
1493 'api.contribution.delete' => 1,
1494 ));
694769da
VU
1495 $this->assertEquals(2, $contribution['contribution_status_id']);
1496 }
a1a2a83d
TO
1497
1498 /**
28de42d1
EM
1499 * Test Updating a Contribution.
1500 *
a1a2a83d
TO
1501 * CHANGE: we require the API to do an incremental update
1502 */
00be9182 1503 public function testCreateUpdateContribution() {
78ab0ca4 1504 $contributionID = $this->contributionCreate(array(
1505 'contact_id' => $this->_individualId,
1506 'trxn_id' => 212355,
1507 'financial_type_id' => $this->_financialTypeId,
1508 'invoice_id' => 'old_invoice',
1509 ));
6a488035
TO
1510 $old_params = array(
1511 'contribution_id' => $contributionID,
6a488035 1512 );
4ab7d517 1513 $original = $this->callAPISuccess('contribution', 'get', $old_params);
2bfae985 1514 $this->assertEquals($original['id'], $contributionID);
6a488035
TO
1515 //set up list of old params, verify
1516
1517 //This should not be required on update:
1518 $old_contact_id = $original['values'][$contributionID]['contact_id'];
7d543448 1519 $old_payment_instrument = $original['values'][$contributionID]['instrument_id'];
6a488035
TO
1520 $old_fee_amount = $original['values'][$contributionID]['fee_amount'];
1521 $old_source = $original['values'][$contributionID]['contribution_source'];
1522
6a488035
TO
1523 $old_trxn_id = $original['values'][$contributionID]['trxn_id'];
1524 $old_invoice_id = $original['values'][$contributionID]['invoice_id'];
1525
1526 //check against values in CiviUnitTestCase::createContribution()
2bfae985
EM
1527 $this->assertEquals($old_contact_id, $this->_individualId);
1528 $this->assertEquals($old_fee_amount, 5.00);
1529 $this->assertEquals($old_source, 'SSF');
1530 $this->assertEquals($old_trxn_id, 212355);
78ab0ca4 1531 $this->assertEquals($old_invoice_id, 'old_invoice');
6a488035
TO
1532 $params = array(
1533 'id' => $contributionID,
1534 'contact_id' => $this->_individualId,
09201732
K
1535 'total_amount' => 105.00,
1536 'fee_amount' => 7.00,
4ab7d517 1537 'financial_type_id' => $this->_financialTypeId,
09201732 1538 'non_deductible_amount' => 22.00,
6a488035 1539 'contribution_status_id' => 1,
ef32adff 1540 'note' => 'Donating for Noble Cause',
6a488035
TO
1541 );
1542
4ab7d517 1543 $contribution = $this->callAPISuccess('contribution', 'create', $params);
6a488035
TO
1544
1545 $new_params = array(
1546 'contribution_id' => $contribution['id'],
4ab7d517 1547
6a488035 1548 );
ef32adff 1549 $contribution = $this->callAPISuccessGetSingle('contribution', $new_params);
1550
1551 $this->assertEquals($contribution['contact_id'], $this->_individualId);
09201732 1552 $this->assertEquals($contribution['total_amount'], 105.00);
ef32adff 1553 $this->assertEquals($contribution['financial_type_id'], $this->_financialTypeId);
1554 $this->assertEquals($contribution['financial_type'], 'Donation');
1555 $this->assertEquals($contribution['instrument_id'], $old_payment_instrument);
09201732
K
1556 $this->assertEquals($contribution['non_deductible_amount'], 22.00);
1557 $this->assertEquals($contribution['fee_amount'], 7.00);
ef32adff 1558 $this->assertEquals($contribution['trxn_id'], $old_trxn_id);
1559 $this->assertEquals($contribution['invoice_id'], $old_invoice_id);
1560 $this->assertEquals($contribution['contribution_source'], $old_source);
1561 $this->assertEquals($contribution['contribution_status'], 'Completed');
09201732
K
1562
1563 $this->assertEquals($contribution['net_amount'], $contribution['total_amount'] - $contribution['fee_amount']);
1564
6a488035
TO
1565 $params = array(
1566 'contribution_id' => $contributionID,
4ab7d517 1567
6a488035 1568 );
4ab7d517 1569 $result = $this->callAPISuccess('contribution', 'delete', $params);
22f80e87 1570 $this->assertAPISuccess($result);
6a488035
TO
1571 }
1572
a1a2a83d
TO
1573 /**
1574 * Attempt (but fail) to delete a contribution without parameters.
1575 */
00be9182 1576 public function testDeleteEmptyParamsContribution() {
4ab7d517 1577 $params = array();
858d0bf8 1578 $this->callAPIFailure('contribution', 'delete', $params);
6a488035
TO
1579 }
1580
00be9182 1581 public function testDeleteParamsNotArrayContribution() {
6a488035 1582 $params = 'contribution_id= 1';
d0e1eff2 1583 $contribution = $this->callAPIFailure('contribution', 'delete', $params);
6a488035
TO
1584 $this->assertEquals($contribution['error_message'], 'Input variable `params` is not an array');
1585 }
1586
00be9182 1587 public function testDeleteWrongParamContribution() {
6a488035
TO
1588 $params = array(
1589 'contribution_source' => 'SSF',
4ab7d517 1590
6a488035 1591 );
858d0bf8 1592 $this->callAPIFailure('contribution', 'delete', $params);
6a488035
TO
1593 }
1594
00be9182 1595 public function testDeleteContribution() {
78ab0ca4 1596 $contributionID = $this->contributionCreate(array(
1597 'contact_id' => $this->_individualId,
1598 'financial_type_id' => $this->_financialTypeId,
1599 ));
6a488035
TO
1600 $params = array(
1601 'id' => $contributionID,
6a488035 1602 );
4ab7d517 1603 $this->callAPIAndDocument('contribution', 'delete', $params, __FUNCTION__, __FILE__);
6a488035
TO
1604 }
1605
1606 /**
d177a2a6 1607 * Test civicrm_contribution_search with empty params.
1e52837d 1608 *
d177a2a6 1609 * All available contributions expected.
6a488035 1610 */
00be9182 1611 public function testSearchEmptyParams() {
4ab7d517 1612 $params = array();
6a488035
TO
1613
1614 $p = array(
1615 'contact_id' => $this->_individualId,
1616 'receive_date' => date('Ymd'),
1617 'total_amount' => 100.00,
4ab7d517 1618 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
1619 'non_deductible_amount' => 10.00,
1620 'fee_amount' => 5.00,
1621 'net_amount' => 95.00,
1622 'trxn_id' => 23456,
1623 'invoice_id' => 78910,
1624 'source' => 'SSF',
1625 'contribution_status_id' => 1,
4ab7d517 1626
6a488035 1627 );
4ab7d517 1628 $contribution = $this->callAPISuccess('contribution', 'create', $p);
6a488035 1629
4ab7d517 1630 $result = $this->callAPISuccess('contribution', 'get', $params);
6a488035
TO
1631 // We're taking the first element.
1632 $res = $result['values'][$contribution['id']];
1633
2bfae985
EM
1634 $this->assertEquals($p['contact_id'], $res['contact_id']);
1635 $this->assertEquals($p['total_amount'], $res['total_amount']);
5896d037 1636 $this->assertEquals($p['financial_type_id'], $res['financial_type_id']);
2bfae985
EM
1637 $this->assertEquals($p['net_amount'], $res['net_amount']);
1638 $this->assertEquals($p['non_deductible_amount'], $res['non_deductible_amount']);
1639 $this->assertEquals($p['fee_amount'], $res['fee_amount']);
1640 $this->assertEquals($p['trxn_id'], $res['trxn_id']);
1641 $this->assertEquals($p['invoice_id'], $res['invoice_id']);
1642 $this->assertEquals($p['source'], $res['contribution_source']);
6a488035 1643 // contribution_status_id = 1 => Completed
2bfae985 1644 $this->assertEquals('Completed', $res['contribution_status']);
6a488035
TO
1645
1646 $this->contributionDelete($contribution['id']);
1647 }
1648
1649 /**
d177a2a6 1650 * Test civicrm_contribution_search. Success expected.
6a488035 1651 */
00be9182 1652 public function testSearch() {
6a488035
TO
1653 $p1 = array(
1654 'contact_id' => $this->_individualId,
1655 'receive_date' => date('Ymd'),
1656 'total_amount' => 100.00,
4ab7d517 1657 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
1658 'non_deductible_amount' => 10.00,
1659 'contribution_status_id' => 1,
4ab7d517 1660
6a488035 1661 );
4ab7d517 1662 $contribution1 = $this->callAPISuccess('contribution', 'create', $p1);
6a488035
TO
1663
1664 $p2 = array(
1665 'contact_id' => $this->_individualId,
1666 'receive_date' => date('Ymd'),
1667 'total_amount' => 200.00,
4ab7d517 1668 'financial_type_id' => $this->_financialTypeId,
6a488035
TO
1669 'non_deductible_amount' => 20.00,
1670 'trxn_id' => 5454565,
1671 'invoice_id' => 1212124,
1672 'fee_amount' => 50.00,
1673 'net_amount' => 60.00,
1674 'contribution_status_id' => 2,
4ab7d517 1675
6a488035 1676 );
2f45e1c2 1677 $contribution2 = $this->callAPISuccess('contribution', 'create', $p2);
6a488035
TO
1678
1679 $params = array(
1680 'contribution_id' => $contribution2['id'],
4ab7d517 1681
6a488035 1682 );
2f45e1c2 1683 $result = $this->callAPISuccess('contribution', 'get', $params);
6a488035
TO
1684 $res = $result['values'][$contribution2['id']];
1685
2bfae985
EM
1686 $this->assertEquals($p2['contact_id'], $res['contact_id']);
1687 $this->assertEquals($p2['total_amount'], $res['total_amount']);
5896d037 1688 $this->assertEquals($p2['financial_type_id'], $res['financial_type_id']);
2bfae985
EM
1689 $this->assertEquals($p2['net_amount'], $res['net_amount']);
1690 $this->assertEquals($p2['non_deductible_amount'], $res['non_deductible_amount']);
1691 $this->assertEquals($p2['fee_amount'], $res['fee_amount']);
1692 $this->assertEquals($p2['trxn_id'], $res['trxn_id']);
1693 $this->assertEquals($p2['invoice_id'], $res['invoice_id']);
6a488035 1694 // contribution_status_id = 2 => Pending
2bfae985 1695 $this->assertEquals('Pending', $res['contribution_status']);
6a488035
TO
1696
1697 $this->contributionDelete($contribution1['id']);
1698 $this->contributionDelete($contribution2['id']);
1699 }
2f45e1c2 1700
0efa8efe 1701 /**
eceb18cc 1702 * Test completing a transaction via the API.
0efa8efe 1703 *
1704 * Note that we are creating a logged in user because email goes out from
1705 * that person
1706 */
00be9182 1707 public function testCompleteTransaction() {
5896d037 1708 $mut = new CiviMailUtils($this, TRUE);
ec7e3954 1709 $this->swapMessageTemplateForTestTemplate();
0efa8efe 1710 $this->createLoggedInUser();
6c6e6187
TO
1711 $params = array_merge($this->_params, array('contribution_status_id' => 2));
1712 $contribution = $this->callAPISuccess('contribution', 'create', $params);
66d3f9be 1713 $this->callAPISuccess('contribution', 'completetransaction', array(
0efa8efe 1714 'id' => $contribution['id'],
66d3f9be 1715 ));
cc7b912f 1716 $contribution = $this->callAPISuccess('contribution', 'getsingle', array('id' => $contribution['id']));
d5580ed4 1717 $this->assertEquals('SSF', $contribution['contribution_source']);
cc7b912f 1718 $this->assertEquals('Completed', $contribution['contribution_status']);
1719 $this->assertEquals(date('Y-m-d'), date('Y-m-d', strtotime($contribution['receipt_date'])));
0efa8efe 1720 $mut->checkMailLog(array(
ec7e3954
E
1721 'email:::anthony_anderson@civicrm.org',
1722 'is_monetary:::1',
1723 'amount:::100.00',
1724 'currency:::USD',
1725 'receive_date:::' . date('Ymd', strtotime($contribution['receive_date'])),
76e8d9c4 1726 "receipt_date:::\n",
ec7e3954
E
1727 'contributeMode:::notify',
1728 'title:::Contribution',
1729 'displayName:::Mr. Anthony Anderson II',
0efa8efe 1730 ));
46fa5206 1731 $mut->stop();
ec7e3954 1732 $this->revertTemplateToReservedTemplate();
46fa5206
EM
1733 }
1734
e05d2e11 1735 /**
1736 * Test to ensure mail is sent on chosing pay later
1737 */
1738 public function testpayLater() {
1739 $mut = new CiviMailUtils($this, TRUE);
1740 $this->swapMessageTemplateForTestTemplate();
1741 $this->createLoggedInUser();
1742
1743 // create contribution page first
1744 $contributionPageParams = array(
1745 'title' => 'Help Support CiviCRM!',
1746 'financial_type_id' => 1,
1747 'is_monetary' => TRUE,
1748 'is_pay_later' => 1,
1749 'is_quick_config' => TRUE,
1750 'pay_later_text' => 'I will send payment by check',
1751 'pay_later_receipt' => 'This is a pay later reciept',
1752 'is_allow_other_amount' => 1,
1753 'min_amount' => 10.00,
1754 'max_amount' => 10000.00,
1755 'goal_amount' => 100000.00,
1756 'is_email_receipt' => 1,
1757 'is_active' => 1,
1758 'amount_block_is_active' => 1,
1759 'currency' => 'USD',
1760 'is_billing_required' => 0,
1761 );
1762 $contributionPageResult = $this->callAPISuccess('contribution_page', 'create', $contributionPageParams);
1763
1764 // submit form values
1765 $priceSet = $this->callAPISuccess('price_set', 'getsingle', array('name' => 'default_contribution_amount'));
1766 $params = array(
1767 'id' => $contributionPageResult['id'],
1768 'contact_id' => $this->_individualId,
1769 'email-5' => 'anthony_anderson@civicrm.org',
1770 'payment_processor_id' => 0,
1771 'amount' => 100.00,
1772 'tax_amount' => '',
1773 'currencyID' => 'USD',
1774 'is_pay_later' => 1,
1775 'invoiceID' => 'f28e1ddc86f8c4a0ff5bcf46393e4bc8',
1776 'is_quick_config' => 1,
1777 'description' => 'Online Contribution: Help Support CiviCRM!',
1778 'price_set_id' => $priceSet['id'],
1779 );
1780 $this->callAPISuccess('contribution_page', 'submit', $params);
1781
1782 $mut->checkMailLog(array(
1783 'is_pay_later:::1',
1784 'email:::anthony_anderson@civicrm.org',
1785 'pay_later_receipt:::' . $contributionPageParams['pay_later_receipt'],
1786 'displayName:::Mr. Anthony Anderson II',
1787 'contributionPageId:::' . $contributionPageResult['id'],
1788 'title:::' . $contributionPageParams['title'],
8beee0e8 1789 'amount:::' . $params['amount'],
e05d2e11 1790 ));
1791 $mut->stop();
1792 $this->revertTemplateToReservedTemplate();
1793 }
1794
2a0df9d9 1795 /**
1796 * Test to check whether contact billing address is used when no contribution address
1797 */
1798 public function testBillingAddress() {
1799 $mut = new CiviMailUtils($this, TRUE);
1800 $this->swapMessageTemplateForTestTemplate();
1801 $this->createLoggedInUser();
1802
1803 //Scenario 1: When Contact don't have any address
1804 $params = array_merge($this->_params, array('contribution_status_id' => 2));
1805 $contribution = $this->callAPISuccess('contribution', 'create', $params);
1806 $this->callAPISuccess('contribution', 'completetransaction', array(
1807 'id' => $contribution['id'],
1808 ));
1809 $mut->checkMailLog(array(
1810 'address:::',
1811 ));
1812
1813 // Scenario 2: Contribution using address
1814 $address = $this->callAPISuccess('address', 'create', array(
1815 'street_address' => 'contribution billing st',
1816 'location_type_id' => 2,
1817 'contact_id' => $this->_params['contact_id'],
1818 ));
76e8d9c4
E
1819 $params = array_merge($this->_params, array(
1820 'contribution_status_id' => 2,
2a0df9d9 1821 'address_id' => $address['id'],
1822 )
1823 );
1824 $contribution = $this->callAPISuccess('contribution', 'create', $params);
1825 $this->callAPISuccess('contribution', 'completetransaction', array(
1826 'id' => $contribution['id'],
1827 ));
1828 $mut->checkMailLog(array(
1829 'address:::contribution billing st',
1830 ));
1831
1832 // Scenario 3: Contribution wtth no address but contact has a billing address
1833 $this->callAPISuccess('address', 'create', array(
1834 'id' => $address['id'],
1835 'street_address' => 'is billing st',
1836 'contact_id' => $this->_params['contact_id'],
1837 ));
1838 $params = array_merge($this->_params, array('contribution_status_id' => 2));
1839 $contribution = $this->callAPISuccess('contribution', 'create', $params);
1840 $this->callAPISuccess('contribution', 'completetransaction', array(
1841 'id' => $contribution['id'],
1842 ));
1843 $mut->checkMailLog(array(
1844 'address:::is billing st',
1845 ));
1846
1847 $mut->stop();
1848 $this->revertTemplateToReservedTemplate();
1849 }
1850
080a561b 1851 /**
1852 * Test completing a transaction via the API.
1853 *
1854 * Note that we are creating a logged in user because email goes out from
1855 * that person
1856 */
1857 public function testCompleteTransactionFeeAmount() {
1858 $this->createLoggedInUser();
1859 $params = array_merge($this->_params, array('contribution_status_id' => 2));
1860 $contribution = $this->callAPISuccess('contribution', 'create', $params);
1861 $this->callAPISuccess('contribution', 'completetransaction', array(
1862 'id' => $contribution['id'],
1863 'fee_amount' => '.56',
1864 'trxn_id' => '7778888',
1865 ));
1866 $contribution = $this->callAPISuccess('contribution', 'getsingle', array('id' => $contribution['id'], 'sequential' => 1));
1867 $this->assertEquals('Completed', $contribution['contribution_status']);
1868 $this->assertEquals('7778888', $contribution['trxn_id']);
1869 $this->assertEquals('.56', $contribution['fee_amount']);
1870 $this->assertEquals('99.44', $contribution['net_amount']);
1871 }
1872
effb4d85
SL
1873 /**
1874 * CRM-19126 Add test to verify when complete transaction is called tax amount is not changed
1875 */
1876 public function testCheckTaxAmount() {
1877 $contact = $this->createLoggedInUser();
1878 $financialType = $this->callAPISuccess('financial_type', 'create', array(
1879 'name' => 'Test taxable financial Type',
1880 'is_reserved' => 0,
1881 'is_active' => 1,
1882 ));
1883 $financialAccount = $this->callAPISuccess('financial_account', 'create', array(
1884 'name' => 'Test Tax financial account ',
1885 'contact_id' => $contact,
1886 'financial_account_type_id' => 2,
1887 'is_tax' => 1,
1888 'tax_rate' => 5.00,
1889 'is_reserved' => 0,
1890 'is_active' => 1,
1891 'is_default' => 0,
1892 ));
1893 $financialTypeId = $financialType['id'];
1894 $financialAccountId = $financialAccount['id'];
1895 $financialAccountParams = array(
1896 'entity_table' => 'civicrm_financial_type',
1897 'entity_id' => $financialTypeId,
1898 'account_relationship' => 10,
1899 'financial_account_id' => $financialAccountId,
1900 );
a76b8bd8 1901 CRM_Financial_BAO_FinancialTypeAccount::add($financialAccountParams);
f527e012 1902
effb4d85
SL
1903 $params = array_merge($this->_params, array('contribution_status_id' => 2, 'financial_type_id' => $financialTypeId));
1904 $contribution = $this->callAPISuccess('contribution', 'create', $params);
1905 $contribution1 = $this->callAPISuccess('contribution', 'get', array('id' => $contribution['id'], 'return' => 'tax_amount', 'sequential' => 1));
1906 $this->callAPISuccess('contribution', 'completetransaction', array(
1907 'id' => $contribution['id'],
1908 'trxn_id' => '777788888',
99a4cd32 1909 'fee_amount' => '6.00',
effb4d85 1910 ));
99a4cd32 1911 $contribution2 = $this->callAPISuccess('contribution', 'get', array('id' => $contribution['id'], 'return' => array('tax_amount', 'fee_amount', 'net_amount'), 'sequential' => 1));
effb4d85 1912 $this->assertEquals($contribution1['values'][0]['tax_amount'], $contribution2['values'][0]['tax_amount']);
99a4cd32 1913 $this->assertEquals('6.00', $contribution2['values'][0]['fee_amount']);
f836984d 1914 $this->assertEquals('99.00', $contribution2['values'][0]['net_amount']);
effb4d85
SL
1915 }
1916
d97c96dc 1917 /**
0e6ccb2e 1918 * Test repeat contribution successfully creates line item.
d97c96dc 1919 */
1e52837d 1920 public function testRepeatTransaction() {
0e6ccb2e 1921 $originalContribution = $this->setUpRepeatTransaction($recurParams = array(), 'single');
d97c96dc
EM
1922 $this->callAPISuccess('contribution', 'repeattransaction', array(
1923 'original_contribution_id' => $originalContribution['id'],
1924 'contribution_status_id' => 'Completed',
1925 'trxn_id' => uniqid(),
1926 ));
1927 $lineItemParams = array(
1928 'entity_id' => $originalContribution['id'],
1929 'sequential' => 1,
1930 'return' => array(
1931 'entity_table',
1932 'qty',
1933 'unit_price',
1934 'line_total',
1935 'label',
1936 'financial_type_id',
1937 'deductible_amount',
1938 'price_field_value_id',
1939 'price_field_id',
1e52837d 1940 ),
d97c96dc
EM
1941 );
1942 $lineItem1 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
1943 'entity_id' => $originalContribution['id'],
1944 )));
1945 $lineItem2 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
1946 'entity_id' => $originalContribution['id'] + 1,
1947 )));
1948 unset($lineItem1['values'][0]['id'], $lineItem1['values'][0]['entity_id']);
1949 unset($lineItem2['values'][0]['id'], $lineItem2['values'][0]['entity_id']);
1950 $this->assertEquals($lineItem1['values'][0], $lineItem2['values'][0]);
f69a9ac3 1951 $this->_checkFinancialRecords(array(
1952 'id' => $originalContribution['id'] + 1,
1953 'payment_instrument_id' => $this->callAPISuccessGetValue('PaymentProcessor', array(
1954 'id' => $originalContribution['payment_processor_id'],
1955 'return' => 'payment_instrument_id',
1956 )),
1957 ), 'online');
d97c96dc
EM
1958 $this->quickCleanUpFinancialEntities();
1959 }
1960
893a550c 1961 /**
0e6ccb2e
K
1962 * Test repeat contribution successfully creates line items (plural).
1963 */
1964 public function testRepeatTransactionLineItems() {
7150b1c8 1965 // CRM-19309
0e6ccb2e
K
1966 $originalContribution = $this->setUpRepeatTransaction($recurParams = array(), 'multiple');
1967 $this->callAPISuccess('contribution', 'repeattransaction', array(
1968 'original_contribution_id' => $originalContribution['id'],
1969 'contribution_status_id' => 'Completed',
1970 'trxn_id' => uniqid(),
1971 ));
1972
1973 $lineItemParams = array(
1974 'entity_id' => $originalContribution['id'],
1975 'sequential' => 1,
1976 'return' => array(
1977 'entity_table',
1978 'qty',
1979 'unit_price',
1980 'line_total',
1981 'label',
1982 'financial_type_id',
1983 'deductible_amount',
1984 'price_field_value_id',
1985 'price_field_id',
1986 ),
1987 );
1988 $lineItem1 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
1989 'entity_id' => $originalContribution['id'],
1990 )));
1991 $lineItem2 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
1992 'entity_id' => $originalContribution['id'] + 1,
1993 )));
1994
1995 // unset id and entity_id for all of them to be able to compare the lineItems:
1996 unset($lineItem1['values'][0]['id'], $lineItem1['values'][0]['entity_id']);
1997 unset($lineItem2['values'][0]['id'], $lineItem2['values'][0]['entity_id']);
1998 $this->assertEquals($lineItem1['values'][0], $lineItem2['values'][0]);
1999
2000 unset($lineItem1['values'][1]['id'], $lineItem1['values'][1]['entity_id']);
2001 unset($lineItem2['values'][1]['id'], $lineItem2['values'][1]['entity_id']);
2002 $this->assertEquals($lineItem1['values'][1], $lineItem2['values'][1]);
2003
7150b1c8
K
2004 // CRM-19309 so in future we also want to:
2005 // check that financial_line_items have been created for entity_id 3 and 4;
0e6ccb2e
K
2006
2007 $this->callAPISuccessGetCount('FinancialItem', array('description' => 'Sales Tax', 'amount' => 0), 0);
2008 $this->quickCleanUpFinancialEntities();
2009 }
2010
2011 /**
2012 * Test repeat contribution successfully creates is_test transaction.
893a550c 2013 */
2014 public function testRepeatTransactionIsTest() {
2015 $this->_params['is_test'] = 1;
0e6ccb2e 2016 $originalContribution = $this->setUpRepeatTransaction(array('is_test' => 1), 'single');
893a550c 2017
2018 $this->callAPISuccess('contribution', 'repeattransaction', array(
2019 'original_contribution_id' => $originalContribution['id'],
2020 'contribution_status_id' => 'Completed',
2021 'trxn_id' => uniqid(),
2022 ));
2023 $this->callAPISuccessGetCount('Contribution', array('contribution_test' => 1), 2);
2024 }
2025
d5580ed4 2026 /**
2027 * Test repeat contribution passed in status.
2028 */
2029 public function testRepeatTransactionPassedInStatus() {
0e6ccb2e 2030 $originalContribution = $this->setUpRepeatTransaction($recurParams = array(), 'single');
d5580ed4 2031
2032 $this->callAPISuccess('contribution', 'repeattransaction', array(
2033 'original_contribution_id' => $originalContribution['id'],
2034 'contribution_status_id' => 'Pending',
2035 'trxn_id' => uniqid(),
2036 ));
2037 $this->callAPISuccessGetCount('Contribution', array('contribution_status_id' => 2), 1);
2038 }
2039
1eade77d 2040 /**
2041 * Test repeat contribution accepts recur_id instead of original_contribution_id.
2042 */
2043 public function testRepeatTransactionAcceptRecurID() {
2044 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array(
2045 'contact_id' => $this->_individualId,
2046 'installments' => '12',
2047 'frequency_interval' => '1',
2048 'amount' => '100',
2049 'contribution_status_id' => 1,
2050 'start_date' => '2012-01-01 00:00:00',
2051 'currency' => 'USD',
2052 'frequency_unit' => 'month',
2053 'payment_processor_id' => $this->paymentProcessorID,
2054 ));
2055 $this->callAPISuccess('contribution', 'create', array_merge(
2056 $this->_params,
2057 array('contribution_recur_id' => $contributionRecur['id']))
2058 );
2059
2060 $this->callAPISuccess('contribution', 'repeattransaction', array(
2061 'contribution_recur_id' => $contributionRecur['id'],
2062 'contribution_status_id' => 'Completed',
2063 'trxn_id' => uniqid(),
2064 ));
2065
2066 $this->quickCleanUpFinancialEntities();
2067 }
2068
28124368
PH
2069 /**
2070 * CRM-19873 Test repattransaction if contribution_recur_id is a test.
2071 */
2072 public function testRepeatTransactionTestRecurId() {
2073 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array(
2074 'contact_id' => $this->_individualId,
2075 'frequency_interval' => '1',
2076 'amount' => '1.00',
2077 'contribution_status_id' => 1,
2078 'start_date' => '2017-01-01 00:00:00',
2079 'currency' => 'USD',
2080 'frequency_unit' => 'month',
2081 'payment_processor_id' => $this->paymentProcessorID,
2082 'is_test' => 1,
2083 ));
2084 $this->callAPISuccess('contribution', 'create', array_merge(
2085 $this->_params,
2086 array(
2087 'contribution_recur_id' => $contributionRecur['id'],
2088 'is_test' => 1,
2089 ))
2090 );
2091
2092 $repeatedContribution = $this->callAPISuccess('contribution', 'repeattransaction', array(
2093 'contribution_recur_id' => $contributionRecur['id'],
2094 'contribution_status_id' => 'Completed',
2095 'trxn_id' => uniqid(),
2096 ));
2097
2098 $this->assertEquals($contributionRecur['values'][1]['is_test'], $repeatedContribution['values'][2]['is_test']);
2099 $this->quickCleanUpFinancialEntities();
2100 }
d2334242
PH
2101 /**
2102 * CRM-19945 Tests repeattransaction is using a completed contribution for the template.
7c3f3d59 2103 *
d2334242
PH
2104 * ( Tests membership is renewed after repeattransaction. )
2105 */
2106 public function testRepeatTransactionUsesCompleted() {
2107 list($originalContribution, $membership) = $this->setUpAutoRenewMembership();
2108
2109 $this->callAPISuccess('contribution', 'create', array(
7c3f3d59 2110 'contact_id' => $originalContribution['values'][1]['contact_id'],
2111 'financial_type_id' => $originalContribution['values'][1]['financial_type_id'],
2112 'total_amount' => $originalContribution['values'][1]['total_amount'],
2113 'contribution_recur_id' => $originalContribution['values'][1]['contribution_recur_id'],
2114 'contribution_status_id' => "Failed",
d2334242
PH
2115 ));
2116
2117 $this->callAPISuccess('membership', 'create', array(
2118 'id' => $membership['id'],
2119 'end_date' => 'yesterday',
2120 'status_id' => 4,
2121 ));
2122
7c3f3d59 2123 $contribution = $this->callAPISuccess('contribution', 'repeattransaction', array(
d2334242
PH
2124 'contribution_recur_id' => $originalContribution['values'][1]['contribution_recur_id'],
2125 'contribution_status_id' => 'Completed',
7c3f3d59 2126 'trxn_id' => 'bobsled',
d2334242
PH
2127 ));
2128
7c3f3d59 2129 $membershipStatusId = $this->callAPISuccess('membership', 'getvalue', array(
d2334242
PH
2130 'id' => $membership['id'],
2131 'return' => 'status_id',
2132 ));
2133
7c3f3d59 2134 $this->assertEquals('New', CRM_Core_PseudoConstant::getLabel('CRM_Member_BAO_Membership', 'status_id', $membershipStatusId));
2135
2136 $lineItem = $this->callAPISuccessGetSingle('LineItem', array('contribution_id' => $contribution['id']));
2137 $this->assertEquals('civicrm_membership', $lineItem['entity_table']);
2138 $this->callAPISuccessGetCount('MembershipPayment', array('membership_id' => $membership['id']));
d2334242
PH
2139 $this->quickCleanUpFinancialEntities();
2140 $this->contactDelete($originalContribution['values'][1]['contact_id']);
2141 }
28124368 2142
c03f1689
EM
2143 /**
2144 * CRM-16397 test appropriate action if total amount has changed for single line items.
2145 */
2146 public function testRepeatTransactionAlteredAmount() {
2147 $paymentProcessorID = $this->paymentProcessorCreate();
c03f1689
EM
2148 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array(
2149 'contact_id' => $this->_individualId,
2150 'installments' => '12',
2151 'frequency_interval' => '1',
2152 'amount' => '500',
2153 'contribution_status_id' => 1,
2154 'start_date' => '2012-01-01 00:00:00',
2155 'currency' => 'USD',
2156 'frequency_unit' => 'month',
2157 'payment_processor_id' => $paymentProcessorID,
2158 ));
2159 $originalContribution = $this->callAPISuccess('contribution', 'create', array_merge(
2160 $this->_params,
2161 array(
2162 'contribution_recur_id' => $contributionRecur['id'],
c03f1689
EM
2163 ))
2164 );
2165
2166 $this->callAPISuccess('contribution', 'repeattransaction', array(
2167 'original_contribution_id' => $originalContribution['id'],
2168 'contribution_status_id' => 'Completed',
2169 'trxn_id' => uniqid(),
2170 'total_amount' => '400',
2171 'fee_amount' => 50,
c03f1689 2172 ));
0e6ccb2e 2173
c03f1689
EM
2174 $lineItemParams = array(
2175 'entity_id' => $originalContribution['id'],
2176 'sequential' => 1,
2177 'return' => array(
2178 'entity_table',
2179 'qty',
2180 'unit_price',
2181 'line_total',
2182 'label',
2183 'financial_type_id',
2184 'deductible_amount',
2185 'price_field_value_id',
2186 'price_field_id',
2187 ),
2188 );
2189 $this->callAPISuccessGetSingle('contribution', array(
2190 'total_amount' => 400,
c03f1689
EM
2191 'fee_amount' => 50,
2192 'net_amount' => 350,
2193 ));
2194 $lineItem1 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
2195 'entity_id' => $originalContribution['id'],
2196 )));
2197 $expectedLineItem = array_merge(
2198 $lineItem1['values'][0], array(
2199 'line_total' => '400.00',
2200 'unit_price' => '400.00',
542d9e2c
EM
2201 )
2202 );
c03f1689
EM
2203
2204 $lineItem2 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
2205 'entity_id' => $originalContribution['id'] + 1,
2206 )));
0e6ccb2e 2207
c03f1689
EM
2208 unset($expectedLineItem['id'], $expectedLineItem['entity_id']);
2209 unset($lineItem2['values'][0]['id'], $lineItem2['values'][0]['entity_id']);
2210 $this->assertEquals($expectedLineItem, $lineItem2['values'][0]);
c02c17df 2211 }
c03f1689 2212
3c49d90c 2213 /**
2214 * CRM-17718 test appropriate action if financial type has changed for single line items.
2215 */
2216 public function testRepeatTransactionPassedInFinancialType() {
2217 $originalContribution = $this->setUpRecurringContribution();
2218
2219 $this->callAPISuccess('contribution', 'repeattransaction', array(
2220 'original_contribution_id' => $originalContribution['id'],
2221 'contribution_status_id' => 'Completed',
2222 'trxn_id' => uniqid(),
2223 'financial_type_id' => 2,
2224 ));
2225 $lineItemParams = array(
2226 'entity_id' => $originalContribution['id'],
2227 'sequential' => 1,
2228 'return' => array(
2229 'entity_table',
2230 'qty',
2231 'unit_price',
2232 'line_total',
2233 'label',
2234 'financial_type_id',
2235 'deductible_amount',
2236 'price_field_value_id',
2237 'price_field_id',
2238 ),
2239 );
2240
2241 $this->callAPISuccessGetSingle('contribution', array(
2242 'total_amount' => 100,
2243 'financial_type_id' => 2,
2244 ));
2245 $lineItem1 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
2246 'entity_id' => $originalContribution['id'],
2247 )));
2248 $expectedLineItem = array_merge(
2249 $lineItem1['values'][0], array(
2250 'line_total' => '100.00',
2251 'unit_price' => '100.00',
2252 'financial_type_id' => 2,
257ab382 2253 'contribution_type_id' => 2,
3c49d90c 2254 )
2255 );
3c49d90c 2256 $lineItem2 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
2257 'entity_id' => $originalContribution['id'] + 1,
2258 )));
2259 unset($expectedLineItem['id'], $expectedLineItem['entity_id']);
2260 unset($lineItem2['values'][0]['id'], $lineItem2['values'][0]['entity_id']);
2261 $this->assertEquals($expectedLineItem, $lineItem2['values'][0]);
2262 }
2263
7f4ef731 2264 /**
2265 * CRM-17718 test appropriate action if financial type has changed for single line items.
2266 */
2267 public function testRepeatTransactionUpdatedFinancialType() {
2268 $originalContribution = $this->setUpRecurringContribution(array(), array('financial_type_id' => 2));
2269
2270 $this->callAPISuccess('contribution', 'repeattransaction', array(
2271 'contribution_recur_id' => $originalContribution['id'],
2272 'contribution_status_id' => 'Completed',
2273 'trxn_id' => uniqid(),
2274 ));
2275 $lineItemParams = array(
2276 'entity_id' => $originalContribution['id'],
2277 'sequential' => 1,
2278 'return' => array(
2279 'entity_table',
2280 'qty',
2281 'unit_price',
2282 'line_total',
2283 'label',
2284 'financial_type_id',
2285 'deductible_amount',
2286 'price_field_value_id',
2287 'price_field_id',
2288 ),
2289 );
2290
2291 $this->callAPISuccessGetSingle('contribution', array(
2292 'total_amount' => 100,
2293 'financial_type_id' => 2,
2294 ));
2295 $lineItem1 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
2296 'entity_id' => $originalContribution['id'],
2297 )));
2298 $expectedLineItem = array_merge(
2299 $lineItem1['values'][0], array(
2300 'line_total' => '100.00',
2301 'unit_price' => '100.00',
2302 'financial_type_id' => 2,
257ab382 2303 'contribution_type_id' => 2,
7f4ef731 2304 )
2305 );
2306
2307 $lineItem2 = $this->callAPISuccess('line_item', 'get', array_merge($lineItemParams, array(
2308 'entity_id' => $originalContribution['id'] + 1,
2309 )));
2310 unset($expectedLineItem['id'], $expectedLineItem['entity_id']);
2311 unset($lineItem2['values'][0]['id'], $lineItem2['values'][0]['entity_id']);
2312 $this->assertEquals($expectedLineItem, $lineItem2['values'][0]);
2313 }
2314
c02c17df 2315 /**
1eade77d 2316 * CRM-16397 test appropriate action if campaign has been passed in.
c02c17df 2317 */
2318 public function testRepeatTransactionPassedInCampaign() {
2319 $paymentProcessorID = $this->paymentProcessorCreate();
2320 $campaignID = $this->campaignCreate();
2321 $campaignID2 = $this->campaignCreate();
2322 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array(
2323 'contact_id' => $this->_individualId,
2324 'installments' => '12',
2325 'frequency_interval' => '1',
2326 'amount' => '100',
2327 'contribution_status_id' => 1,
2328 'start_date' => '2012-01-01 00:00:00',
2329 'currency' => 'USD',
2330 'frequency_unit' => 'month',
2331 'payment_processor_id' => $paymentProcessorID,
2332 ));
2333 $originalContribution = $this->callAPISuccess('contribution', 'create', array_merge(
2334 $this->_params,
2335 array(
2336 'contribution_recur_id' => $contributionRecur['id'],
2337 'campaign_id' => $campaignID,
2338 ))
2339 );
2340
2341 $this->callAPISuccess('contribution', 'repeattransaction', array(
2342 'original_contribution_id' => $originalContribution['id'],
2343 'contribution_status_id' => 'Completed',
2344 'trxn_id' => uniqid(),
2345 'campaign_id' => $campaignID2,
2346 ));
2347
2348 $this->callAPISuccessGetSingle('contribution', array(
2349 'total_amount' => 100,
2350 'campaign_id' => $campaignID2,
2351 ));
2352 }
2353
2354 /**
2355 * CRM-17718 campaign stored on contribution recur gets priority.
2356 *
2357 * This reflects the fact we permit people to update them.
2358 */
2359 public function testRepeatTransactionUpdatedCampaign() {
2360 $paymentProcessorID = $this->paymentProcessorCreate();
2361 $campaignID = $this->campaignCreate();
2362 $campaignID2 = $this->campaignCreate();
2363 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array(
2364 'contact_id' => $this->_individualId,
2365 'installments' => '12',
2366 'frequency_interval' => '1',
2367 'amount' => '100',
2368 'contribution_status_id' => 1,
2369 'start_date' => '2012-01-01 00:00:00',
2370 'currency' => 'USD',
2371 'frequency_unit' => 'month',
2372 'payment_processor_id' => $paymentProcessorID,
2373 'campaign_id' => $campaignID,
2374 ));
2375 $originalContribution = $this->callAPISuccess('contribution', 'create', array_merge(
2376 $this->_params,
2377 array(
2378 'contribution_recur_id' => $contributionRecur['id'],
2379 'campaign_id' => $campaignID2,
2380 ))
2381 );
2382
2383 $this->callAPISuccess('contribution', 'repeattransaction', array(
2384 'original_contribution_id' => $originalContribution['id'],
2385 'contribution_status_id' => 'Completed',
2386 'trxn_id' => uniqid(),
2387 ));
2388
2389 $this->callAPISuccessGetSingle('contribution', array(
2390 'total_amount' => 100,
2391 'campaign_id' => $campaignID,
2392 ));
c03f1689
EM
2393 }
2394
2936c3b5
EM
2395 /**
2396 * Test completing a transaction does not 'mess' with net amount (CRM-15960).
2397 */
2398 public function testCompleteTransactionNetAmountOK() {
2399 $this->createLoggedInUser();
2400 $params = array_merge($this->_params, array('contribution_status_id' => 2));
2401 unset($params['net_amount']);
2402 $contribution = $this->callAPISuccess('contribution', 'create', $params);
2403 $this->callAPISuccess('contribution', 'completetransaction', array(
2404 'id' => $contribution['id'],
2405 ));
2406 $contribution = $this->callAPISuccess('contribution', 'getsingle', array('id' => $contribution['id']));
2407 $this->assertEquals('Completed', $contribution['contribution_status']);
2408 $this->assertTrue(($contribution['total_amount'] - $contribution['net_amount']) == $contribution['fee_amount']);
2409 }
2410
46fa5206 2411 /**
1e52837d 2412 * CRM-14151 - Test completing a transaction via the API.
46fa5206 2413 */
00be9182 2414 public function testCompleteTransactionWithReceiptDateSet() {
76e8d9c4 2415 $this->swapMessageTemplateForTestTemplate();
5896d037 2416 $mut = new CiviMailUtils($this, TRUE);
46fa5206 2417 $this->createLoggedInUser();
6c6e6187
TO
2418 $params = array_merge($this->_params, array('contribution_status_id' => 2, 'receipt_date' => 'now'));
2419 $contribution = $this->callAPISuccess('contribution', 'create', $params);
7104593e 2420 $this->callAPISuccess('contribution', 'completetransaction', array('id' => $contribution['id'], 'trxn_date' => date('Y-m-d')));
6c6e6187 2421 $contribution = $this->callAPISuccess('contribution', 'get', array('id' => $contribution['id'], 'sequential' => 1));
46fa5206 2422 $this->assertEquals('Completed', $contribution['values'][0]['contribution_status']);
7104593e 2423 $this->assertEquals(date('Y-m-d'), date('Y-m-d', strtotime($contribution['values'][0]['receive_date'])));
46fa5206
EM
2424 $mut->checkMailLog(array(
2425 'Receipt - Contribution',
76e8d9c4 2426 'receipt_date:::' . date('Ymd'),
46fa5206 2427 ));
0efa8efe 2428 $mut->stop();
76e8d9c4 2429 $this->revertTemplateToReservedTemplate();
0efa8efe 2430 }
2431
e2ca457d
KG
2432 /**
2433 * CRM-1960 - Test to ensure that completetransaction respects the is_email_receipt setting
2434 */
2435 public function testCompleteTransactionWithEmailReceiptInput() {
d891a273 2436 $contributionPage = $this->createReceiptableContributionPage();
2437
e2ca457d
KG
2438 $this->_params['contribution_page_id'] = $contributionPage['id'];
2439 $params = array_merge($this->_params, array('contribution_status_id' => 2));
2440 $contribution = $this->callAPISuccess('contribution', 'create', $params);
2441 // Complete the transaction overriding is_email_receipt to = FALSE
2442 $this->callAPISuccess('contribution', 'completetransaction', array(
2443 'id' => $contribution['id'],
2444 'trxn_date' => date('2011-04-09'),
2445 'trxn_id' => 'kazam',
2446 'is_email_receipt' => 0,
2447 ));
2448 // Check if a receipt was issued
2449 $receipt_date = $this->callAPISuccess('Contribution', 'getvalue', array('id' => $contribution['id'], 'return' => 'receipt_date'));
2450 $this->assertEquals('', $receipt_date);
2451 }
3b8c739e 2452
d891a273 2453 /**
2454 * Test that $is_recur is assigned to the receipt.
2455 */
2456 public function testCompleteTransactionForRecurring() {
2457
2458 $this->swapMessageTemplateForTestTemplate();
2459 $recurring = $this->setUpRecurringContribution();
2460 $contributionPage = $this->createReceiptableContributionPage(array('is_recur' => TRUE, 'recur_frequency_unit' => 'month', 'recur_interval' => 1));
2461
2462 $this->_params['contribution_page_id'] = $contributionPage['id'];
2463 $this->_params['contribution_recur_id'] = $recurring['id'];
2464
2465 $contribution = $this->setUpForCompleteTransaction();
2466
2467 $this->callAPISuccess('contribution', 'completetransaction', array(
2468 'id' => $contribution['id'],
2469 'trxn_date' => date('2011-04-09'),
2470 'trxn_id' => 'kazam',
2471 'is_email_receipt' => 1,
2472 ));
2473
2474 $this->mut->checkMailLog(array(
2475 'is_recur:::1',
2476 'cancelSubscriptionUrl:::http://dummy.com',
2477 ));
2478 $this->mut->stop();
2479 $this->revertTemplateToReservedTemplate();
2480 }
55df1211
AS
2481 /**
2482 * CRM-19710 - Test to ensure that completetransaction respects the input for is_email_receipt setting.
2483 *
2484 * If passed in it will override the default from contribution page.
2485 */
2486 public function testCompleteTransactionWithEmailReceiptInputTrue() {
2487 $mut = new CiviMailUtils($this, TRUE);
2488 $this->createLoggedInUser();
2489 // Create a Contribution Page with is_email_receipt = FALSE
2490 $contributionPage = $this->callAPISuccess('ContributionPage', 'create', array(
2491 'receipt_from_name' => 'Mickey Mouse',
2492 'receipt_from_email' => 'mickey@mouse.com',
2493 'title' => "Test Contribution Page",
2494 'financial_type_id' => 1,
2495 'currency' => 'CAD',
2496 'is_monetary' => TRUE,
2497 'is_email_receipt' => 0,
2498 ));
2499 $this->_params['contribution_page_id'] = $contributionPage['id'];
2500 $params = array_merge($this->_params, array('contribution_status_id' => 2, 'receipt_date' => 'now'));
2501 $contribution = $this->callAPISuccess('contribution', 'create', $params);
2502 // Complete the transaction overriding is_email_receipt to = TRUE
2503 $this->callAPISuccess('contribution', 'completetransaction', array(
2504 'id' => $contribution['id'],
2505 'is_email_receipt' => 1,
2506 ));
2507 $mut->checkMailLog(array(
2508 'Please print this receipt for your records.',
2509 ));
2510 $mut->stop();
2511 }
d891a273 2512
b80f2ad1
E
2513 /**
2514 * Complete the transaction using the template with all the possible.
2515 */
2516 public function testCompleteTransactionWithTestTemplate() {
2517 $this->swapMessageTemplateForTestTemplate();
ec7e3954 2518 $contribution = $this->setUpForCompleteTransaction();
b80f2ad1
E
2519 $this->callAPISuccess('contribution', 'completetransaction', array(
2520 'id' => $contribution['id'],
2521 'trxn_date' => date('2011-04-09'),
2522 'trxn_id' => 'kazam',
2523 ));
2524 $receive_date = $this->callAPISuccess('Contribution', 'getvalue', array('id' => $contribution['id'], 'return' => 'receive_date'));
ec7e3954 2525 $this->mut->checkMailLog(array(
b80f2ad1
E
2526 'email:::anthony_anderson@civicrm.org',
2527 'is_monetary:::1',
2528 'amount:::100.00',
2529 'currency:::USD',
2530 'receive_date:::' . date('Ymd', strtotime($receive_date)),
2531 'receipt_date:::' . date('Ymd'),
2532 'contributeMode:::notify',
2533 'title:::Contribution',
2534 'displayName:::Mr. Anthony Anderson II',
2535 'trxn_id:::kazam',
ec7e3954 2536 'contactID:::' . $this->_params['contact_id'],
b80f2ad1
E
2537 'contributionID:::' . $contribution['id'],
2538 'financialTypeId:::1',
2539 'financialTypeName:::Donation',
2540 ));
ec7e3954 2541 $this->mut->stop();
b80f2ad1
E
2542 $this->revertTemplateToReservedTemplate();
2543 }
2544
ec7e3954
E
2545 /**
2546 * Complete the transaction using the template with all the possible.
2547 */
2548 public function testCompleteTransactionContributionPageFromAddress() {
2549 $contributionPage = $this->callAPISuccess('ContributionPage', 'create', array(
2550 'receipt_from_name' => 'Mickey Mouse',
2551 'receipt_from_email' => 'mickey@mouse.com',
2552 'title' => "Test Contribution Page",
2553 'financial_type_id' => 1,
2554 'currency' => 'NZD',
2555 'goal_amount' => 50,
2556 'is_pay_later' => 1,
2557 'is_monetary' => TRUE,
2558 'is_email_receipt' => TRUE,
2559 ));
2560 $this->_params['contribution_page_id'] = $contributionPage['id'];
2561 $contribution = $this->setUpForCompleteTransaction();
2562 $this->callAPISuccess('contribution', 'completetransaction', array('id' => $contribution['id']));
2563 $this->mut->checkMailLog(array(
2564 'mickey@mouse.com',
2565 'Mickey Mouse <',
2566 ));
2567 $this->mut->stop();
2568 }
2569
91259407 2570 /**
2571 * Test completing first transaction in a recurring series.
2572 *
2573 * The status should be set to 'in progress' and the next scheduled payment date calculated.
050e11d5 2574 *
2575 * @dataProvider getScheduledDateData
2576 *
2577 * @param array $dataSet
2578 *
2579 * @throws \Exception
91259407 2580 */
050e11d5 2581 public function testCompleteTransactionSetStatusToInProgress($dataSet) {
91259407 2582 $paymentProcessorID = $this->paymentProcessorCreate();
050e11d5 2583 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array_merge(array(
91259407 2584 'contact_id' => $this->_individualId,
050e11d5 2585 'installments' => '2',
91259407 2586 'frequency_interval' => '1',
2587 'amount' => '500',
2588 'contribution_status_id' => 'Pending',
2589 'start_date' => '2012-01-01 00:00:00',
2590 'currency' => 'USD',
2591 'frequency_unit' => 'month',
2592 'payment_processor_id' => $paymentProcessorID,
050e11d5 2593 ), $dataSet['data']));
91259407 2594 $contribution = $this->callAPISuccess('contribution', 'create', array_merge(
2595 $this->_params,
2596 array(
2597 'contribution_recur_id' => $contributionRecur['id'],
2598 'contribution_status_id' => 'Pending',
050e11d5 2599 'receive_date' => $dataSet['receive_date'],
91259407 2600 ))
2601 );
050e11d5 2602 $this->callAPISuccess('Contribution', 'completetransaction', array(
2603 'id' => $contribution,
2604 'receive_date' => $dataSet['receive_date'],
2605 ));
91259407 2606 $contributionRecur = $this->callAPISuccessGetSingle('ContributionRecur', array(
2607 'id' => $contributionRecur['id'],
2608 'return' => array('next_sched_contribution_date', 'contribution_status_id'),
2609 ));
2610 $this->assertEquals(5, $contributionRecur['contribution_status_id']);
050e11d5 2611 $this->assertEquals($dataSet['expected'], $contributionRecur['next_sched_contribution_date']);
2612 $this->callAPISuccess('Contribution', 'create', array_merge(
2613 $this->_params,
2614 array(
2615 'contribution_recur_id' => $contributionRecur['id'],
2616 'contribution_status_id' => 'Completed',
2617 )
2618 ));
2619 $contributionRecur = $this->callAPISuccessGetSingle('ContributionRecur', array(
2620 'id' => $contributionRecur['id'],
2621 'return' => array('contribution_status_id'),
2622 ));
2623 $this->assertEquals(1, $contributionRecur['contribution_status_id']);
2624 }
2625
2626 /**
2627 * Get dates for testing.
2628 *
2629 * @return array
2630 */
2631 public function getScheduledDateData() {
2632 $result = array();
2633 $result[]['2016-08-31-1-month'] = array(
2634 'data' => array(
2635 'start_date' => '2016-08-31',
2636 'frequency_interval' => 1,
2637 'frequency_unit' => 'month',
2638 ),
2639 'receive_date' => '2016-08-31',
2640 'expected' => '2016-10-01 00:00:00',
2641 );
2642 $result[]['2012-01-01-1-month'] = array(
2643 'data' => array(
2644 'start_date' => '2012-01-01',
2645 'frequency_interval' => 1,
2646 'frequency_unit' => 'month',
2647 ),
2648 'receive_date' => '2012-01-01',
2649 'expected' => '2012-02-01 00:00:00',
2650 );
2651 $result[]['2012-01-01-1-month'] = array(
2652 'data' => array(
2653 'start_date' => '2012-01-01',
2654 'frequency_interval' => 1,
2655 'frequency_unit' => 'month',
2656 ),
2657 'receive_date' => '2012-02-29',
2658 'expected' => '2012-03-29 00:00:00',
2659 );
2660 return $result;
91259407 2661 }
2662
294cc627 2663 /**
2664 * Test completing a pledge with the completeTransaction api..
2665 *
2666 * Note that we are creating a logged in user because email goes out from
2667 * that person.
2668 */
2669 public function testCompleteTransactionUpdatePledgePayment() {
9f9fa558 2670 $this->swapMessageTemplateForTestTemplate();
294cc627 2671 $mut = new CiviMailUtils($this, TRUE);
2672 $mut->clearMessages();
2673 $this->createLoggedInUser();
2674 $contributionID = $this->createPendingPledgeContribution();
2675 $this->callAPISuccess('contribution', 'completetransaction', array(
2676 'id' => $contributionID,
2677 'trxn_date' => '1 Feb 2013',
2678 ));
2679 $pledge = $this->callAPISuccessGetSingle('Pledge', array(
2680 'id' => $this->_ids['pledge'],
2681 ));
2682 $this->assertEquals('Completed', $pledge['pledge_status']);
2683
2684 $status = $this->callAPISuccessGetValue('PledgePayment', array(
2685 'pledge_id' => $this->_ids['pledge'],
2686 'return' => 'status_id',
2687 ));
2688 $this->assertEquals(1, $status);
2689 $mut->checkMailLog(array(
9f9fa558
EM
2690 'amount:::500.00',
2691 'receive_date:::20130201000000',
76e8d9c4 2692 "receipt_date:::\n",
294cc627 2693 ));
2694 $mut->stop();
9f9fa558 2695 $this->revertTemplateToReservedTemplate();
294cc627 2696 }
2697
0efa8efe 2698 /**
eceb18cc 2699 * Test completing a transaction with an event via the API.
0efa8efe 2700 *
2701 * Note that we are creating a logged in user because email goes out from
2702 * that person
2703 */
00be9182 2704 public function testCompleteTransactionWithParticipantRecord() {
5896d037 2705 $mut = new CiviMailUtils($this, TRUE);
0efa8efe 2706 $mut->clearMessages();
2707 $this->createLoggedInUser();
2708 $contributionID = $this->createPendingParticipantContribution();
66d3f9be 2709 $this->callAPISuccess('contribution', 'completetransaction', array(
5896d037
TO
2710 'id' => $contributionID,
2711 )
0efa8efe 2712 );
5896d037 2713 $participantStatus = $this->callAPISuccessGetValue('participant', array(
92915c55
TO
2714 'id' => $this->_ids['participant'],
2715 'return' => 'participant_status_id',
2716 ));
0efa8efe 2717 $this->assertEquals(1, $participantStatus);
2718 $mut->checkMailLog(array(
2719 'Annual CiviCRM meet',
2720 'Event',
afc59fef 2721 'This letter is a confirmation that your registration has been received and your status has been updated to Registered.',
0efa8efe 2722 ));
66d3f9be
EM
2723 $mut->stop();
2724 }
2725
2726 /**
eceb18cc 2727 * Test membership is renewed when transaction completed.
66d3f9be 2728 */
00be9182 2729 public function testCompleteTransactionMembershipPriceSet() {
66d3f9be 2730 $this->createPriceSetWithPage('membership');
4ff927bc 2731 $stateOfGrace = $this->callAPISuccess('MembershipStatus', 'getvalue', array(
2732 'name' => 'Grace',
2733 'return' => 'id')
2734 );
66d3f9be 2735 $this->setUpPendingContribution($this->_ids['price_field_value'][0]);
4ff927bc 2736 $membership = $this->callAPISuccess('membership', 'getsingle', array('id' => $this->_ids['membership']));
2737 $logs = $this->callAPISuccess('MembershipLog', 'get', array(
2738 'membership_id' => $this->_ids['membership'],
2739 ));
2740 $this->assertEquals(1, $logs['count']);
2741 $this->assertEquals($stateOfGrace, $membership['status_id']);
0445e085 2742 $contribution = $this->callAPISuccess('contribution', 'completetransaction', array('id' => $this->_ids['contribution']));
66d3f9be
EM
2743 $membership = $this->callAPISuccess('membership', 'getsingle', array('id' => $this->_ids['membership']));
2744 $this->assertEquals(date('Y-m-d', strtotime('yesterday + 1 year')), $membership['end_date']);
4ff927bc 2745 $this->callAPISuccessGetSingle('LineItem', array(
2746 'entity_id' => $this->_ids['membership'],
2747 'entity_table' => 'civicrm_membership',
2748 ));
2749 $logs = $this->callAPISuccess('MembershipLog', 'get', array(
2750 'membership_id' => $this->_ids['membership'],
2751 ));
0445e085 2752 //CRM-19600: Ensure that 'Membership Renewal' activity is created after successful membership regsitration
2753 $activity = $this->callAPISuccess('Activity', 'get', array(
2754 'activity_type_id' => 'Membership Renewal',
2755 'source_record_id' => $contribution['id'],
2756 ));
2757 $this->assertEquals(1, $activity['count']);
4ff927bc 2758 $this->assertEquals(2, $logs['count']);
2759 $this->assertNotEquals($stateOfGrace, $logs['values'][2]['status_id']);
66d3f9be
EM
2760 $this->cleanUpAfterPriceSets();
2761 }
2762
0f07bb06 2763 /**
2764 * Test if renewal activity is create after changing Pending contribution to Completed via offline
2765 */
2766 public function testPendingToCompleteContribution() {
2767 $contributionPage = $this->createPriceSetWithPage('membership');
2768 $stateOfGrace = $this->callAPISuccess('MembershipStatus', 'getvalue', array(
2769 'name' => 'Grace',
2770 'return' => 'id')
2771 );
2772 $this->setUpPendingContribution($this->_ids['price_field_value'][0]);
2773 $this->callAPISuccess('membership', 'getsingle', array('id' => $this->_ids['membership']));
2774
2775 // change pending contribution to completed
2776 $form = new CRM_Contribute_Form_Contribution();
2777 $error = FALSE;
2778 $form->_params = array(
2779 'id' => $this->_ids['contribution'],
2780 'total_amount' => 20,
2781 'net_amount' => 20,
2782 'fee_amount' => 0,
2783 'financial_type_id' => 1,
2784 'receive_date' => '04/21/2015',
2785 'receive_date_time' => '11:27PM',
2786 'contact_id' => $this->_individualId,
2787 'contribution_status_id' => 1,
2788 'billing_middle_name' => '',
2789 'billing_last_name' => 'Adams',
2790 'billing_street_address-5' => '790L Lincoln St S',
2791 'billing_city-5' => 'Maryknoll',
2792 'billing_state_province_id-5' => 1031,
2793 'billing_postal_code-5' => 10545,
2794 'billing_country_id-5' => 1228,
2795 'frequency_interval' => 1,
2796 'frequency_unit' => 'month',
2797 'installments' => '',
2798 'hidden_AdditionalDetail' => 1,
2799 'hidden_Premium' => 1,
2800 'from_email_address' => '"civi45" <civi45@civicrm.com>',
2801 'receipt_date' => '',
2802 'receipt_date_time' => '',
2803 'payment_processor_id' => $this->paymentProcessorID,
2804 'currency' => 'USD',
2805 'contribution_page_id' => $this->_ids['contribution_page'],
2806 'contribution_mode' => 'membership',
2807 'source' => 'Membership Signup and Renewal',
2808 );
2809 try {
2810 $form->testSubmit($form->_params, CRM_Core_Action::UPDATE);
2811 }
2812 catch (Civi\Payment\Exception\PaymentProcessorException $e) {
2813 $error = TRUE;
2814 }
2815 $activity = $this->callAPISuccess('Activity', 'get', array(
2816 'activity_type_id' => 'Membership Renewal',
2817 'source_record_id' => $this->_ids['contribution'],
2818 ));
2819 $this->assertEquals(1, $activity['count']);
2820 }
2821
66d3f9be 2822 /**
eceb18cc 2823 * Test membership is renewed when transaction completed.
66d3f9be 2824 */
00be9182 2825 public function testCompleteTransactionMembershipPriceSetTwoTerms() {
66d3f9be
EM
2826 $this->createPriceSetWithPage('membership');
2827 $this->setUpPendingContribution($this->_ids['price_field_value'][1]);
6c6e6187 2828 $this->callAPISuccess('contribution', 'completetransaction', array('id' => $this->_ids['contribution']));
66d3f9be
EM
2829 $membership = $this->callAPISuccess('membership', 'getsingle', array('id' => $this->_ids['membership']));
2830 $this->assertEquals(date('Y-m-d', strtotime('yesterday + 2 years')), $membership['end_date']);
2831 $this->cleanUpAfterPriceSets();
2832 }
2833
00be9182 2834 public function cleanUpAfterPriceSets() {
1cf3c2b1 2835 $this->quickCleanUpFinancialEntities();
66d3f9be 2836 $this->contactDelete($this->_ids['contact']);
66d3f9be
EM
2837 }
2838
66d3f9be 2839 /**
eceb18cc 2840 * Set up a pending transaction with a specific price field id.
1e52837d 2841 *
100fef9d 2842 * @param int $priceFieldValueID
66d3f9be 2843 */
5896d037 2844 public function setUpPendingContribution($priceFieldValueID) {
66d3f9be
EM
2845 $contactID = $this->individualCreate();
2846 $membership = $this->callAPISuccess('membership', 'create', array(
2847 'contact_id' => $contactID,
2848 'membership_type_id' => $this->_ids['membership_type'],
2849 'start_date' => 'yesterday - 1 year',
2850 'end_date' => 'yesterday',
4ff927bc 2851 'join_date' => 'yesterday - 1 year',
66d3f9be
EM
2852 ));
2853 $contribution = $this->callAPISuccess('contribution', 'create', array(
2854 'domain_id' => 1,
2855 'contact_id' => $contactID,
2856 'receive_date' => date('Ymd'),
0f07bb06 2857 'total_amount' => 20.00,
66d3f9be
EM
2858 'financial_type_id' => 1,
2859 'payment_instrument_id' => 'Credit Card',
2860 'non_deductible_amount' => 10.00,
2861 'trxn_id' => 'jdhfi88',
2862 'invoice_id' => 'djfhiewuyr',
2863 'source' => 'SSF',
2864 'contribution_status_id' => 2,
2865 'contribution_page_id' => $this->_ids['contribution_page'],
2866 'api.membership_payment.create' => array('membership_id' => $membership['id']),
2867 ));
2868
2869 $this->callAPISuccess('line_item', 'create', array(
2870 'entity_id' => $contribution['id'],
2871 'entity_table' => 'civicrm_contribution',
1274acef 2872 'contribution_id' => $contribution['id'],
66d3f9be
EM
2873 'price_field_id' => $this->_ids['price_field'][0],
2874 'qty' => 1,
2875 'unit_price' => 20,
2876 'line_total' => 20,
2877 'financial_type_id' => 1,
2878 'price_field_value_id' => $priceFieldValueID,
2879 ));
2880 $this->_ids['contact'] = $contactID;
2881 $this->_ids['contribution'] = $contribution['id'];
2882 $this->_ids['membership'] = $membership['id'];
0efa8efe 2883 }
2884
2f45e1c2 2885 /**
eceb18cc 2886 * Test sending a mail via the API.
6a488035 2887 */
00be9182 2888 public function testSendMail() {
5896d037 2889 $mut = new CiviMailUtils($this, TRUE);
6c6e6187 2890 $contribution = $this->callAPISuccess('contribution', 'create', $this->_params);
858d0bf8 2891 $this->callAPISuccess('contribution', 'sendconfirmation', array(
5896d037
TO
2892 'id' => $contribution['id'],
2893 'receipt_from_email' => 'api@civicrm.org',
6a488035
TO
2894 )
2895 );
6a488035
TO
2896 $mut->checkMailLog(array(
2897 '$ 100.00',
2898 'Contribution Information',
2899 'Please print this confirmation for your records',
2900 ), array(
21dfd5f5 2901 'Event',
6a488035
TO
2902 )
2903 );
128d44a1 2904
2905 $this->checkCreditCardDetails($mut, $contribution['id']);
6a488035
TO
2906 $mut->stop();
2907 }
2908
128d44a1 2909 /**
2910 * Check credit card details in sent mail via API
2911 *
2912 * @param $mut obj CiviMailUtils instance
2913 * @param int $contributionID Contribution ID
2914 *
2915 */
2916 public function checkCreditCardDetails($mut, $contributionID) {
2917 $contribution = $this->callAPISuccess('contribution', 'create', $this->_params);
2918 $this->callAPISuccess('contribution', 'sendconfirmation', array(
2919 'id' => $contributionID,
2920 'receipt_from_email' => 'api@civicrm.org',
2921 'payment_processor_id' => $this->paymentProcessorID,
2922 )
2923 );
2924 $mut->checkMailLog(array(
2925 'Credit Card Information', // credit card header
2926 'Billing Name and Address', // billing header
2927 'anthony_anderson@civicrm.org', // billing name
2928 ), array(
2929 'Event',
2930 )
2931 );
2932 }
2933
2f45e1c2 2934 /**
eceb18cc 2935 * Test sending a mail via the API.
6a488035 2936 */
00be9182 2937 public function testSendMailEvent() {
5896d037 2938 $mut = new CiviMailUtils($this, TRUE);
6c6e6187 2939 $contribution = $this->callAPISuccess('contribution', 'create', $this->_params);
2f45e1c2 2940 $event = $this->eventCreate(array(
6a488035
TO
2941 'is_email_confirm' => 1,
2942 'confirm_from_email' => 'test@civicrm.org',
2943 ));
2944 $this->_eventID = $event['id'];
2945 $participantParams = array(
2946 'contact_id' => $this->_individualId,
2947 'event_id' => $this->_eventID,
2948 'status_id' => 1,
2949 'role_id' => 1,
2950 // to ensure it matches later on
2951 'register_date' => '2007-07-21 00:00:00',
2952 'source' => 'Online Event Registration: API Testing',
4ab7d517 2953
6a488035 2954 );
2f45e1c2 2955 $participant = $this->callAPISuccess('participant', 'create', $participantParams);
2956 $this->callAPISuccess('participant_payment', 'create', array(
6a488035
TO
2957 'participant_id' => $participant['id'],
2958 'contribution_id' => $contribution['id'],
2f45e1c2 2959 ));
66d3f9be 2960 $this->callAPISuccess('contribution', 'sendconfirmation', array(
5896d037
TO
2961 'id' => $contribution['id'],
2962 'receipt_from_email' => 'api@civicrm.org',
6a488035
TO
2963 )
2964 );
2965
6a488035
TO
2966 $mut->checkMailLog(array(
2967 'Annual CiviCRM meet',
2968 'Event',
2969 'To: "Mr. Anthony Anderson II" <anthony_anderson@civicrm.org>',
6c6e6187 2970 ), array()
6a488035
TO
2971 );
2972 $mut->stop();
2973 }
2974
4302618d 2975 /**
1e52837d
EM
2976 * This function does a GET & compares the result against the $params.
2977 *
2978 * Use as a double check on Creates.
2979 *
2980 * @param array $params
2981 * @param int $id
67f947ac 2982 * @param bool $delete
6c6e6187 2983 */
1e52837d 2984 public function contributionGetnCheck($params, $id, $delete = TRUE) {
6a488035 2985
4ab7d517 2986 $contribution = $this->callAPISuccess('Contribution', 'Get', array(
6a488035 2987 'id' => $id,
4ab7d517 2988
5896d037 2989 ));
6a488035
TO
2990
2991 if ($delete) {
4ab7d517 2992 $this->callAPISuccess('contribution', 'delete', array('id' => $id));
6a488035 2993 }
2bfae985 2994 $this->assertAPISuccess($contribution, 0);
6a488035
TO
2995 $values = $contribution['values'][$contribution['id']];
2996 $params['receive_date'] = date('Y-m-d H:i:s', strtotime($params['receive_date']));
2997 // this is not returned in id format
2998 unset($params['payment_instrument_id']);
2999 $params['contribution_source'] = $params['source'];
3000 unset($params['source']);
3001 foreach ($params as $key => $value) {
22f80e87 3002 $this->assertEquals($value, $values[$key], $key . " value: $value doesn't match " . print_r($values, TRUE));
6a488035
TO
3003 }
3004 }
3005
294cc627 3006 /**
3007 * Create a pending contribution & linked pending pledge record.
3008 */
3009 public function createPendingPledgeContribution() {
3010
3011 $pledgeID = $this->pledgeCreate(array('contact_id' => $this->_individualId, 'installments' => 1, 'amount' => 500));
3012 $this->_ids['pledge'] = $pledgeID;
3013 $contribution = $this->callAPISuccess('contribution', 'create', array_merge($this->_params, array(
3014 'contribution_status_id' => 'Pending',
3015 'total_amount' => 500,
3016 ))
3017 );
3018 $paymentID = $this->callAPISuccessGetValue('PledgePayment', array(
3019 'options' => array('limit' => 1),
3020 'return' => 'id',
3021 ));
3022 $this->callAPISuccess('PledgePayment', 'create', array(
3023 'id' => $paymentID,
3024 'contribution_id' =>
3025 $contribution['id'],
3026 'status_id' => 'Pending',
3027 'scheduled_amount' => 500,
3028 ));
3029
3030 return $contribution['id'];
3031 }
3032
0efa8efe 3033 /**
1e52837d 3034 * Create a pending contribution & linked pending participant record (along with an event).
0efa8efe 3035 */
5896d037 3036 public function createPendingParticipantContribution() {
6c6e6187 3037 $event = $this->eventCreate(array('is_email_confirm' => 1, 'confirm_from_email' => 'test@civicrm.org'));
0efa8efe 3038 $participantID = $this->participantCreate(array('event_id' => $event['id'], 'status_id' => 6));
5896d037 3039 $this->_ids['participant'] = $participantID;
0efa8efe 3040 $params = array_merge($this->_params, array('contribution_status_id' => 2, 'financial_type_id' => 'Event Fee'));
6c6e6187 3041 $contribution = $this->callAPISuccess('contribution', 'create', $params);
5896d037 3042 $this->callAPISuccess('participant_payment', 'create', array(
92915c55
TO
3043 'contribution_id' => $contribution['id'],
3044 'participant_id' => $participantID,
3045 ));
858d0bf8 3046 $this->callAPISuccess('line_item', 'get', array(
0efa8efe 3047 'entity_id' => $contribution['id'],
3048 'entity_table' => 'civicrm_contribution',
3049 'api.line_item.create' => array(
3050 'entity_id' => $participantID,
3051 'entity_table' => 'civicrm_participant',
3052 ),
3053 ));
3054 return $contribution['id'];
3055 }
3056
4cbe18b8 3057 /**
1e52837d
EM
3058 * Get financial transaction amount.
3059 *
100fef9d 3060 * @param int $contId
4cbe18b8
EM
3061 *
3062 * @return null|string
f4d89200 3063 */
2da40d21 3064 public function _getFinancialTrxnAmount($contId) {
6c6e6187 3065 $query = "SELECT
6a488035
TO
3066 SUM( ft.total_amount ) AS total
3067 FROM civicrm_financial_trxn AS ft
3068 LEFT JOIN civicrm_entity_financial_trxn AS ceft ON ft.id = ceft.financial_trxn_id
3069 WHERE ceft.entity_table = 'civicrm_contribution'
3070 AND ceft.entity_id = {$contId}";
3071
6c6e6187
TO
3072 $result = CRM_Core_DAO::singleValueQuery($query);
3073 return $result;
3074 }
6a488035 3075
4cbe18b8 3076 /**
100fef9d 3077 * @param int $contId
4cbe18b8
EM
3078 *
3079 * @return null|string
f4d89200 3080 */
2da40d21 3081 public function _getFinancialItemAmount($contId) {
6c6e6187
TO
3082 $lineItem = key(CRM_Price_BAO_LineItem::getLineItems($contId, 'contribution'));
3083 $query = "SELECT
6a488035
TO
3084 SUM(amount)
3085 FROM civicrm_financial_item
3086 WHERE entity_table = 'civicrm_line_item'
3087 AND entity_id = {$lineItem}";
6c6e6187
TO
3088 $result = CRM_Core_DAO::singleValueQuery($query);
3089 return $result;
3090 }
6a488035 3091
4cbe18b8 3092 /**
100fef9d 3093 * @param int $contId
4cbe18b8
EM
3094 * @param $context
3095 */
00be9182 3096 public function _checkFinancialItem($contId, $context) {
6c6e6187
TO
3097 if ($context != 'paylater') {
3098 $params = array(
5896d037
TO
3099 'entity_id' => $contId,
3100 'entity_table' => 'civicrm_contribution',
6c6e6187
TO
3101 );
3102 $trxn = current(CRM_Financial_BAO_FinancialItem::retrieveEntityFinancialTrxn($params, TRUE));
3103 $entityParams = array(
6a488035
TO
3104 'financial_trxn_id' => $trxn['financial_trxn_id'],
3105 'entity_table' => 'civicrm_financial_item',
6c6e6187
TO
3106 );
3107 $entityTrxn = current(CRM_Financial_BAO_FinancialItem::retrieveEntityFinancialTrxn($entityParams));
3108 $params = array(
6a488035 3109 'id' => $entityTrxn['entity_id'],
6c6e6187
TO
3110 );
3111 }
3112 if ($context == 'paylater') {
3113 $lineItems = CRM_Price_BAO_LineItem::getLineItems($contId, 'contribution');
3114 foreach ($lineItems as $key => $item) {
3115 $params = array(
5896d037
TO
3116 'entity_id' => $key,
3117 'entity_table' => 'civicrm_line_item',
6c6e6187
TO
3118 );
3119 $compareParams = array('status_id' => 1);
3120 $this->assertDBCompareValues('CRM_Financial_DAO_FinancialItem', $params, $compareParams);
3121 }
3122 }
3123 elseif ($context == 'refund') {
3124 $compareParams = array(
5896d037
TO
3125 'status_id' => 1,
3126 'financial_account_id' => 1,
3127 'amount' => -100,
6c6e6187
TO
3128 );
3129 }
3130 elseif ($context == 'cancelPending') {
3131 $compareParams = array(
5896d037
TO
3132 'status_id' => 3,
3133 'financial_account_id' => 1,
3134 'amount' => -100,
6c6e6187
TO
3135 );
3136 }
3137 elseif ($context == 'changeFinancial') {
3138 $lineKey = key(CRM_Price_BAO_LineItem::getLineItems($contId, 'contribution'));
3139 $params = array(
5896d037
TO
3140 'entity_id' => $lineKey,
3141 'amount' => -100,
6c6e6187
TO
3142 );
3143 $compareParams = array(
5896d037 3144 'financial_account_id' => 1,
6c6e6187
TO
3145 );
3146 $this->assertDBCompareValues('CRM_Financial_DAO_FinancialItem', $params, $compareParams);
3147 $params = array(
5896d037
TO
3148 'financial_account_id' => 3,
3149 'entity_id' => $lineKey,
6c6e6187
TO
3150 );
3151 $compareParams = array(
5896d037 3152 'amount' => 100,
6c6e6187
TO
3153 );
3154 }
3155 if ($context != 'paylater') {
3156 $this->assertDBCompareValues('CRM_Financial_DAO_FinancialItem', $params, $compareParams);
3157 }
3158 }
6a488035 3159
4cbe18b8 3160 /**
52da5b1e 3161 * Check financial transaction.
3162 *
3163 * @todo break this down into sensible functions - most calls to it only use a few lines out of the big if.
3164 *
4ff927bc 3165 * @param array $contribution
3166 * @param string $context
100fef9d 3167 * @param int $instrumentId
52da5b1e 3168 * @param array $extraParams
4cbe18b8 3169 */
797d4c52 3170 public function _checkFinancialTrxn($contribution, $context, $instrumentId = NULL, $extraParams = array()) {
6c6e6187 3171 $trxnParams = array(
5896d037
TO
3172 'entity_id' => $contribution['id'],
3173 'entity_table' => 'civicrm_contribution',
6c6e6187
TO
3174 );
3175 $trxn = current(CRM_Financial_BAO_FinancialItem::retrieveEntityFinancialTrxn($trxnParams, TRUE));
3176 $params = array(
5896d037 3177 'id' => $trxn['financial_trxn_id'],
6c6e6187
TO
3178 );
3179 if ($context == 'payLater') {
6c6e6187 3180 $compareParams = array(
5896d037 3181 'status_id' => 1,
876b8ab0 3182 'from_financial_account_id' => CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($contribution['financial_type_id'], 'Accounts Receivable Account is'),
6c6e6187
TO
3183 );
3184 }
3185 elseif ($context == 'refund') {
3186 $compareParams = array(
5896d037
TO
3187 'to_financial_account_id' => 6,
3188 'total_amount' => -100,
3189 'status_id' => 7,
b7990bb6 3190 'trxn_date' => '2015-01-01 09:00:00',
797d4c52 3191 'trxn_id' => 'the refund',
6c6e6187
TO
3192 );
3193 }
3194 elseif ($context == 'cancelPending') {
3195 $compareParams = array(
ed4d0aea 3196 'to_financial_account_id' => 7,
5896d037
TO
3197 'total_amount' => -100,
3198 'status_id' => 3,
6c6e6187
TO
3199 );
3200 }
3201 elseif ($context == 'changeFinancial' || $context == 'paymentInstrument') {
3202 $entityParams = array(
5896d037
TO
3203 'entity_id' => $contribution['id'],
3204 'entity_table' => 'civicrm_contribution',
3205 'amount' => -100,
6c6e6187
TO
3206 );
3207 $trxn = current(CRM_Financial_BAO_FinancialItem::retrieveEntityFinancialTrxn($entityParams));
3208 $trxnParams1 = array(
6a488035 3209 'id' => $trxn['financial_trxn_id'],
6c6e6187 3210 );
122250ec
SL
3211 if (empty($extraParams)) {
3212 $compareParams = array(
3213 'total_amount' => -100,
3214 'status_id' => 1,
3215 );
3216 }
3217 else {
3218 $compareParams = array(
3219 'total_amount' => 100,
3220 'status_id' => 1,
3221 );
3222 }
6c6e6187
TO
3223 if ($context == 'paymentInstrument') {
3224 $compareParams += array(
5896d037
TO
3225 'to_financial_account_id' => CRM_Financial_BAO_FinancialTypeAccount::getInstrumentFinancialAccount(4),
3226 'payment_instrument_id' => 4,
6c6e6187
TO
3227 );
3228 }
3229 else {
3230 $compareParams['to_financial_account_id'] = 12;
3231 }
797d4c52 3232 $this->assertDBCompareValues('CRM_Financial_DAO_FinancialTrxn', $trxnParams1, array_merge($compareParams, $extraParams));
6c6e6187
TO
3233 $compareParams['total_amount'] = 100;
3234 if ($context == 'paymentInstrument') {
3235 $compareParams['to_financial_account_id'] = CRM_Financial_BAO_FinancialTypeAccount::getInstrumentFinancialAccount($instrumentId);
3236 $compareParams['payment_instrument_id'] = $instrumentId;
3237 }
3238 else {
3239 $compareParams['to_financial_account_id'] = 12;
3240 }
3241 }
3242
797d4c52 3243 $this->assertDBCompareValues('CRM_Financial_DAO_FinancialTrxn', $params, array_merge($compareParams, $extraParams));
6c6e6187 3244 }
6a488035 3245
4cbe18b8
EM
3246 /**
3247 * @return mixed
3248 */
5896d037 3249 public function _addPaymentInstrument() {
6c6e6187
TO
3250 $gId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', 'payment_instrument', 'id', 'name');
3251 $optionParams = array(
5896d037
TO
3252 'option_group_id' => $gId,
3253 'label' => 'Test Card',
3254 'name' => 'Test Card',
3255 'value' => '6',
3256 'weight' => '6',
3257 'is_active' => 1,
6c6e6187
TO
3258 );
3259 $optionValue = $this->callAPISuccess('option_value', 'create', $optionParams);
3260 $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Asset Account is' "));
3261 $financialParams = array(
5896d037
TO
3262 'entity_table' => 'civicrm_option_value',
3263 'entity_id' => $optionValue['id'],
3264 'account_relationship' => $relationTypeId,
3265 'financial_account_id' => 7,
6c6e6187
TO
3266 );
3267 CRM_Financial_BAO_FinancialTypeAccount::add($financialParams, CRM_Core_DAO::$_nullArray);
3268 $this->assertNotEmpty($optionValue['values'][$optionValue['id']]['value']);
3269 return $optionValue['values'][$optionValue['id']]['value'];
3270 }
6a488035 3271
3c49d90c 3272 /**
3273 * Set up the basic recurring contribution for tests.
3274 *
3275 * @param array $generalParams
3276 * Parameters that can be merged into the recurring AND the contribution.
7f4ef731 3277 *
3278 * @param array $recurParams
3279 * Parameters to merge into the recur only.
3c49d90c 3280 *
3281 * @return array|int
3282 */
7f4ef731 3283 protected function setUpRecurringContribution($generalParams = array(), $recurParams = array()) {
3c49d90c 3284 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array_merge(array(
3285 'contact_id' => $this->_individualId,
3286 'installments' => '12',
3287 'frequency_interval' => '1',
3288 'amount' => '100',
3289 'contribution_status_id' => 1,
3290 'start_date' => '2012-01-01 00:00:00',
3291 'currency' => 'USD',
3292 'frequency_unit' => 'month',
3293 'payment_processor_id' => $this->paymentProcessorID,
7f4ef731 3294 ), $generalParams, $recurParams));
3c49d90c 3295 $originalContribution = $this->callAPISuccess('contribution', 'create', array_merge(
3296 $this->_params,
3297 array(
3298 'contribution_recur_id' => $contributionRecur['id'],
3299 ), $generalParams)
3300 );
3301 return $originalContribution;
3302 }
3303
d2334242
PH
3304 /**
3305 * Set up a basic auto-renew membership for tests.
3306 *
3307 * @param array $generalParams
3308 * Parameters that can be merged into the recurring AND the contribution.
3309 *
3310 * @param array $recurParams
3311 * Parameters to merge into the recur only.
3312 *
3313 * @return array|int
3314 */
3315 protected function setUpAutoRenewMembership($generalParams = array(), $recurParams = array()) {
3316 $newContact = $this->callAPISuccess('Contact', 'create', array(
7c3f3d59 3317 'contact_type' => 'Individual',
3318 'sort_name' => 'McTesterson, Testy',
3319 'display_name' => 'Testy McTesterson',
3320 'preferred_language' => 'en_US',
3321 'preferred_mail_format' => 'Both',
3322 'first_name' => 'Testy',
3323 'last_name' => 'McTesterson',
3324 'contact_is_deleted' => '0',
3325 'email_id' => '4',
3326 'email' => 'tmctesterson@example.com',
3327 'on_hold' => '0',
d2334242
PH
3328 ));
3329 $membershipType = $this->callAPISuccess('MembershipType', 'create', array(
3330 'domain_id' => "Default Domain Name",
3331 'member_of_contact_id' => 1,
3332 'financial_type_id' => "Member Dues",
3333 'duration_unit' => "month",
3334 'duration_interval' => 1,
5b1b8db2 3335 'period_type' => 'rolling',
d2334242
PH
3336 'name' => "Standard Member",
3337 'minimum_fee' => 100,
3338 ));
3339 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array_merge(array(
76e80087 3340 'contact_id' => $newContact['id'],
d2334242
PH
3341 'installments' => '12',
3342 'frequency_interval' => '1',
3343 'amount' => '100',
3344 'contribution_status_id' => 1,
3345 'start_date' => '2012-01-01 00:00:00',
3346 'currency' => 'USD',
3347 'frequency_unit' => 'month',
3348 'payment_processor_id' => $this->paymentProcessorID,
3349 ), $generalParams, $recurParams));
7c3f3d59 3350
3351 $membership = $this->callAPISuccess('membership', 'create', array(
3352 'contact_id' => $newContact['id'],
3353 'contribution_recur_id' => $contributionRecur['id'],
3354 'financial_type_id' => "Member Dues",
3355 'membership_type_id' => $membershipType['id'],
3356 'num_terms' => 1,
3357 'skipLineItem' => TRUE,
3358 ));
3359
3360 CRM_Price_BAO_LineItem::getLineItemArray($this->_params, NULL, 'membership', $membershipType['id']);
d2334242
PH
3361 $originalContribution = $this->callAPISuccess('contribution', 'create', array_merge(
3362 $this->_params,
3363 array(
3364 'contact_id' => $newContact['id'],
3365 'contribution_recur_id' => $contributionRecur['id'],
3366 'financial_type_id' => "Member Dues",
3367 'contribution_status_id' => 1,
3368 'invoice_id' => uniqid(),
3369 ), $generalParams)
3370 );
7c3f3d59 3371 $lineItem = $this->callAPISuccess('LineItem', 'getsingle', array());
3372 $this->assertEquals('civicrm_membership', $lineItem['entity_table']);
3373 $membership = $this->callAPISuccess('Membership', 'getsingle', array('id' => $lineItem['entity_id']));
3374 $this->callAPISuccess('LineItem', 'getsingle', array());
3375 $this->callAPISuccessGetCount('MembershipPayment', array('membership_id' => $membership['id']), 1);
d2334242 3376
d2334242
PH
3377 return array($originalContribution, $membership);
3378 }
893a550c 3379 /**
3380 * Set up a repeat transaction.
3381 *
3382 * @param array $recurParams
3383 *
3384 * @return array
3385 */
0e6ccb2e 3386 protected function setUpRepeatTransaction($recurParams = array(), $flag) {
893a550c 3387 $paymentProcessorID = $this->paymentProcessorCreate();
3388 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array_merge(array(
3389 'contact_id' => $this->_individualId,
3390 'installments' => '12',
3391 'frequency_interval' => '1',
3392 'amount' => '500',
3393 'contribution_status_id' => 1,
3394 'start_date' => '2012-01-01 00:00:00',
3395 'currency' => 'USD',
3396 'frequency_unit' => 'month',
3397 'payment_processor_id' => $paymentProcessorID,
3398 ), $recurParams));
0e6ccb2e 3399
7150b1c8 3400 $originalContribution = '';
0e6ccb2e 3401 if ($flag == 'multiple') {
7150b1c8 3402 // CRM-19309 create a contribution + also add in line_items (plural):
0e6ccb2e
K
3403 $originalContribution = $this->callAPISuccess('contribution', 'create', array_merge(
3404 $this->_params,
3405 array(
3406 'contribution_recur_id' => $contributionRecur['id'],
3407 'skipLineItem' => 1,
3408 'api.line_item.create' => array(
3409 array(
3410 'price_field_id' => 1,
3411 'qty' => 2,
3412 'line_total' => '20',
3413 'unit_price' => '10',
3414 'financial_type_id' => 1,
3415 ),
3416 array(
3417 'price_field_id' => 1,
3418 'qty' => 1,
3419 'line_total' => '80',
3420 'unit_price' => '80',
3421 'financial_type_id' => 2,
3422 ),
3423 ),
3424 )
3425 )
3426 );
3427 }
3428 elseif ($flag == 'single') {
3429 $originalContribution = $this->callAPISuccess('contribution', 'create', array_merge(
3430 $this->_params,
3431 array('contribution_recur_id' => $contributionRecur['id']))
3432 );
3433 }
f69a9ac3 3434 $originalContribution['payment_processor_id'] = $paymentProcessorID;
893a550c 3435 return $originalContribution;
3436 }
3437
ec7e3954
E
3438 /**
3439 * Common set up routine.
3440 *
3441 * @return array
3442 */
3443 protected function setUpForCompleteTransaction() {
3444 $this->mut = new CiviMailUtils($this, TRUE);
3445 $this->createLoggedInUser();
3446 $params = array_merge($this->_params, array('contribution_status_id' => 2, 'receipt_date' => 'now'));
3447 $contribution = $this->callAPISuccess('contribution', 'create', $params);
3448 return $contribution;
3449 }
3450
9c01d961
SL
3451 /**
3452 * Test repeat contribution uses the Payment Processor' payment_instrument setting.
3453 */
3454 public function testRepeatTransactionWithNonCreditCardDefault() {
3455 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array(
3456 'contact_id' => $this->_individualId,
3457 'installments' => '12',
3458 'frequency_interval' => '1',
3459 'amount' => '100',
3460 'contribution_status_id' => 1,
3461 'start_date' => '2012-01-01 00:00:00',
3462 'currency' => 'USD',
3463 'frequency_unit' => 'month',
3464 'payment_processor_id' => $this->paymentProcessorID,
3465 ));
3466 $contribution1 = $this->callAPISuccess('contribution', 'create', array_merge(
3467 $this->_params,
4f0fadfa 3468 array('contribution_recur_id' => $contributionRecur['id'], 'payment_instrument_id' => 2))
9c01d961
SL
3469 );
3470 $paymentInstruments = CRM_Contribute_PseudoConstant::paymentInstrument('name');
3471 $contribution2 = $this->callAPISuccess('contribution', 'repeattransaction', array(
3472 'contribution_status_id' => 'Completed',
3473 'trxn_id' => uniqid(),
3474 'original_contribution_id' => $contribution1,
3475 ));
3476 $this->assertEquals(array_search('Debit Card', $paymentInstruments), $contribution2['values'][$contribution2['id']]['payment_instrument_id']);
3477 $this->quickCleanUpFinancialEntities();
3478 }
3479
ee63135d 3480 /**
3481 * CRM-20008 Tests repeattransaction creates pending membership.
3482 */
3483 public function testRepeatTransactionPendingMembership() {
3484 list($originalContribution, $membership) = $this->setUpAutoRenewMembership();
3485 $this->callAPISuccess('membership', 'create', array(
3486 'id' => $membership['id'],
3487 'end_date' => 'yesterday',
3488 'status_id' => 'Expired',
3489 ));
3490 $repeatedContribution = $this->callAPISuccess('contribution', 'repeattransaction', array(
3491 'contribution_recur_id' => $originalContribution['values'][1]['contribution_recur_id'],
3492 'contribution_status_id' => 'Pending',
3493 'trxn_id' => uniqid(),
3494 ));
3495 $membershipStatusId = $this->callAPISuccess('membership', 'getvalue', array(
3496 'id' => $membership['id'],
3497 'return' => 'status_id',
3498 ));
3499
3500 // Let's see if the membership payments got created while we're at it.
3501 $membershipPayments = $this->callAPISuccess('MembershipPayment', 'get', array(
3502 'memberhip_id' => $membership['id'],
3503 ));
3504 $this->assertEquals(2, $membershipPayments['count']);
3505
3506 $this->assertEquals('Expired', CRM_Core_PseudoConstant::getLabel('CRM_Member_BAO_Membership', 'status_id', $membershipStatusId));
3507 $this->callAPISuccess('Contribution', 'completetransaction', array('id' => $repeatedContribution['id']));
3508 $membership = $this->callAPISuccessGetSingle('membership', array(
3509 'id' => $membership['id'],
3510 'return' => 'status_id, end_date',
3511 ));
3512 $this->assertEquals('New', CRM_Core_PseudoConstant::getLabel('CRM_Member_BAO_Membership', 'status_id', $membership['status_id']));
3513 $this->assertEquals(date('Y-m-d', strtotime('yesterday + 1 month')), $membership['end_date']);
3514
3515 $this->quickCleanUpFinancialEntities();
3516 $this->contactDelete($originalContribution['values'][1]['contact_id']);
3517 }
3518
cefed6df
SL
3519 /**
3520 * Test sending a mail via the API.
3521 */
3522 public function testSendMailWithAPISetFromDetails() {
3523 $mut = new CiviMailUtils($this, TRUE);
3524 $contribution = $this->callAPISuccess('contribution', 'create', $this->_params);
3525 $this->callAPISuccess('contribution', 'sendconfirmation', array(
3526 'id' => $contribution['id'],
3527 'receipt_from_email' => 'api@civicrm.org',
3528 'receipt_from_name' => 'CiviCRM LLC',
3529 ));
3530 $mut->checkMailLog(array(
3531 'From: CiviCRM LLC <api@civicrm.org>',
3532 'Contribution Information',
3533 'Please print this confirmation for your records',
3534 ), array(
3535 'Event',
3536 )
3537 );
3538 $mut->stop();
3539 }
3540
3541 /**
3542 * Test sending a mail via the API.
3543 */
3544 public function testSendMailWithNoFromSetFallToDomain() {
3545 $this->createLoggedInUser();
3546 $mut = new CiviMailUtils($this, TRUE);
3547 $contribution = $this->callAPISuccess('contribution', 'create', $this->_params);
3548 $this->callAPISuccess('contribution', 'sendconfirmation', array(
3549 'id' => $contribution['id'],
3550 ));
3551 $domain = $this->callAPISuccess('domain', 'getsingle', array('id' => 1));
3552 $mut->checkMailLog(array(
3553 'From: ' . $domain['from_name'] . ' <' . $domain['from_email'] . '>',
3554 'Contribution Information',
3555 'Please print this confirmation for your records',
3556 ), array(
3557 'Event',
3558 )
3559 );
3560 $mut->stop();
3561 }
3562
3563 /**
3564 * Test sending a mail via the API.
3565 */
3566 public function testSendMailWithRepeatTransactionAPIFalltoDomain() {
3567 $this->createLoggedInUser();
3568 $mut = new CiviMailUtils($this, TRUE);
3569 $contribution = $this->setUpRepeatTransaction(array(), 'single');
3570 $this->callAPISuccess('contribution', 'repeattransaction', array(
3571 'contribution_status_id' => 'Completed',
3572 'trxn_id' => uniqid(),
3573 'original_contribution_id' => $contribution,
3574 ));
3575 $domain = $this->callAPISuccess('domain', 'getsingle', array('id' => 1));
3576 $mut->checkMailLog(array(
3577 'From: ' . $domain['from_name'] . ' <' . $domain['from_email'] . '>',
3578 'Contribution Information',
3579 'Please print this confirmation for your records',
3580 ), array(
3581 'Event',
3582 )
3583 );
3584 $mut->stop();
3585 }
3586
3587 /**
3588 * Test sending a mail via the API.
3589 */
3590 public function testSendMailWithRepeatTransactionAPIFalltoContributionPage() {
3591 $mut = new CiviMailUtils($this, TRUE);
3592 $contributionPage = $this->contributionPageCreate(array('receipt_from_name' => 'CiviCRM LLC', 'receipt_from_email' => 'contributionpage@civicrm.org', 'is_email_receipt' => 1));
cefed6df
SL
3593 $paymentProcessorID = $this->paymentProcessorCreate();
3594 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array(
3595 'contact_id' => $this->_individualId,
3596 'installments' => '12',
3597 'frequency_interval' => '1',
3598 'amount' => '500',
3599 'contribution_status_id' => 1,
3600 'start_date' => '2012-01-01 00:00:00',
3601 'currency' => 'USD',
3602 'frequency_unit' => 'month',
3603 'payment_processor_id' => $paymentProcessorID,
3604 ));
3605 $originalContribution = $this->callAPISuccess('contribution', 'create', array_merge(
3606 $this->_params,
3607 array(
3608 'contribution_recur_id' => $contributionRecur['id'],
3609 'contribution_page_id' => $contributionPage['id']))
3610 );
3611 $this->callAPISuccess('contribution', 'repeattransaction', array(
3612 'contribution_status_id' => 'Completed',
3613 'trxn_id' => uniqid(),
3614 'original_contribution_id' => $originalContribution,
3615 )
3616 );
3617 $mut->checkMailLog(array(
3618 'From: CiviCRM LLC <contributionpage@civicrm.org>',
3619 'Contribution Information',
3620 'Please print this confirmation for your records',
3621 ), array(
3622 'Event',
3623 )
3624 );
3625 $mut->stop();
3626 }
3627
4fb4e64f
SL
3628 /**
3629 * Test sending a mail via the API.
3630 */
3631 public function testSendMailWithRepeatTransactionAPIFalltoSystemFromNoDefaultFrom() {
3632 $mut = new CiviMailUtils($this, TRUE);
3633 $originalContribution = $contribution = $this->setUpRepeatTransaction(array(), 'single');
3634 $fromEmail = $this->CallAPISuccess('optionValue', 'get', array('is_default' => 1, 'option_group_id' => 'from_email_address', 'sequential' => 1));
3635 foreach ($fromEmail['values'] as $from) {
3636 $this->callAPISuccess('optionValue', 'create', array('is_default' => 0, 'id' => $from['id']));
3637 }
3638 $domain = $this->callAPISuccess('domain', 'getsingle', array('id' => CRM_Core_Config::domainID()));
3639 $this->callAPISuccess('contribution', 'repeattransaction', array(
3640 'contribution_status_id' => 'Completed',
3641 'trxn_id' => uniqid(),
3642 'original_contribution_id' => $originalContribution,
3643 )
3644 );
3645 $mut->checkMailLog(array(
3646 'From: ' . $domain['name'] . ' <' . $domain['domain_email'] . '>',
3647 'Contribution Information',
3648 'Please print this confirmation for your records',
3649 ), array(
3650 'Event',
3651 )
3652 );
3653 $mut->stop();
3654 }
3655
d891a273 3656 /**
3657 * Create a Contribution Page with is_email_receipt = TRUE.
3658 *
3659 * @param array $params
3660 * Params to overwrite with.
3661 *
3662 * @return array|int
3663 */
3664 protected function createReceiptableContributionPage($params = array()) {
3665 $contributionPage = $this->callAPISuccess('ContributionPage', 'create', array_merge(array(
3666 'receipt_from_name' => 'Mickey Mouse',
3667 'receipt_from_email' => 'mickey@mouse.com',
3668 'title' => "Test Contribution Page",
3669 'financial_type_id' => 1,
3670 'currency' => 'CAD',
3671 'is_monetary' => TRUE,
3672 'is_email_receipt' => TRUE,
3673 ), $params));
3674 return $contributionPage;
3675 }
3676
121c4616 3677 /**
3678 * function to test card_type and pan truncation.
3679 */
3680 public function testCardTypeAndPanTruncation() {
3681 $creditCardTypeIDs = array_flip(CRM_Financial_DAO_FinancialTrxn::buildOptions('card_type_id'));
3682 $contactId = $this->individualCreate();
3683 $params = array(
3684 'contact_id' => $contactId,
3685 'receive_date' => '2016-01-20',
3686 'total_amount' => 100,
3687 'financial_type_id' => 1,
3688 'payment_instrument' => 'Credit Card',
3689 'card_type_id' => $creditCardTypeIDs['Visa'],
3690 'pan_truncation' => 4567,
3691 );
3692 $contribution = $this->callAPISuccess('contribution', 'create', $params);
3693 $lastFinancialTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($contribution['id'], 'DESC');
3694 $financialTrxn = $this->callAPISuccessGetSingle(
3695 'FinancialTrxn',
3696 array(
3697 'id' => $lastFinancialTrxnId['financialTrxnId'],
3698 'return' => array('card_type_id', 'pan_truncation'),
3699 )
3700 );
3701 $this->assertEquals(CRM_Utils_Array::value('card_type_id', $financialTrxn), $creditCardTypeIDs['Visa']);
3702 $this->assertEquals(CRM_Utils_Array::value('pan_truncation', $financialTrxn), 4567);
3703 $params = array(
3704 'id' => $contribution['id'],
3705 'pan_truncation' => 2345,
3706 'card_type_id' => $creditCardTypeIDs['Amex'],
3707 );
3708 $contribution = $this->callAPISuccess('contribution', 'create', $params);
3709 $financialTrxn = $this->callAPISuccessGetSingle(
3710 'FinancialTrxn',
3711 array(
3712 'id' => $lastFinancialTrxnId['financialTrxnId'],
3713 'return' => array('card_type_id', 'pan_truncation'),
3714 )
3715 );
3716 $this->assertEquals(CRM_Utils_Array::value('card_type_id', $financialTrxn), $creditCardTypeIDs['Amex']);
3717 $this->assertEquals(CRM_Utils_Array::value('pan_truncation', $financialTrxn), 2345);
3718 }
3719
6a488035 3720}