1e2de5deb61fb71248c730b033d9c023f47041a3
[civicrm-core.git] / tests / phpunit / CRM / Core / Payment / BaseIPNTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * Class CRM_Core_Payment_BaseIPNTest
30 * @group headless
31 */
32 class CRM_Core_Payment_BaseIPNTest extends CiviUnitTestCase {
33
34 protected $_financialTypeId;
35 protected $_contributionParams;
36 protected $_contactId;
37 protected $_contributionId;
38 protected $_participantId;
39 protected $_pledgeId;
40 protected $_eventId;
41 protected $_processorId;
42 protected $_contributionRecurParams;
43 protected $_paymentProcessor;
44
45 /**
46 * Parameters to create a membership.
47 *
48 * @var array
49 */
50 protected $_membershipParams = array();
51
52 /**
53 * IPN instance.
54 *
55 * @var CRM_Core_Payment_BaseIPN
56 */
57 protected $IPN;
58 protected $_recurId;
59 protected $_membershipId;
60 protected $input;
61 protected $ids;
62 protected $objects;
63
64 /**
65 * @var int
66 */
67 protected $_membershipTypeID;
68
69 /**
70 * @var int
71 */
72 protected $_membershipStatusID;
73 public $DBResetRequired = FALSE;
74
75 /**
76 * Setup function.
77 */
78 public function setUp() {
79 parent::setUp();
80 $this->_processorId = $this->paymentProcessorAuthorizeNetCreate(array('is_test' => 0));
81 $this->input = $this->ids = $this->objects = array();
82 $this->IPN = new CRM_Core_Payment_AuthorizeNetIPN($this->input);
83
84 $this->_contactId = $this->individualCreate();
85 $this->ids['contact'] = $this->_contactId;
86 $this->_financialTypeId = 1;
87
88 $this->_contributionParams = array(
89 'contact_id' => $this->_contactId,
90 'financial_type_id' => $this->_financialTypeId,
91 'receive_date' => date('Ymd'),
92 'total_amount' => 150.00,
93 'invoice_id' => 'c8acb91e080ad7bd8a2adc119c192885',
94 'currency' => 'USD',
95 'contribution_recur_id' => $this->_recurId,
96 'contribution_status_id' => 2,
97 );
98 $contribution = $this->callAPISuccess('contribution', 'create', $this->_contributionParams);
99 $this->_contributionId = $contribution['id'];
100
101 $contribution = new CRM_Contribute_BAO_Contribution();
102 $contribution->id = $this->_contributionId;
103 $contribution->find(TRUE);
104 $this->objects['contribution'] = $contribution;
105 }
106
107 /**
108 * Tear down after class.
109 */
110 public function tearDown() {
111 $this->quickCleanUpFinancialEntities();
112 CRM_Member_PseudoConstant::membershipType(NULL, TRUE);
113 CRM_Member_PseudoConstant::membershipStatus(NULL, NULL, 'name', TRUE);
114 }
115
116 /**
117 * Test the LoadObjects function with recurring membership data.
118 */
119 public function testLoadMembershipObjects() {
120 $this->_setUpMembershipObjects();
121 $this->_setUpRecurringContribution();
122 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
123 $this->assertFalse(empty($this->objects['membership']));
124 $this->assertArrayHasKey($this->_membershipTypeID, $this->objects['membership']);
125 $this->assertTrue(is_a($this->objects['membership'][$this->_membershipTypeID], 'CRM_Member_BAO_Membership'));
126 $this->assertTrue(is_a($this->objects['financialType'], 'CRM_Financial_BAO_FinancialType'));
127 $this->assertFalse(empty($this->objects['contributionRecur']));
128 $this->assertFalse(empty($this->objects['paymentProcessor']));
129 }
130
131 /**
132 * Test the LoadObjects function with recurring membership data.
133 */
134 public function testLoadMembershipObjectsNoLeakage() {
135 $this->_setUpMembershipObjects();
136 $this->_setUpRecurringContribution();
137 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
138 $this->assertEquals('Anthony', $this->objects['contact']->first_name);
139
140 $this->ids['contact'] = $this->_contactId = $this->individualCreate(array(
141 'first_name' => 'Donald',
142 'last_name' => 'Duck',
143 'email' => 'the-don@duckville.com,
144 '));
145 $contribution = $this->callAPISuccess('contribution', 'create', array_merge($this->_contributionParams, array('invoice_id' => 'abc')));
146 $this->_contributionId = $contribution['id'];
147 $this->_setUpMembershipObjects();
148 $this->input['invoiceID'] = 'abc';
149 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
150 $this->assertEquals('Donald', $this->objects['contact']->first_name);
151 }
152
153 /**
154 * Test the LoadObjects function with recurring membership data.
155 */
156 public function testLoadMembershipObjectsLoadAll() {
157 $this->_setUpMembershipObjects();
158 $this->_setUpRecurringContribution();
159 unset($this->ids['membership']);
160 $contribution = new CRM_Contribute_BAO_Contribution();
161 $contribution->id = $this->_contributionId;
162 $contribution->find(TRUE);
163 $contribution->loadRelatedObjects($this->input, $this->ids, TRUE);
164 $this->assertFalse(empty($contribution->_relatedObjects['membership']));
165 $this->assertArrayHasKey($this->_membershipTypeID, $contribution->_relatedObjects['membership']);
166 $this->assertTrue(is_a($contribution->_relatedObjects['membership'][$this->_membershipTypeID], 'CRM_Member_BAO_Membership'));
167 $this->assertTrue(is_a($contribution->_relatedObjects['financialType'], 'CRM_Financial_BAO_FinancialType'));
168 $this->assertFalse(empty($contribution->_relatedObjects['contributionRecur']));
169 $this->assertFalse(empty($contribution->_relatedObjects['paymentProcessor']));
170 }
171
172 /**
173 * Test the LoadObjects function with recurring membership data.
174 */
175 public function testsendMailMembershipObjects() {
176 $this->_setUpMembershipObjects();
177 $values = array();
178 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
179 $msg = $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, FALSE, TRUE);
180 $this->assertTrue(is_array($msg), "Message returned as an array in line");
181 $this->assertEquals('Mr. Anthony Anderson II', $msg['to']);
182 $this->assertContains('<p>Please print this confirmation for your records.</p>', $msg['html']);
183 $this->assertContains('Membership Type: General', $msg['body']);
184 }
185
186 /**
187 * Test the LoadObjects function data does not leak.
188 *
189 * If more than one iteration takes place the variables should not leak.
190 */
191 public function testSendMailMembershipObjectsNoLeakage() {
192 $this->_setUpMembershipObjects();
193 $values = array();
194 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
195 $msg = $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, FALSE, TRUE);
196 $this->assertEquals('Mr. Anthony Anderson II', $msg['to']);
197 $this->assertContains('Membership Type: General', $msg['body']);
198
199 $this->ids['contact'] = $this->_contactId = $this->individualCreate(array('prefix_id' => 'Dr.', 'first_name' => 'Donald', 'last_name' => 'Duck', 'email' => 'the-don@duckville.com'));
200 $contribution = $this->callAPISuccess('contribution', 'create', array_merge($this->_contributionParams, array('invoice_id' => 'abc')));
201 $this->_contributionId = $contribution['id'];
202
203 $this->_membershipTypeID = $this->membershipTypeCreate(array('name' => 'Fowl'));
204 $this->_setUpMembershipObjects();
205 $this->input['invoiceID'] = 'abc';
206 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
207 $this->assertEquals('Donald', $this->objects['contact']->first_name);
208 $msg = $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, FALSE, TRUE);
209 $this->assertEquals('Dr. Donald Duck II', $msg['to']);
210 $this->assertContains('Membership Type: Fowl', $msg['body']);
211 }
212
213 /**
214 * Test the LoadObjects function with recurring membership data.
215 */
216 public function testsendMailMembershipWithoutLoadObjects() {
217 $this->_setUpMembershipObjects();
218 $values = array();
219 $msg = $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, FALSE, TRUE);
220 $this->assertTrue(is_array($msg), "Message returned as an array in line" . __LINE__);
221 $this->assertEquals('Mr. Anthony Anderson II', $msg['to']);
222 $this->assertContains('<p>Please print this confirmation for your records.</p>', $msg['html']);
223 $this->assertContains('Membership Type: General', $msg['body']);
224 }
225
226 /**
227 * Test that loadObjects works with participant values.
228 */
229 public function testLoadParticipantObjects() {
230 $this->_setUpParticipantObjects();
231 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
232 $this->assertFalse(empty($this->objects['participant']));
233 $this->assertTrue(is_a($this->objects['participant'], 'CRM_Event_BAO_Participant'));
234 $this->assertTrue(is_a($this->objects['financialType'], 'CRM_Financial_BAO_FinancialType'));
235 $this->assertFalse(empty($this->objects['event']));
236 $this->assertTrue(is_a($this->objects['event'], 'CRM_Event_BAO_Event'));
237 $this->assertTrue(is_a($this->objects['contribution'], 'CRM_Contribute_BAO_Contribution'));
238 $this->assertFalse(empty($this->objects['event']->id));
239 }
240
241 /**
242 * Test the LoadObjects function with a participant.
243 */
244 public function testComposeMailParticipant() {
245 $this->_setUpParticipantObjects();
246 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
247 $values = array();
248 $this->assertFalse(empty($this->objects['event']));
249 $msg = $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, FALSE, TRUE);
250 $this->assertContains('registration has been received and your status has been updated to Attended.', $msg['body']);
251 $this->assertContains('Annual CiviCRM meet', $msg['html']);
252 }
253
254 /**
255 */
256 public function testComposeMailParticipantObjects() {
257 $this->_setUpParticipantObjects();
258 $values = array();
259 $msg = $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, FALSE, TRUE);
260 $this->assertTrue(is_array($msg), "Message returned as an array in line" . __LINE__);
261 $this->assertEquals('Mr. Anthony Anderson II', $msg['to']);
262 $this->assertContains('<p>Please print this confirmation for your records.</p>', $msg['html']);
263 $this->assertContains('Thank you for your participation', $msg['body']);
264 }
265
266 /**
267 * Test the LoadObjects function with recurring membership data.
268 */
269 public function testsendMailParticipantObjectsCheckLog() {
270 $this->_setUpParticipantObjects();
271 $values = array();
272 $mut = new CiviMailUtils($this, TRUE);
273 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
274 $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, FALSE, FALSE);
275 $mut->checkMailLog(array(
276 'Thank you for your participation',
277 'Annual CiviCRM meet',
278 'Mr. Anthony Anderson II',
279 )
280 );
281 $mut->stop();
282 }
283
284 /**
285 * Test the LoadObjects function with recurring membership data.
286 */
287 public function testsendMailParticipantObjectsNoMail() {
288 $this->_setUpParticipantObjects();
289 $event = new CRM_Event_BAO_Event();
290 $event->id = $this->_eventId;
291 $event->is_email_confirm = FALSE;
292 $event->save();
293 $values = array();
294 $tablesToTruncate = array(
295 'civicrm_mailing_spool',
296 );
297 $this->quickCleanup($tablesToTruncate, FALSE);
298 $mut = new CiviMailUtils($this, TRUE);
299 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
300 $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, FALSE, FALSE);
301 $mut->assertMailLogEmpty('no mail should have been send as event set to no confirm');
302 $mut->stop();
303 }
304
305 /**
306 * Test that loadObjects works with participant values.
307 */
308 public function testLoadPledgeObjects() {
309 $this->_setUpPledgeObjects();
310 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, $this->_processorId);
311 $this->assertFalse(empty($this->objects['pledge_payment'][0]));
312 $this->assertTrue(is_a($this->objects['financialType'], 'CRM_Financial_BAO_FinancialType'));
313 $this->assertTrue(is_a($this->objects['contribution'], 'CRM_Contribute_BAO_Contribution'));
314 $this->assertTrue(is_a($this->objects['pledge_payment'][0], 'CRM_Pledge_BAO_PledgePayment'));
315 $this->assertFalse(empty($this->objects['pledge_payment'][0]->id));
316 $this->assertEquals($this->_financialTypeId, $this->objects['financialType']->id);
317 $this->assertEquals($this->_processorId, $this->objects['paymentProcessor']['id']);
318 $this->assertEquals($this->_contributionId, $this->objects['contribution']->id);
319 $this->assertEquals($this->_contactId, $this->objects['contact']->id);
320 $this->assertEquals($this->_pledgeId, $this->objects['pledge_payment'][0]->pledge_id);
321 }
322
323 /**
324 * Test that loadObjects works with participant values.
325 */
326 public function testLoadPledgeObjectsInvalidPledgeID() {
327 $this->_setUpPledgeObjects();
328 $this->ids['pledge_payment'][0] = 0;
329 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, NULL, array('return_error' => 1));
330 $this->assertArrayHasKey('error_message', $result);
331 $this->assertArrayNotHasKey('pledge_payment', $this->objects);
332 $this->assertEquals('Could not find payment processor for contribution record: 1', $result['error_message']);
333 $this->ids['pledge_payment'][0] = NULL;
334 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, NULL, array('return_error' => 1));
335 $this->assertArrayHasKey('error_message', $result);
336 $this->assertArrayNotHasKey('pledge_payment', $this->objects);
337 $this->assertEquals('Could not find payment processor for contribution record: 1', $result['error_message']);
338 $this->ids['pledge_payment'][0] = '';
339 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, NULL, array('return_error' => 1));
340 $this->assertArrayHasKey('error_message', $result);
341 $this->assertArrayNotHasKey('pledge_payment', $this->objects);
342 $this->assertEquals('Could not find payment processor for contribution record: 1', $result['error_message']);
343
344 $this->ids['pledge_payment'][0] = 999;
345 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, $this->_processorId, array('return_error' => 1));
346 $this->assertArrayHasKey('error_message', $result);
347 $this->assertEquals('Could not find pledge payment record: 999', $result['error_message']);
348 }
349
350 /**
351 * Test the LoadObjects function with a pledge.
352 */
353 public function testsendMailPledge() {
354 $this->_setUpPledgeObjects();
355 $values = array();
356 $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, NULL);
357 $msg = $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, FALSE, TRUE);
358 $this->assertContains('Contribution Information', $msg['html']);
359 }
360
361 /**
362 * Test that an error is returned if required set & no contribution page.
363 */
364 public function testRequiredWithoutProcessorID() {
365 $this->_setUpPledgeObjects();
366 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, NULL, array('return_error' => 1));
367 $this->assertArrayHasKey('error_message', $result);
368 $this->assertEquals('Could not find payment processor for contribution record: 1', $result['error_message']);
369 // error is only returned if $required set to True
370 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, NULL, array('return_error' => 1));
371 $this->assertFalse(is_array($result));
372 //check that error is not returned if error checking not set
373 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, NULL, array('log_error' => 1));
374 $this->assertFalse(is_array($result));
375 }
376
377 /**
378 * Test that an error is not if required set & no processor ID
379 */
380 public function testRequiredWithContributionPage() {
381 $this->_setUpContributionObjects(TRUE);
382 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, NULL, array('return_error' => 1));
383 $this->assertEquals(1, $result['is_error']);
384 ;
385 }
386
387 /**
388 * Test that if part of $input the payment processor loads OK.
389 *
390 * It's preferable to pass it in as it cannot be correctly calculated.
391 */
392 public function testPaymentProcessorLoadsAsParam() {
393 $this->_setUpContributionObjects();
394 $this->input = array_merge($this->input, array('payment_processor_id' => $this->_processorId));
395 $this->assertTrue($this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, NULL, array('return_error' => 1)));
396 }
397
398 /**
399 * Test that an error is returned if required set & contribution page exists
400 */
401 public function testRequiredWithContributionPageError() {
402 $this->_setUpContributionObjects();
403 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, NULL, array('return_error' => 1));
404 $this->assertArrayHasKey('error_message', $result);
405 $this->assertEquals('Could not find payment processor for contribution record: 1', $result['error_message']);
406 // error is only returned if $required set to True
407 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, FALSE, NULL, array('return_error' => 1));
408 $this->assertFalse(is_array($result));
409 //check that error is not returned if error checking not set
410 $result = $this->IPN->loadObjects($this->input, $this->ids, $this->objects, TRUE, NULL, array('log_error' => 1));
411 $this->assertFalse(is_array($result));
412 }
413
414 /* @codingStandardsIgnoreStart
415 * Test calls main functions in sequence per 'main' - I had hoped to test the functions more
416 * fully but the calls to the POST happen in more than one function
417 * keeping this as good example of data to bring back to life later
418
419 public function testMainFunctionActions() {
420 $ids = $objects = array( );
421 $input['component'] = 'Contribute';
422 $postedParams = array(
423 'x_response_code' => 1,
424 'x_response_reason_code' => 1,
425 'x_response_reason_text' => 'This transaction has been approved.',
426 'x_avs_code' => 'Y',
427 'x_auth_code' => 140454,
428 'x_trans_id' => 4353599599,
429 'x_method' => 'CC',
430 'x_card_type' => 'American Express',
431 'x_account_number' => 'XXXX2701',
432 'x_first_name' => 'Arthur',
433 'x_last_name' => 'Jacobs',
434 'x_company' => null,
435 'x_address' => '866 2166th St SN',
436 'x_city' => 'Edwardstown',
437 'x_state' => 'WA',
438 'x_zip' => 98026,
439 'x_country' => 'US',
440 'x_phone' => null,
441 'x_fax' => null,
442 'x_email' => null,
443 'x_invoice_num' => 'a9fb56c24576lk4c9490f6',
444 'x_description' => 'my desc',
445 'x_type' => 'auth_capture',
446 'x_cust_id' => 5191,
447 'x_ship_to_first_name' => null,
448 'x_ship_to_last_name' => null,
449 'x_ship_to_company' => null,
450 'x_ship_to_address' => null,
451 'x_ship_to_city' => null,
452 'x_ship_to_state' => null,
453 'x_ship_to_zip' => null,
454 'x_ship_to_country' => null,
455 'x_amount' => 60.00,
456 'x_tax' => 0.00,
457 'x_duty' => 0.00,
458 'x_freight' => 0.00,
459 'x_tax_exempt' => FALSE,
460 'x_po_num' => null,
461 'x_MD5_Hash' => '069ECAD13C8E15AC205CDF92B8B58CC7',
462 'x_cvv2_resp_code' => null,
463 'x_cavv_response' => null,
464 'x_test_request' => false,
465 'description' => 'my description'
466 );
467 $this->IPN->getInput( $input, $ids );
468 $this->IPN->getIDs( $ids, $input );
469
470 CRM_Core_Error::debug_var( '$ids', $ids );
471 CRM_Core_Error::debug_var( '$input', $input );
472
473 $paymentProcessorID = CRM_Core_DAO::getFieldValue( 'CRM_Financial_DAO_PaymentProcessorType',
474 'AuthNet', 'id', 'name' );
475
476 if ( ! $this->IPN->validateData( $input, $ids, $objects, true, $paymentProcessorID ) ) {
477 return false;
478 }
479
480 if ( $component == 'contribute' && $ids['contributionRecur'] ) {
481 // check if first contribution is completed, else complete first contribution
482 $first = true;
483 if ( $objects['contribution']->contribution_status_id == 1 ) {
484 $first = false;
485 }
486 return $this->IPN->recur( $input, $ids, $objects, $first );
487 }
488 }
489 @codingStandardsIgnoreEnd */
490
491 /**
492 * Prepare for contribution Test - involving only contribution objects
493 *
494 * @param bool $contributionPage
495 */
496 public function _setUpContributionObjects($contributionPage = FALSE) {
497
498 $contribution = new CRM_Contribute_BAO_Contribution();
499 $contribution->id = $this->_contributionId;
500 $contribution->find(TRUE);
501 $contributionPageID = NULL;
502
503 if (!empty($contributionPage)) {
504 $dao = new CRM_Core_DAO();
505 $contribution_page = $dao->createTestObject('CRM_Contribute_DAO_ContributionPage');
506 $contribution_page->payment_processor = 1;
507 $contribution_page->save();
508 $contribution->contribution_page_id = $contributionPageID = $contribution_page->id;
509 //for unknown reasons trying to do a find & save on a contribution with a receive_date set
510 // doesn't work. This seems of minimal relevance to this test so ignoring
511 // note that in tests it worked sometimes & not others - dependent on which other tests run.
512 // running all CRM_Core tests caused failure as did just the single failing test. But running
513 // just this class succeeds - because it actually doesn't do a mysql update on the following save
514 // (unknown reason)
515 unset($contribution->receive_date);
516 $contribution->save();
517 }
518
519 $this->objects['contribution'] = $contribution;
520 $this->input = array(
521 'component' => 'contribute',
522 'contribution_page_id' => $contributionPageID,
523 'total_amount' => 110.00,
524 'invoiceID' => "c8acb91e080ad7777a2adc119c192885",
525 'contactID' => $this->_contactId,
526 'contributionID' => $this->objects['contribution']->id,
527 );
528 }
529
530 /**
531 * Prepare for membership test.
532 */
533 public function _setUpMembershipObjects() {
534 try {
535 if (!$this->_membershipTypeID) {
536 $this->_membershipTypeID = $this->membershipTypeCreate();
537 }
538 if (!$this->_membershipStatusID) {
539 $this->_membershipStatusID = $this->membershipStatusCreate('test status');
540 }
541 }
542 catch (Exception$e) {
543 echo $e->getMessage();
544 }
545 CRM_Member_PseudoConstant::membershipType($this->_membershipTypeID, TRUE);
546 CRM_Member_PseudoConstant::membershipStatus(NULL, NULL, 'name', TRUE);
547 $this->_membershipParams = array(
548 'contact_id' => $this->_contactId,
549 'membership_type_id' => $this->_membershipTypeID,
550 'join_date' => '2009-01-21',
551 'start_date' => '2009-01-21',
552 'end_date' => '2009-12-21',
553 'source' => 'Payment',
554 'is_override' => 1,
555 'status_id' => $this->_membershipStatusID,
556 'version' => 3,
557 );
558
559 $membership = $this->callAPISuccess('membership', 'create', $this->_membershipParams);
560 if ($this->objects['contribution']->id != $this->_contributionId) {
561 $contribution = new CRM_Contribute_BAO_Contribution();
562 $contribution->id = $this->_contributionId;
563 $contribution->find(TRUE);
564 $this->objects = array('contribution' => $contribution);
565 }
566 $this->_membershipId = $membership['id'];
567 //we'll create membership payment here because to make setup more re-usable
568 $this->callAPISuccess('membership_payment', 'create', array(
569 'contribution_id' => $this->_contributionId,
570 'membership_id' => $this->_membershipId,
571 ));
572
573 $this->input = array(
574 'component' => 'contribute',
575 'total_amount' => 150.00,
576 'invoiceID' => "c8acb91e080ad7bd8a2adc119c192885",
577 'contactID' => $this->_contactId,
578 'contributionID' => $this->_contributionId,
579 'membershipID' => $this->_membershipId,
580 );
581
582 $this->ids['membership'] = $this->_membershipId;
583 }
584
585 public function _setUpRecurringContribution() {
586 $this->_contributionRecurParams = array(
587 'contact_id' => $this->_contactId,
588 'amount' => 150.00,
589 'currency' => 'USD',
590 'frequency_unit' => 'week',
591 'frequency_interval' => 1,
592 'installments' => 2,
593 'start_date' => date('Ymd'),
594 'create_date' => date('Ymd'),
595 'invoice_id' => 'c8acb91e080ad7bd8a2adc119c192885',
596 'contribution_status_id' => 2,
597 'financial_type_id' => $this->_financialTypeId,
598 'version' => 3,
599 'payment_processor_id' => $this->_processorId,
600 );
601 $this->_recurId = $this->callAPISuccess('contribution_recur', 'create', $this->_contributionRecurParams);
602 $this->_recurId = $this->_recurId['id'];
603 $this->input['contributionRecurId'] = $this->_recurId;
604 $this->ids['contributionRecur'] = $this->_recurId;
605 }
606
607 /**
608 * Set up participant requirements for test.
609 */
610 public function _setUpParticipantObjects() {
611 $event = $this->eventCreate(array('is_email_confirm' => 1));
612
613 $this->_eventId = $event['id'];
614 $this->_participantId = $this->participantCreate(array(
615 'event_id' => $this->_eventId,
616 'contact_id' => $this->_contactId,
617 ));
618
619 $this->callAPISuccess('participant_payment', 'create', array(
620 'contribution_id' => $this->_contributionId,
621 'participant_id' => $this->_participantId,
622 ));
623
624 $contribution = new CRM_Contribute_BAO_Contribution();
625 $contribution->id = $this->_contributionId;
626 $contribution->find();
627 $this->objects['contribution'] = $contribution;
628 $this->input = array(
629 'component' => 'event',
630 'total_amount' => 150.00,
631 'invoiceID' => "c8acb91e080ad7bd8a2adc119c192885",
632 'contactID' => $this->_contactId,
633 'contributionID' => $contribution->id,
634 'participantID' => $this->_participantId,
635 );
636
637 $this->ids['participant'] = $this->_participantId;
638 $this->ids['event'] = $this->_eventId;
639 }
640
641 /**
642 * Set up participant requirements for test.
643 */
644 public function _setUpPledgeObjects() {
645 $this->_pledgeId = $this->pledgeCreate(array('contact_id' => $this->_contactId));
646 //we'll create membership payment here because to make setup more re-usable
647 $pledgePayment = $this->callAPISuccess('pledge_payment', 'create', array(
648 'version' => 3,
649 'pledge_id' => $this->_pledgeId,
650 'contribution_id' => $this->_contributionId,
651 'status_id' => 1,
652 'actual_amount' => 50,
653 ));
654
655 $this->input = array(
656 'component' => 'contribute',
657 'total_amount' => 150.00,
658 'invoiceID' => "c8acb91e080ad7bd8a2adc119c192885",
659 'contactID' => $this->_contactId,
660 'contributionID' => $this->_contributionId,
661 'pledgeID' => $this->_pledgeId,
662 );
663
664 $this->ids['pledge_payment'][] = $pledgePayment['id'];
665 }
666
667 }