commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / tests / phpunit / api / v3 / PaymentProcessorTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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 * Class contains api test cases for "civicrm_payment_processor"
32 *
33 */
34 class api_v3_PaymentProcessorTest extends CiviUnitTestCase {
35 protected $_paymentProcessorType;
36 protected $_apiversion = 3;
37 protected $_params;
38
39 public function setUp() {
40 parent::setUp();
41 $this->useTransaction(TRUE);
42 // Create dummy processor
43 $params = array(
44 'name' => 'API_Test_PP_Type',
45 'title' => 'API Test Payment Processor Type',
46 'class_name' => 'CRM_Core_Payment_APITest',
47 'billing_mode' => 'form',
48 'is_recur' => 0,
49 );
50 $result = $this->callAPISuccess('payment_processor_type', 'create', $params);
51 $this->_paymentProcessorType = $result['id'];
52 $this->_params = array(
53 'name' => 'API Test PP',
54 'payment_processor_type_id' => $this->_paymentProcessorType,
55 'class_name' => 'CRM_Core_Payment_APITest',
56 'is_recur' => 0,
57 'domain_id' => 1,
58 );
59 }
60
61 ///////////////// civicrm_payment_processor_add methods
62
63 /**
64 * Check with no name.
65 */
66 public function testPaymentProcessorCreateWithoutName() {
67 $payProcParams = array(
68 'is_active' => 1,
69 );
70 $result = $this->callAPIFailure('payment_processor', 'create', $payProcParams);
71 }
72
73 /**
74 * Create payment processor.
75 */
76 public function testPaymentProcessorCreate() {
77 $params = $this->_params;
78 $result = $this->callAPIAndDocument('payment_processor', 'create', $params, __FUNCTION__, __FILE__);
79 $this->assertNotNull($result['id'], 'in line ' . __LINE__);
80
81 //assertDBState compares expected values in $result to actual values in the DB
82 $this->assertDBState('CRM_Financial_DAO_PaymentProcessor', $result['id'], $params);
83 return $result['id'];
84 }
85
86 /**
87 * Test using example code.
88 */
89 public function testPaymentProcessorCreateExample() {
90 require_once 'api/v3/examples/PaymentProcessor/Create.php';
91 $result = payment_processor_create_example();
92 $expectedResult = payment_processor_create_expectedresult();
93 $this->assertAPISuccess($result);
94 }
95
96 ///////////////// civicrm_payment_processor_delete methods
97
98 /**
99 * Check payment processor delete.
100 */
101 public function testPaymentProcessorDelete() {
102 $id = $this->testPaymentProcessorCreate();
103 $params = array(
104 'id' => $id,
105 );
106
107 $result = $this->callAPIAndDocument('payment_processor', 'delete', $params, __FUNCTION__, __FILE__);
108 }
109
110 ///////////////// civicrm_payment_processors_get methods
111
112 /**
113 * Check with valid params array.
114 */
115 public function testPaymentProcessorsGet() {
116 $params = $this->_params;
117 $params['user_name'] = 'test@test.com';
118 $this->callAPISuccess('payment_processor', 'create', $params);
119
120 $params = array(
121 'user_name' => 'test@test.com',
122 );
123 $results = $this->callAPISuccess('payment_processor', 'get', $params);
124
125 $this->assertEquals(1, $results['count'], ' in line ' . __LINE__);
126 $this->assertEquals('test@test.com', $results['values'][$results['id']]['user_name'], ' in line ' . __LINE__);
127 }
128
129 }