test break fixes
[civicrm-core.git] / tests / phpunit / api / v3 / ContributionRecurTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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 class api_v3_ContributionRecurTest extends CiviUnitTestCase {
38 protected $_apiversion = 3;
39 protected $params;
40 protected $ids = array();
41 protected $_entity = 'contribution_recur';
42
43 public $DBResetRequired = FALSE;
44
45 public function setUp() {
46 parent::setUp();
47 $this->useTransaction(TRUE);
48 $this->ids['contact'][0] = $this->individualCreate();
49 $this->params = array(
50 'contact_id' => $this->ids['contact'][0],
51 'installments' => '12',
52 'frequency_interval' => '1',
53 'amount' => '500',
54 'contribution_status_id' => 1,
55 'start_date' => '2012-01-01 00:00:00',
56 'currency' => 'USD',
57 'frequency_unit' => 'day',
58 );
59 }
60
61 public function testCreateContributionRecur() {
62 $result = $this->callAPIAndDocument($this->_entity, 'create', $this->params, __FUNCTION__, __FILE__);
63 $this->assertEquals(1, $result['count']);
64 $this->assertNotNull($result['values'][$result['id']]['id']);
65 $this->getAndCheck($this->params, $result['id'], $this->_entity);
66 }
67
68 public function testGetContributionRecur() {
69 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
70 $getParams = array(
71 'amount' => '500',
72 );
73 $result = $this->callAPIAndDocument($this->_entity, 'get', $getParams, __FUNCTION__, __FILE__);
74 $this->assertEquals(1, $result['count']);
75 }
76
77 public function testDeleteContributionRecur() {
78 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
79 $deleteParams = array('id' => $result['id']);
80 $result = $this->callAPIAndDocument($this->_entity, 'delete', $deleteParams, __FUNCTION__, __FILE__);
81 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
82 $this->assertEquals(0, $checkDeleted['count']);
83 }
84
85 public function testGetFieldsContributionRecur() {
86 $result = $this->callAPISuccess($this->_entity, 'getfields', array('action' => 'create'));
87 $this->assertEquals(12, $result['values']['start_date']['type']);
88 }
89 }