Merge pull request #12029 from totten/master-xml-headers
[civicrm-core.git] / tests / phpunit / api / v3 / OptionValueTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 /**
29 * Class api_v3_OptionValueTest
30 * @group headless
31 */
32 class api_v3_OptionValueTest extends CiviUnitTestCase {
33 protected $_apiversion = 3;
34
35 public function setUp() {
36 parent::setUp();
37 $this->useTransaction(TRUE);
38 }
39
40 public function testGetCount() {
41 $result = $this->callAPISuccess('option_value', 'getcount', array());
42 $this->assertGreaterThan(100, $result);
43 }
44
45 public function testGetOptionValueByID() {
46 $result = $this->callAPISuccess('option_value', 'get', array('id' => 1));
47 $this->assertEquals(1, $result['count']);
48 $this->assertEquals(1, $result['id']);
49 }
50
51 public function testGetOptionValueByValue() {
52 $result = $this->callAPISuccess('option_value', 'get', array('option_group_id' => 1, 'value' => '1'));
53 $this->assertEquals(1, $result['count']);
54 $this->assertEquals(1, $result['id']);
55 }
56
57 /**
58 * Test limit param.
59 */
60 public function testGetOptionValueLimit() {
61 $params = array();
62 $result = $this->callAPISuccess('option_value', 'get', $params);
63 $this->assertGreaterThan(1, $result['count'], "Check more than one exists In line " . __LINE__);
64 $params['options']['limit'] = 1;
65 $result = $this->callAPISuccess('option_value', 'get', $params);
66 $this->assertEquals(1, $result['count'], "Check only 1 retrieved " . __LINE__);
67 }
68
69 /**
70 * Test offset param.
71 */
72 public function testGetOptionValueOffSet() {
73
74 $result = $this->callAPISuccess('option_value', 'get', array(
75 'option_group_id' => 1,
76 'value' => '1',
77 ));
78 $result2 = $this->callAPISuccess('option_value', 'get', array(
79 'option_group_id' => 1,
80 'value' => '1',
81 'options' => array('offset' => 1),
82 ));
83 $this->assertGreaterThan($result2['count'], $result['count']);
84 }
85
86 /**
87 * Test offset param.
88 */
89 public function testGetSingleValueOptionValueSort() {
90 $description = "Demonstrates use of Sort param (available in many api functions). Also, getsingle.";
91 $subfile = 'SortOption';
92 $result = $this->callAPISuccess('option_value', 'getsingle', array(
93 'option_group_id' => 1,
94 'options' => array(
95 'sort' => 'label ASC',
96 'limit' => 1,
97 ),
98 ));
99 $params = array(
100 'option_group_id' => 1,
101 'options' => array(
102 'sort' => 'label DESC',
103 'limit' => 1,
104 ),
105 );
106 $result2 = $this->callAPIAndDocument('option_value', 'getsingle', $params, __FUNCTION__, __FILE__, $description, $subfile);
107 $this->assertGreaterThan($result['label'], $result2['label']);
108 }
109
110 /**
111 * Try to emulate a pagination: fetch the first page of 10 options, then fetch the second page with an offset of 9 (instead of 10) and check the start of the second page is the end of the 1st one.
112 */
113 public function testGetValueOptionPagination() {
114 $pageSize = 10;
115 $page1 = $this->callAPISuccess('option_value', 'get', array('options' => array('limit' => $pageSize)));
116 $page2 = $this->callAPISuccess('option_value', 'get', array(
117 'options' => array(
118 'limit' => $pageSize,
119 // if you use it for pagination, option.offset=pageSize*pageNumber
120 'offset' => $pageSize - 1,
121 ),
122 ));
123 $this->assertEquals($pageSize, $page1['count'], "Check only 10 retrieved in the 1st page " . __LINE__);
124 $this->assertEquals($pageSize, $page2['count'], "Check only 10 retrieved in the 2nd page " . __LINE__);
125
126 $last = array_pop($page1['values']);
127 $first = array_shift($page2['values']);
128
129 $this->assertEquals($first, $last, "the first item of the second page should be the last of the 1st page" . __LINE__);
130 }
131
132 public function testGetOptionGroup() {
133 $params = array('option_group_id' => 1);
134 $result = $this->callAPIAndDocument('option_value', 'get', $params, __FUNCTION__, __FILE__);
135 $this->assertGreaterThan(1, $result['count']);
136 }
137
138 /**
139 * Test that using option_group_name returns more than 1 & less than all
140 */
141 public function testGetOptionGroupByName() {
142 $activityTypesParams = array('option_group_name' => 'activity_type', 'option.limit' => 100);
143 $params = array('option.limit' => 100);
144 $activityTypes = $this->callAPISuccess('option_value', 'get', $activityTypesParams);
145 $result = $this->callAPISuccess('option_value', 'get', $params);
146 $this->assertGreaterThan(1, $activityTypes['count']);
147 $this->assertGreaterThan($activityTypes['count'], $result['count']);
148 }
149
150 public function testGetOptionDoesNotExist() {
151 $result = $this->callAPISuccess('option_value', 'get', array('label' => 'FSIGUBSFGOMUUBSFGMOOUUBSFGMOOBUFSGMOOIIB'));
152 $this->assertEquals(0, $result['count']);
153 }
154
155 /**
156 * Check that domain_id is honoured.
157 */
158 public function testCreateOptionSpecifyDomain() {
159 $result = $this->callAPISuccess('option_group', 'get', array(
160 'name' => 'from_email_address',
161 'sequential' => 1,
162 'api.option_value.create' => array('domain_id' => 2, 'name' => 'my@y.com', 'value' => '10'),
163 ));
164
165 $optionValueId = $result['values'][0]['api.option_value.create']['id'];
166 $domain_id = $this->callAPISuccess('option_value', 'getvalue', array(
167 'id' => $optionValueId,
168 'return' => 'domain_id',
169 ));
170 $this->assertEquals(2, $domain_id);
171 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValueId));
172 }
173
174 /**
175 * Check that component_id is honoured.
176 */
177 public function testCreateOptionSpecifyComponentID() {
178 $result = $this->callAPISuccess('option_group', 'get', array(
179 'name' => 'from_email_address',
180 'sequential' => 1,
181 'api.option_value.create' => array('component_id' => 2, 'name' => 'my@y.com'),
182 ));
183 $this->assertAPISuccess($result);
184 $optionValueId = $result['values'][0]['api.option_value.create']['id'];
185 $component_id = $this->callAPISuccess('option_value', 'getvalue', array(
186 'id' => $optionValueId,
187 'return' => 'component_id',
188 ));
189 $this->assertEquals(2, $component_id);
190 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValueId));
191 }
192
193 /**
194 * Check that component string is honoured.
195 */
196 public function testCreateOptionSpecifyComponentString() {
197 $result = $this->callAPISuccess('option_group', 'get', array(
198 'name' => 'from_email_address',
199 'sequential' => 1,
200 'api.option_value.create' => array(
201 'component_id' => 'CiviContribute',
202 'name' => 'my@y.com',
203 ),
204 ));
205 $this->assertAPISuccess($result);
206 $optionValueId = $result['values'][0]['api.option_value.create']['id'];
207 $component_id = $this->callAPISuccess('option_value', 'getvalue', array(
208 'id' => $optionValueId,
209 'return' => 'component_id',
210 ));
211 $this->assertEquals(2, $component_id);
212 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValueId));
213 }
214
215 /**
216 * Check that component is honoured when fetching options.
217 */
218 public function testGetOptionWithComponent() {
219 $components = Civi::settings()->get('enable_components');
220 CRM_Core_BAO_ConfigSetting::enableComponent('CiviContribute');
221 $this->callAPISuccess('option_group', 'get', array(
222 'name' => 'gender',
223 'api.option_value.create' => array(
224 'component_id' => 'CiviContribute',
225 'name' => 'Contrib',
226 ),
227 ));
228 // Verify new option is present
229 $genders = $this->callAPISuccess('contact', 'getoptions', array(
230 'field' => 'gender_id',
231 'context' => 'create',
232 ));
233 $this->assertContains('Contrib', $genders['values']);
234
235 // Disable relevant component
236 CRM_Core_BAO_ConfigSetting::disableComponent('CiviContribute');
237 CRM_Core_PseudoConstant::flush();
238 // New option should now be hidden for "create" context
239 $genders = $this->callAPISuccess('contact', 'getoptions', array(
240 'field' => 'gender_id',
241 'context' => 'create',
242 ));
243 $this->assertNotContains('Contrib', $genders['values']);
244 // New option should be visible for "get" context even with component disabled
245 $genders = $this->callAPISuccess('contact', 'getoptions', array(
246 'field' => 'gender_id',
247 'context' => 'get',
248 ));
249 $this->assertContains('Contrib', $genders['values']);
250
251 // Now disable all components and ensure we can still fetch options with no errors
252 CRM_Core_BAO_ConfigSetting::setEnabledComponents(array());
253 CRM_Core_PseudoConstant::flush();
254 // New option should still be hidden for "create" context
255 $genders = $this->callAPISuccess('contact', 'getoptions', array(
256 'field' => 'gender_id',
257 'context' => 'create',
258 ));
259 $this->assertNotContains('Contrib', $genders['values']);
260
261 // Restore original state
262 CRM_Core_BAO_ConfigSetting::setEnabledComponents($components);
263 }
264
265 /**
266 * Check that domain_id is honoured.
267 */
268 public function testCRM12133CreateOptionWeightNoValue() {
269 $optionGroup = $this->callAPISuccess(
270 'option_group', 'get', array(
271 'name' => 'gender',
272 'sequential' => 1,
273 )
274 );
275 $this->assertAPISuccess($optionGroup);
276 $params = array(
277 'option_group_id' => $optionGroup['id'],
278 'label' => 'my@y.com',
279 'weight' => 3,
280 );
281 $optionValue = $this->callAPISuccess('option_value', 'create', $params);
282 $this->assertAPISuccess($optionValue);
283 $params['weight'] = 4;
284 $optionValue2 = $this->callAPISuccess('option_value', 'create', $params);
285 $this->assertAPISuccess($optionValue2);
286 $options = $this->callAPISuccess('option_value', 'get', array('option_group_id' => $optionGroup['id']));
287 $this->assertNotEquals($options['values'][$optionValue['id']]['value'], $options['values'][$optionValue2['id']]['value']);
288
289 //cleanup
290 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValue['id']));
291 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValue2['id']));
292 }
293
294 /**
295 * Check that domain_id is honoured.
296 */
297 public function testCreateOptionNoName() {
298 $optionGroup = $this->callAPISuccess('option_group', 'get', array(
299 'name' => 'gender',
300 'sequential' => 1,
301 ));
302
303 $params = array('option_group_id' => $optionGroup['id'], 'label' => 'my@y.com');
304 $optionValue = $this->callAPISuccess('option_value', 'create', $params);
305 $this->assertAPISuccess($optionValue);
306 $this->getAndCheck($params, $optionValue['id'], 'option_value');
307 }
308
309 /**
310 * Check that pseudoconstant reflects new value added.
311 */
312 public function testCRM11876CreateOptionPseudoConstantUpdated() {
313 $optionGroupID = $this->callAPISuccess('option_group', 'getvalue', array(
314 'name' => 'payment_instrument',
315 'return' => 'id',
316 ));
317 $newOption = (string) time();
318 $apiResult = $this->callAPISuccess('option_value', 'create', array(
319 'option_group_id' => $optionGroupID,
320 'label' => $newOption,
321 ));
322
323 $fields = $this->callAPISuccess('contribution', 'getoptions', array('field' => 'payment_instrument_id'));
324 $this->assertTrue(in_array($newOption, $fields['values']));
325
326 $this->callAPISuccess('option_value', 'delete', array('id' => $apiResult['id']));
327
328 $fields = $this->callAPISuccess('contribution', 'getoptions', array('field' => 'payment_instrument_id'));
329 $this->assertFalse(in_array($newOption, $fields['values']));
330 }
331
332
333 /**
334 * Update option value with 'id' parameter and the value to update
335 * and not passing option group id
336 */
337 public function testUpdateOptionValueNoGroupId() {
338 // create a option group
339 $og = $this->callAPISuccess('option_group', 'create', array('name' => 'our test Option Group', 'is_active' => 1));
340 // create a option value
341 $ov = $this->callAPISuccess('option_value', 'create',
342 array('option_group_id' => $og['id'], 'label' => 'test option value')
343 );
344 // update option value without 'option_group_id'
345 $res = $this->callAPISuccess('option_value', 'create', array('id' => $ov['id'], 'is_active' => 0));
346 $val = $this->callAPISuccess('option_value', 'getvalue', array(
347 'id' => $ov['id'],
348 'return' => 'is_active',
349 ));
350 $this->assertEquals($val, 0, "update with no group id is not proper" . __LINE__);
351 }
352
353 /**
354 * Update option value with 'id' parameter and the value to update
355 * and as well as option group id
356 */
357 public function testUpdateOptionValueWithGroupId() {
358 // create a option group
359 $og = $this->callAPISuccess('option_group', 'create', array(
360 'name' => 'our test Option Group for with group id',
361 'is_active' => 1,
362 ));
363 // create a option value
364 $ov = $this->callAPISuccess('option_value', 'create',
365 array('option_group_id' => $og['id'], 'label' => 'test option value')
366 );
367 // update option value without 'option_group_id'
368 $this->callAPISuccess('option_value', 'create', array(
369 'id' => $ov['id'],
370 'option_group_id' => $og['id'],
371 'is_active' => 0,
372 ));
373 $val = $this->callAPISuccess('option_value', 'getvalue', array(
374 'id' => $ov['id'],
375 'return' => 'is_active',
376 ));
377 $this->assertEquals($val, 0, "update with group id is not proper " . __LINE__);
378 }
379
380 /**
381 * CRM-19346 Ensure that Option Values cannot share same value in the same option value group
382 */
383 public function testCreateOptionValueWithSameValue() {
384 $og = $this->callAPISuccess('option_group', 'create', array(
385 'name' => 'our test Option Group for with group id',
386 'is_active' => 1,
387 ));
388 // create a option value
389 $ov = $this->callAPISuccess('option_value', 'create',
390 array('option_group_id' => $og['id'], 'label' => 'test option value')
391 );
392 // update option value without 'option_group_id'
393 $this->callAPIFailure('option_value', 'create',
394 array('option_group_id' => $og['id'], 'label' => 'Test 2nd option value', 'value' => $ov['values'][$ov['id']]['value'])
395 );
396 }
397
398 /**
399 * CRM-21737 Ensure that language Option Values CAN share same value.
400 */
401 public function testCreateOptionValueWithSameValueLanguagesException() {
402 $this->callAPISuccess('option_value', 'create',
403 ['option_group_id' => 'languages', 'label' => 'Quasi English', 'name' => 'en_Qu', 'value' => 'en']
404 );
405 $this->callAPISuccess('option_value', 'create',
406 ['option_group_id' => 'languages', 'label' => 'Semi English', 'name' => 'en_Se', 'value' => 'en']
407 );
408
409 }
410
411 public function testCreateOptionValueWithSameValueDiffOptionGroup() {
412 $og = $this->callAPISuccess('option_group', 'create', array(
413 'name' => 'our test Option Group for with group id',
414 'is_active' => 1,
415 ));
416 // create a option value
417 $ov = $this->callAPISuccess('option_value', 'create',
418 array('option_group_id' => $og['id'], 'label' => 'test option value')
419 );
420 $og2 = $this->callAPISuccess('option_group', 'create', array(
421 'name' => 'our test Option Group for with group id 2',
422 'is_active' => 1,
423 ));
424 // update option value without 'option_group_id'
425 $ov2 = $this->callAPISuccess('option_value', 'create',
426 array('option_group_id' => $og2['id'], 'label' => 'Test 2nd option value', 'value' => $ov['values'][$ov['id']]['value'])
427 );
428 }
429
430 }