Merge pull request #17253 from mattwire/utf8convertblocksize
[civicrm-core.git] / tests / phpunit / CRM / Core / BAO / PhoneTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 * Class CRM_Core_BAO_PhoneTest
14 * @group headless
15 */
16 class CRM_Core_BAO_PhoneTest extends CiviUnitTestCase {
17
18 public function setUp() {
19 parent::setUp();
20 }
21
22 /**
23 * Add() method (create and update modes)
24 */
25 public function testAdd() {
26 $contactId = $this->individualCreate();
27
28 $params = [];
29 $params = [
30 'phone' => '(415) 222-1011 x 221',
31 'is_primary' => 1,
32 'location_type_id' => 1,
33 'phone_type' => 'Mobile',
34 'contact_id' => $contactId,
35 ];
36
37 CRM_Core_BAO_Phone::add($params);
38
39 $phoneId = $this->assertDBNotNull('CRM_Core_DAO_Phone', $contactId, 'id', 'contact_id',
40 'Database check for created phone record.'
41 );
42
43 $this->assertDBCompareValue('CRM_Core_DAO_Phone', $phoneId, 'phone', 'id', '(415) 222-1011 x 221',
44 "Check if phone field has expected value in new record ( civicrm_phone.id={$phoneId} )."
45 );
46
47 // Now call add() to modify the existing phone number
48
49 $params = [];
50 $params = [
51 'id' => $phoneId,
52 'contact_id' => $contactId,
53 'phone' => '(415) 222-5432',
54 ];
55
56 CRM_Core_BAO_Phone::add($params);
57
58 $this->assertDBCompareValue('CRM_Core_DAO_Phone', $phoneId, 'phone', 'id', '(415) 222-5432',
59 "Check if phone field has expected value in updated record ( civicrm_phone.id={$phoneId} )."
60 );
61
62 $this->contactDelete($contactId);
63 }
64
65 /**
66 * AllPhones() method - get all Phones for our contact, with primary Phone first.
67 */
68 public function testAllPhones() {
69 $contactParams = [
70 'first_name' => 'Alan',
71 'last_name' => 'Smith',
72 'api.phone.create' => ['phone' => '(415) 222-1011 x 221', 'location_type_id' => 'Home'],
73 'api.phone.create.1' => ['phone' => '(415) 222-5432', 'location_type_id' => 'Work'],
74 ];
75
76 $contactId = $this->individualCreate($contactParams);
77
78 $Phones = CRM_Core_BAO_Phone::allPhones($contactId);
79
80 $this->assertEquals(count($Phones), 2, 'Checking number of returned Phones.');
81
82 $firstPhoneValue = array_slice($Phones, 0, 1);
83
84 // Since we're not passing in a location type to createIndividual above, CRM_Contact_BAO_Contact::createProfileContact uses default location
85 // type for first phone and sets that to primary.
86 $this->assertEquals('(415) 222-1011 x 221', $firstPhoneValue[0]['phone'], "Confirm primary Phone value ( {$firstPhoneValue[0]['phone']} ).");
87 $this->assertEquals(1, $firstPhoneValue[0]['is_primary'], 'Confirm first Phone is primary.');
88
89 $this->contactDelete($contactId);
90 }
91
92 /**
93 * AllEntityPhones() method - get all Phones for a location block, with primary Phone first
94 * @todo FIXME: Fixing this test requires add helper functions in CiviTest to create location block and phone and link them to an event. Punting to 3.1 cycle. DGG
95 */
96 public function SKIPPED_testAllEntityPhones() {
97 }
98
99 }