3 +--------------------------------------------------------------------+
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
29 * Class api_v3_OptionValueTest
32 class api_v3_OptionValueTest
extends CiviUnitTestCase
{
33 protected $_apiversion = 3;
35 public function setUp() {
37 $this->useTransaction(TRUE);
40 public function testGetCount() {
41 $result = $this->callAPISuccess('option_value', 'getcount', array());
42 $this->assertGreaterThan(100, $result);
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']);
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']);
60 public function testGetOptionValueLimit() {
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__
);
72 public function testGetOptionValueOffSet() {
74 $result = $this->callAPISuccess('option_value', 'get', array(
75 'option_group_id' => 1,
78 $result2 = $this->callAPISuccess('option_value', 'get', array(
79 'option_group_id' => 1,
81 'options' => array('offset' => 1),
83 $this->assertGreaterThan($result2['count'], $result['count']);
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,
95 'sort' => 'label ASC',
100 'option_group_id' => 1,
102 'sort' => 'label DESC',
106 $result2 = $this->callAPIAndDocument('option_value', 'getsingle', $params, __FUNCTION__
, __FILE__
, $description, $subfile);
107 $this->assertGreaterThan($result['label'], $result2['label']);
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.
113 public function testGetValueOptionPagination() {
115 $page1 = $this->callAPISuccess('option_value', 'get', array('options' => array('limit' => $pageSize)));
116 $page2 = $this->callAPISuccess('option_value', 'get', array(
118 'limit' => $pageSize,
119 // if you use it for pagination, option.offset=pageSize*pageNumber
120 'offset' => $pageSize - 1,
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__
);
126 $last = array_pop($page1['values']);
127 $first = array_shift($page2['values']);
129 $this->assertEquals($first, $last, "the first item of the second page should be the last of the 1st page" . __LINE__
);
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']);
139 * Test that using option_group_name returns more than 1 & less than all
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']);
150 public function testGetOptionDoesNotExist() {
151 $result = $this->callAPISuccess('option_value', 'get', array('label' => 'FSIGUBSFGOMUUBSFGMOOUUBSFGMOOBUFSGMOOIIB'));
152 $this->assertEquals(0, $result['count']);
156 * Check that domain_id is honoured.
158 public function testCreateOptionSpecifyDomain() {
159 $result = $this->callAPISuccess('option_group', 'get', array(
160 'name' => 'from_email_address',
162 'api.option_value.create' => array('domain_id' => 2, 'name' => 'my@y.com', 'value' => '10'),
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',
170 $this->assertEquals(2, $domain_id);
171 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValueId));
175 * Check that component_id is honoured.
177 public function testCreateOptionSpecifyComponentID() {
178 $result = $this->callAPISuccess('option_group', 'get', array(
179 'name' => 'from_email_address',
181 'api.option_value.create' => array('component_id' => 2, 'name' => 'my@y.com'),
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',
189 $this->assertEquals(2, $component_id);
190 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValueId));
194 * Check that component string is honoured.
196 public function testCreateOptionSpecifyComponentString() {
197 $result = $this->callAPISuccess('option_group', 'get', array(
198 'name' => 'from_email_address',
200 'api.option_value.create' => array(
201 'component_id' => 'CiviContribute',
202 'name' => 'my@y.com',
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',
211 $this->assertEquals(2, $component_id);
212 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValueId));
216 * Check that component is honoured when fetching options.
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(
223 'api.option_value.create' => array(
224 'component_id' => 'CiviContribute',
228 // Verify new option is present
229 $genders = $this->callAPISuccess('contact', 'getoptions', array(
230 'field' => 'gender_id',
231 'context' => 'create',
233 $this->assertContains('Contrib', $genders['values']);
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',
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',
249 $this->assertContains('Contrib', $genders['values']);
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',
259 $this->assertNotContains('Contrib', $genders['values']);
261 // Restore original state
262 CRM_Core_BAO_ConfigSetting
::setEnabledComponents($components);
266 * Check that domain_id is honoured.
268 public function testCRM12133CreateOptionWeightNoValue() {
269 $optionGroup = $this->callAPISuccess(
270 'option_group', 'get', array(
275 $this->assertAPISuccess($optionGroup);
277 'option_group_id' => $optionGroup['id'],
278 'label' => 'my@y.com',
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']);
290 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValue['id']));
291 $this->callAPISuccess('option_value', 'delete', array('id' => $optionValue2['id']));
295 * Check that domain_id is honoured.
297 public function testCreateOptionNoName() {
298 $optionGroup = $this->callAPISuccess('option_group', 'get', array(
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');
310 * Check that pseudoconstant reflects new value added.
312 public function testCRM11876CreateOptionPseudoConstantUpdated() {
313 $optionGroupID = $this->callAPISuccess('option_group', 'getvalue', array(
314 'name' => 'payment_instrument',
317 $newOption = (string) time();
318 $apiResult = $this->callAPISuccess('option_value', 'create', array(
319 'option_group_id' => $optionGroupID,
320 'label' => $newOption,
323 $fields = $this->callAPISuccess('contribution', 'getoptions', array('field' => 'payment_instrument_id'));
324 $this->assertTrue(in_array($newOption, $fields['values']));
326 $this->callAPISuccess('option_value', 'delete', array('id' => $apiResult['id']));
328 $fields = $this->callAPISuccess('contribution', 'getoptions', array('field' => 'payment_instrument_id'));
329 $this->assertFalse(in_array($newOption, $fields['values']));
334 * Update option value with 'id' parameter and the value to update
335 * and not passing option group id
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')
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(
348 'return' => 'is_active',
350 $this->assertEquals($val, 0, "update with no group id is not proper" . __LINE__
);
354 * Update option value with 'id' parameter and the value to update
355 * and as well as option group id
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',
363 // create a option value
364 $ov = $this->callAPISuccess('option_value', 'create',
365 array('option_group_id' => $og['id'], 'label' => 'test option value')
367 // update option value without 'option_group_id'
368 $this->callAPISuccess('option_value', 'create', array(
370 'option_group_id' => $og['id'],
373 $val = $this->callAPISuccess('option_value', 'getvalue', array(
375 'return' => 'is_active',
377 $this->assertEquals($val, 0, "update with group id is not proper " . __LINE__
);
381 * CRM-19346 Ensure that Option Values cannot share same value in the same option value group
383 public function testCreateOptionValueWithSameValue() {
384 $og = $this->callAPISuccess('option_group', 'create', array(
385 'name' => 'our test Option Group for with group id',
388 // create a option value
389 $ov = $this->callAPISuccess('option_value', 'create',
390 array('option_group_id' => $og['id'], 'label' => 'test option value')
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'])
399 * CRM-21737 Ensure that language Option Values CAN share same value.
401 public function testCreateOptionValueWithSameValueLanguagesException() {
402 $this->callAPISuccess('option_value', 'create',
403 ['option_group_id' => 'languages', 'label' => 'Quasi English', 'name' => 'en_Qu', 'value' => 'en']
405 $this->callAPISuccess('option_value', 'create',
406 ['option_group_id' => 'languages', 'label' => 'Semi English', 'name' => 'en_Se', 'value' => 'en']
411 public function testCreateOptionValueWithSameValueDiffOptionGroup() {
412 $og = $this->callAPISuccess('option_group', 'create', array(
413 'name' => 'our test Option Group for with group id',
416 // create a option value
417 $ov = $this->callAPISuccess('option_value', 'create',
418 array('option_group_id' => $og['id'], 'label' => 'test option value')
420 $og2 = $this->callAPISuccess('option_group', 'create', array(
421 'name' => 'our test Option Group for with group id 2',
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'])
431 * Test to create and update payment method with financial account.
433 public function testCreateUpdateOptionValueForPaymentInstrument() {
434 $assetFinancialAccountId = $this->callAPISuccessGetValue('FinancialAccount', [
436 'financial_account_type_id' => "Asset",
437 'options' => ['limit' => 1],
439 // create new payment method with financial account
440 $ov = $this->callAPISuccess('OptionValue', 'create', [
441 'financial_account_id' => $assetFinancialAccountId,
442 'option_group_id' => "payment_instrument",
443 'label' => "Dummy Payment Method",
446 //check if relationship is created between Payment method and Financial Account
447 $this->checkPaymentMethodFinancialAccountRelationship($ov['id'], $assetFinancialAccountId);
449 // update payment method to have different non-asset financial Account
450 $nonAssetFinancialAccountId = $this->callAPISuccessGetValue('FinancialAccount', [
452 'financial_account_type_id' => ['NOT IN' => ["Asset"]],
453 'options' => ['limit' => 1],
456 $result = $this->callAPISuccess('OptionValue', 'create', [
457 'financial_account_id' => $nonAssetFinancialAccountId,
460 throw new API_Exception(ts('Should throw error.'));
462 catch (Exception
$e) {
464 $assetAccountRelValue = $this->callAPISuccessGetValue('EntityFinancialAccount', [
465 'return' => "account_relationship",
466 'entity_table' => "civicrm_option_value",
467 'entity_id' => $ov['id'],
468 'financial_account_id' => $nonAssetFinancialAccountId,
470 throw new API_Exception(ts('Should throw error.'));
472 catch (Exception
$e) {
473 $this->checkPaymentMethodFinancialAccountRelationship($ov['id'], $assetFinancialAccountId);
476 // update payment method to have different asset financial Account
477 $assetFinancialAccountId = $this->callAPISuccessGetValue('FinancialAccount', [
479 'financial_account_type_id' => "Asset",
480 'options' => ['limit' => 1],
481 'id' => ['NOT IN' => [$assetFinancialAccountId]],
483 $result = $this->callAPISuccess('OptionValue', 'create', [
484 'financial_account_id' => $assetFinancialAccountId,
487 //check if relationship is updated between Payment method and Financial Account
488 $this->checkPaymentMethodFinancialAccountRelationship($ov['id'], $assetFinancialAccountId);
492 * Function to check relationship between FA and Payment method.
494 * @param int $paymentMethodId
495 * @param int $financialAccountId
497 protected function checkPaymentMethodFinancialAccountRelationship($paymentMethodId, $financialAccountId) {
498 $assetAccountRelValue = $this->callAPISuccessGetValue('EntityFinancialAccount', [
499 'return' => "account_relationship",
500 'entity_table' => "civicrm_option_value",
501 'entity_id' => $paymentMethodId,
502 'financial_account_id' => $financialAccountId,
504 $checkAssetAccountIs = $this->callAPISuccessGetValue('OptionValue', [
506 'option_group_id' => "account_relationship",
507 'name' => "Asset Account is",
508 'value' => $assetAccountRelValue,