Merge pull request #6892 from eileenmcnaughton/CRM-17225-report-save
[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 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 $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 testCreateContributionRecurWithToken() {
78 // create token
79 $this->createLoggedInUser();
80 $token = $this->callAPISuccess('PaymentToken', 'create', array(
81 'payment_processor_id' => $this->processorCreate(),
82 'token' => 'hhh',
83 'contact_id' => $this->individualCreate(),
84 ));
85 $params['payment_token_id'] = $token['id'];
86 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
87 $this->assertEquals(1, $result['count']);
88 $this->assertNotNull($result['values'][$result['id']]['id']);
89 $this->getAndCheck($this->params, $result['id'], $this->_entity);
90 }
91
92 public function testDeleteContributionRecur() {
93 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
94 $deleteParams = array('id' => $result['id']);
95 $this->callAPIAndDocument($this->_entity, 'delete', $deleteParams, __FUNCTION__, __FILE__);
96 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
97 $this->assertEquals(0, $checkDeleted['count']);
98 }
99
100 public function testGetFieldsContributionRecur() {
101 $result = $this->callAPISuccess($this->_entity, 'getfields', array('action' => 'create'));
102 $this->assertEquals(12, $result['values']['start_date']['type']);
103 }
104
105 }