Merge pull request #17828 from eileenmcnaughton/matt
[civicrm-core.git] / tests / phpunit / api / v4 / Action / UpdateCustomValueTest.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC. All rights reserved. |
6 | |
7 | This work is published under the GNU AGPLv3 license with some |
8 | permitted exceptions and without any warranty. For full license |
9 | and copyright information, see https://civicrm.org/licensing |
10 +--------------------------------------------------------------------+
11 */
12
13 /**
14 *
15 * @package CRM
16 * @copyright CiviCRM LLC https://civicrm.org/licensing
17 */
18
19
20 namespace api\v4\Action;
21
22 use Civi\Api4\Contact;
23 use Civi\Api4\CustomField;
24 use Civi\Api4\CustomGroup;
25 use CRM_Core_BAO_CustomValueTable as CustomValueTable;
26
27 /**
28 * @group headless
29 */
30 class UpdateCustomValueTest extends BaseCustomValueTest {
31
32 public function testGetWithCustomData() {
33
34 $customGroup = CustomGroup::create(FALSE)
35 ->addValue('name', 'MyContactFields')
36 ->addValue('extends', 'Contact')
37 ->execute()
38 ->first();
39
40 CustomField::create(FALSE)
41 ->addValue('label', 'FavColor')
42 ->addValue('custom_group_id', $customGroup['id'])
43 ->addValue('html_type', 'Text')
44 ->addValue('data_type', 'String')
45 ->execute();
46
47 $contactId = Contact::create(FALSE)
48 ->addValue('first_name', 'Red')
49 ->addValue('last_name', 'Tester')
50 ->addValue('contact_type', 'Individual')
51 ->addValue('MyContactFields.FavColor', 'Red')
52 ->execute()
53 ->first()['id'];
54
55 Contact::update(FALSE)
56 ->addWhere('id', '=', $contactId)
57 ->addValue('first_name', 'Red')
58 ->addValue('last_name', 'Tester')
59 ->addValue('contact_type', 'Individual')
60 ->addValue('MyContactFields.FavColor', 'Blue')
61 ->execute();
62
63 $result = CustomValueTable::getEntityValues($contactId, 'Contact');
64
65 $this->assertEquals(1, count($result));
66 $this->assertContains('Blue', $result);
67 }
68
69 }