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