test fix, remove old param & fix comments
[civicrm-core.git] / tests / phpunit / api / v3 / ContributionRecurTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
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();
80 $paymentProcessor = $this->processorCreate();
0cc123b5
RT
81 $token = $this->callAPISuccess('PaymentToken', 'create', array(
82 'payment_processor_id' => $paymentProcessor->id,
83 'token' => 'hhh',
84 'contact_id' => $this->individualCreate(),
85 ));
81c55926
RT
86 $params['payment_token_id'] = $token['id'];
87 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
88 $this->assertEquals(1, $result['count']);
89 $this->assertNotNull($result['values'][$result['id']]['id']);
90 $this->getAndCheck($this->params, $result['id'], $this->_entity);
91 }
92
6a488035 93 public function testDeleteContributionRecur() {
fc928539 94 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
95 $deleteParams = array('id' => $result['id']);
225d474b 96 $this->callAPIAndDocument($this->_entity, 'delete', $deleteParams, __FUNCTION__, __FILE__);
6c6e6187 97 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
fc928539 98 $this->assertEquals(0, $checkDeleted['count']);
6a488035
TO
99 }
100
101 public function testGetFieldsContributionRecur() {
fc928539 102 $result = $this->callAPISuccess($this->_entity, 'getfields', array('action' => 'create'));
6a488035
TO
103 $this->assertEquals(12, $result['values']['start_date']['type']);
104 }
96025800 105
6a488035 106}