Merge pull request #7648 from eileenmcnaughton/master
[civicrm-core.git] / tests / phpunit / api / v3 / ContributionRecurTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28require_once 'CiviTest/CiviUnitTestCase.php';
29
30
31/**
32 * Test APIv3 civicrm_contribute_recur* functions
33 *
6c6e6187
TO
34 * @package CiviCRM_APIv3
35 * @subpackage API_Contribution
6a488035 36 */
6a488035
TO
37class api_v3_ContributionRecurTest extends CiviUnitTestCase {
38 protected $_apiversion = 3;
39 protected $params;
40 protected $ids = array();
41 protected $_entity = 'contribution_recur';
b7c9bc4c 42
430ae6dd
TO
43 public $DBResetRequired = FALSE;
44
00be9182 45 public function setUp() {
6a488035 46 parent::setUp();
5057e8e8 47 $this->useTransaction(TRUE);
6a488035
TO
48 $this->ids['contact'][0] = $this->individualCreate();
49 $this->params = array(
6a488035
TO
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
6a488035 61 public function testCreateContributionRecur() {
fc928539 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']);
6a488035
TO
65 $this->getAndCheck($this->params, $result['id'], $this->_entity);
66 }
67
68 public function testGetContributionRecur() {
225d474b 69 $this->callAPISuccess($this->_entity, 'create', $this->params);
6a488035 70 $getParams = array(
6a488035
TO
71 'amount' => '500',
72 );
fc928539 73 $result = $this->callAPIAndDocument($this->_entity, 'get', $getParams, __FUNCTION__, __FILE__);
74 $this->assertEquals(1, $result['count']);
6a488035
TO
75 }
76
81c55926
RT
77 public function testCreateContributionRecurWithToken() {
78 // create token
79 $this->createLoggedInUser();
0cc123b5 80 $token = $this->callAPISuccess('PaymentToken', 'create', array(
8950ecdc 81 'payment_processor_id' => $this->processorCreate(),
0cc123b5
RT
82 'token' => 'hhh',
83 'contact_id' => $this->individualCreate(),
84 ));
81c55926
RT
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
6a488035 92 public function testDeleteContributionRecur() {
fc928539 93 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
94 $deleteParams = array('id' => $result['id']);
225d474b 95 $this->callAPIAndDocument($this->_entity, 'delete', $deleteParams, __FUNCTION__, __FILE__);
6c6e6187 96 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
fc928539 97 $this->assertEquals(0, $checkDeleted['count']);
6a488035
TO
98 }
99
100 public function testGetFieldsContributionRecur() {
fc928539 101 $result = $this->callAPISuccess($this->_entity, 'getfields', array('action' => 'create'));
6a488035
TO
102 $this->assertEquals(12, $result['values']['start_date']['type']);
103 }
96025800 104
6a488035 105}