Action schedule API modifications
[civicrm-core.git] / tests / phpunit / api / v3 / GroupOrganizationTest.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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
28require_once 'CiviTest/CiviUnitTestCase.php';
29
30
31/**
32 * Test class for GroupOrganization API - civicrm_group_organization_*
33 *
34 * @package CiviCRM
35 */
36class api_v3_GroupOrganizationTest extends CiviUnitTestCase {
37 protected $_apiversion;
38 public $_eNoticeCompliant = True;
39
40 function get_info() {
41 return array(
42 'name' => 'Group Organization',
43 'description' => 'Test all Group Organization API methods.',
44 'group' => 'CiviCRM API Tests',
45 );
46 }
47
48 /**
49 * Sets up the fixture, for example, opens a network connection.
50 * This method is called before a test is executed.
51 *
52 * @access protected
53 */
54 protected function setUp() {
55 $this->_apiversion = 3;
56 parent::setUp();
57 $this->_groupID = $this->groupCreate(NULL);
58
59 $this->_orgID = $this->organizationCreate(NULL);
60 }
61
62 /**
63 * Tears down the fixture, for example, closes a network connection.
64 * This method is called after a test is executed.
65 *
66 * @access protected
67 */
68 protected function tearDown() {
69 // Truncate the tables
70 $this->quickCleanup(
71 array(
72 'civicrm_group',
73 'civicrm_group_organization',
74 'civicrm_contact',
75 'civicrm_uf_group',
76 'civicrm_uf_join',
77 'civicrm_uf_match',
78 )
79 );
80 }
81
82 ///////////////// civicrm_group_organization_get methods
83
84 /**
85 * Test civicrm_group_organization_get with valid params.
86 */
87 public function testGroupOrganizationGet() {
88
89 $params = array(
90 'organization_id' => $this->_orgID,
2d34d4bb 91 'group_id' => $this->_groupID, );
92 $result = $this->callAPISuccess('group_organization', 'create', $params);
6a488035
TO
93 $paramsGet = array(
94 'organization_id' => $result['id'],
6a488035 95 );
2d34d4bb 96 $result = $this->callAPIAndDocument('group_organization', 'get', $paramsGet, __FUNCTION__, __FILE__);
6a488035
TO
97 }
98
99 /**
100 * Test civicrm_group_organization_get with group_id.
101 */
102 public function testGroupOrganizationGetWithGroupId() {
103
104 $params = array(
105 'organization_id' => $this->_orgID,
2d34d4bb 106 'group_id' => $this->_groupID, 'sequential' => 1,
6a488035 107 );
2d34d4bb 108 $result = $this->callAPISuccess('group_organization', 'create', $params);
6a488035
TO
109
110 $paramsGet = array('organization_id' => $result['values'][0]['organization_id']);
111
2d34d4bb 112 $result = $this->callAPISuccess('group_organization', 'get', $params);
791c263c 113 $this->assertAPISuccess($result);
6a488035
TO
114 }
115
116 /**
117 * Test civicrm_group_organization_get with empty params.
118 */
119 public function testGroupOrganizationGetWithEmptyParams() {
2d34d4bb 120 $params = array( );
121 $result = $this->callAPISuccess('group_organization', 'get', $params);
6a488035 122
791c263c 123 $this->assertAPISuccess($result);
6a488035
TO
124 }
125
126 /**
127 * Test civicrm_group_organization_get with wrong params.
128 */
129 public function testGroupOrganizationGetWithWrongParams() {
130 $params = 'groupOrg';
d0e1eff2 131 $result = $this->callAPIFailure('group_organization', 'get', $params);
6a488035
TO
132 $this->assertEquals($result['error_message'], 'Input variable `params` is not an array');
133 }
134
135 /**
136 * Test civicrm_group_organization_get invalid keys.
137 */
138 public function testGroupOrganizationGetWithInvalidKeys() {
139 $params = array(
2d34d4bb 140 'invalid_key' => 1, );
141 $result = $this->callAPISuccess('group_organization', 'get', $params);
6a488035 142
791c263c 143 $this->assertAPISuccess($result);
6a488035
TO
144 }
145
146 ///////////////// civicrm_group_organization_create methods
147
148 /**
149 * check with valid params
150 */
151 public function testGroupOrganizationCreate() {
152 $params = array(
153 'organization_id' => $this->_orgID,
2d34d4bb 154 'group_id' => $this->_groupID, );
155 $result = $this->callAPIAndDocument('group_organization', 'create', $params, __FUNCTION__, __FILE__);
6a488035
TO
156 }
157
c69fdfbb
E
158 /**
159 * CRM-13841 - Load Group Org before save
160 */
161 public function testGroupOrganizationCreateTwice() {
162 $params = array(
163 'organization_id' => $this->_orgID,
164 'group_id' => $this->_groupID, );
165 $result = $this->callAPISuccess('group_organization', 'create', $params);
166 $result2 = $this->callAPISuccess('group_organization', 'create', $params);
167 $this->assertEquals($result['values'], $result2['values']);
168 }
6a488035
TO
169 /**
170 * check with empty params array
171 */
172 public function testGroupOrganizationCreateWithEmptyParams() {
2d34d4bb 173 $params = array( );
d0e1eff2 174 $result = $this->callAPIFailure('group_organization', 'create', $params);
6a488035
TO
175 $this->assertEquals($result['error_message'], 'Mandatory key(s) missing from params array: group_id, organization_id');
176 }
177
178 /**
179 * check with invalid params
180 */
181 public function testGroupOrganizationCreateParamsNotArray() {
182 $params = 'group_org';
d0e1eff2 183 $result = $this->callAPIFailure('group_organization', 'create', $params);
6a488035
TO
184 $this->assertEquals($result['error_message'], 'Input variable `params` is not an array');
185 }
186
187 /**
188 * check with invalid params keys
189 */
190 public function testGroupOrganizationCreateWithInvalidKeys() {
191 $params = array(
2d34d4bb 192 'invalid_key' => 1, );
d0e1eff2 193 $result = $this->callAPIFailure('group_organization', 'create', $params);
6a488035
TO
194 $this->assertEquals($result['error_message'], 'Mandatory key(s) missing from params array: group_id, organization_id');
195 }
196
197 ///////////////// civicrm_group_organization_remove methods
198
199 /**
200 * Test civicrm_group_organization_remove with params not an array.
201 */
202 public function testGroupOrganizationDeleteParamsNotArray() {
203 $params = 'delete';
d0e1eff2 204 $result = $this->callAPIFailure('group_organization', 'delete', $params);
6a488035
TO
205 $this->assertEquals($result['error_message'], 'Input variable `params` is not an array');
206 }
207
208 /**
209 * Test civicrm_group_organization_remove with empty params.
210 */
211 public function testGroupOrganizationDeleteWithEmptyParams() {
2d34d4bb 212 $params = array( );
d0e1eff2 213 $result = $this->callAPIFailure('group_organization', 'delete', $params);
6a488035
TO
214 $this->assertEquals($result['error_message'], 'Mandatory key(s) missing from params array: id');
215 }
216
217 /**
218 * Test civicrm_group_organization_remove with valid params.
219 */
220 public function testGroupOrganizationDelete() {
221 $paramsC = array(
222 'organization_id' => $this->_orgID,
2d34d4bb 223 'group_id' => $this->_groupID, );
224 $result = $this->callAPISuccess('group_organization', 'create', $paramsC);
6a488035
TO
225
226 $params = array(
227 'id' => $result['id'],
6a488035 228 );
2d34d4bb 229 $result = $this->callAPIAndDocument('group_organization', 'delete', $params, __FUNCTION__, __FILE__);
6a488035
TO
230 }
231
232 /**
233 * Test civicrm_group_organization_remove with invalid params key.
234 */
235 public function testGroupOrganizationDeleteWithInvalidKey() {
236 $paramsDelete = array(
2d34d4bb 237 'invalid_key' => 1, );
d0e1eff2 238 $result = $this->callAPIFailure('group_organization', 'delete', $paramsDelete);
6a488035
TO
239 $this->assertEquals($result['error_message'], 'Mandatory key(s) missing from params array: id');
240 }
241}
242