APIv4 - Move list of accepted query operators to CoreUtil
[civicrm-core.git] / tests / phpunit / api / v4 / Action / ExtendFromIndividualTest.php
CommitLineData
19b53e5b
C
1<?php
2
380f3545
TO
3/*
4 +--------------------------------------------------------------------+
7d61e75f 5 | Copyright CiviCRM LLC. All rights reserved. |
380f3545 6 | |
7d61e75f
TO
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 |
380f3545
TO
10 +--------------------------------------------------------------------+
11 */
12
13/**
14 *
15 * @package CRM
ca5cec67 16 * @copyright CiviCRM LLC https://civicrm.org/licensing
380f3545
TO
17 */
18
19
19b53e5b
C
20namespace api\v4\Action;
21
22use Civi\Api4\Contact;
23use Civi\Api4\CustomField;
24use Civi\Api4\CustomGroup;
25
26/**
27 * @group headless
28 */
29class ExtendFromIndividualTest extends BaseCustomValueTest {
30
31 public function testGetWithNonStandardExtends() {
32
fe806431 33 $customGroup = CustomGroup::create(FALSE)
19b53e5b
C
34 ->addValue('name', 'MyContactFields')
35 // not Contact
36 ->addValue('extends', 'Individual')
37 ->execute()
38 ->first();
39
fe806431 40 CustomField::create(FALSE)
19b53e5b
C
41 ->addValue('label', 'FavColor')
42 ->addValue('custom_group_id', $customGroup['id'])
43 ->addValue('html_type', 'Text')
44 ->addValue('data_type', 'String')
45 ->execute();
46
fe806431 47 $contactId = Contact::create(FALSE)
19b53e5b
C
48 ->addValue('first_name', 'Johann')
49 ->addValue('last_name', 'Tester')
50 ->addValue('contact_type', 'Individual')
51 ->addValue('MyContactFields.FavColor', 'Red')
52 ->execute()
53 ->first()['id'];
54
fe806431 55 $contact = Contact::get(FALSE)
19b53e5b
C
56 ->addSelect('display_name')
57 ->addSelect('MyContactFields.FavColor')
58 ->addWhere('id', '=', $contactId)
59 ->execute()
60 ->first();
61
62 $this->assertEquals('Red', $contact['MyContactFields.FavColor']);
63 }
64
65}