Merge pull request #7732 from eileenmcnaughton/CRM-17951
[civicrm-core.git] / tests / phpunit / api / v3 / ContributionRecurTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 * Test APIv3 civicrm_contribute_recur* functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_Contribution
33 */
34 class api_v3_ContributionRecurTest extends CiviUnitTestCase {
35 protected $_apiversion = 3;
36 protected $params;
37 protected $ids = array();
38 protected $_entity = 'contribution_recur';
39
40 public $DBResetRequired = FALSE;
41
42 public function setUp() {
43 parent::setUp();
44 $this->useTransaction(TRUE);
45 $this->ids['contact'][0] = $this->individualCreate();
46 $this->params = array(
47 'contact_id' => $this->ids['contact'][0],
48 'installments' => '12',
49 'frequency_interval' => '1',
50 'amount' => '500',
51 'contribution_status_id' => 1,
52 'start_date' => '2012-01-01 00:00:00',
53 'currency' => 'USD',
54 'frequency_unit' => 'day',
55 );
56 }
57
58 public function testCreateContributionRecur() {
59 $result = $this->callAPIAndDocument($this->_entity, 'create', $this->params, __FUNCTION__, __FILE__);
60 $this->assertEquals(1, $result['count']);
61 $this->assertNotNull($result['values'][$result['id']]['id']);
62 $this->getAndCheck($this->params, $result['id'], $this->_entity);
63 }
64
65 public function testGetContributionRecur() {
66 $this->callAPISuccess($this->_entity, 'create', $this->params);
67 $getParams = array(
68 'amount' => '500',
69 );
70 $result = $this->callAPIAndDocument($this->_entity, 'get', $getParams, __FUNCTION__, __FILE__);
71 $this->assertEquals(1, $result['count']);
72 }
73
74 public function testCreateContributionRecurWithToken() {
75 // create token
76 $this->createLoggedInUser();
77 $token = $this->callAPISuccess('PaymentToken', 'create', array(
78 'payment_processor_id' => $this->processorCreate(),
79 'token' => 'hhh',
80 'contact_id' => $this->individualCreate(),
81 ));
82 $params['payment_token_id'] = $token['id'];
83 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
84 $this->assertEquals(1, $result['count']);
85 $this->assertNotNull($result['values'][$result['id']]['id']);
86 $this->getAndCheck($this->params, $result['id'], $this->_entity);
87 }
88
89 public function testDeleteContributionRecur() {
90 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
91 $deleteParams = array('id' => $result['id']);
92 $this->callAPIAndDocument($this->_entity, 'delete', $deleteParams, __FUNCTION__, __FILE__);
93 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
94 $this->assertEquals(0, $checkDeleted['count']);
95 }
96
97 public function testGetFieldsContributionRecur() {
98 $result = $this->callAPISuccess($this->_entity, 'getfields', array('action' => 'create'));
99 $this->assertEquals(12, $result['values']['start_date']['type']);
100 }
101
102 }