Cleanup phpdoc comments
[civicrm-core.git] / tests / phpunit / api / v3 / UFFieldTest.php
CommitLineData
b6708aeb 1<?php
b6708aeb 2/*
3 +--------------------------------------------------------------------+
06a1bc01 4 | CiviCRM version 4.5 |
b6708aeb 5 +--------------------------------------------------------------------+
06a1bc01 6 | Copyright CiviCRM LLC (c) 2004-2014 |
b6708aeb 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
29require_once 'CiviTest/CiviUnitTestCase.php';
30
31/**
32 * Test class for UFGroup API - civicrm_uf_*
33 * @todo Split UFGroup and UFJoin tests
34 *
35 * @package CiviCRM
36 */
37class api_v3_UFFieldTest extends CiviUnitTestCase {
38 // ids from the uf_group_test.xml fixture
39 protected $_ufGroupId = 11;
40 protected $_ufFieldId;
41 protected $_contactId = 69;
e6ff1593 42 protected $_apiversion = 3;
b6708aeb 43 protected $_params;
9443c775 44 protected $_entity = 'uf_field';
b7c9bc4c 45
b6708aeb 46
47 protected function setUp() {
48 parent::setUp();
49 $this->quickCleanup(
50 array(
51 'civicrm_group',
52 'civicrm_contact',
53 'civicrm_uf_group',
54 'civicrm_uf_field',
55 'civicrm_uf_join',
56 'civicrm_uf_match',
57 )
58 );
59
b6708aeb 60 $op = new PHPUnit_Extensions_Database_Operation_Insert;
61 $op->execute(
62 $this->_dbconn,
bbfd46a5 63 $this->createFlatXMLDataSet(dirname(__FILE__) . '/dataset/uf_group_test.xml')
b6708aeb 64 );
b6708aeb 65
e6ff1593 66 $this->callAPISuccess('uf_field', 'getfields', array('cache_clear' => 1));
b4bb913e 67
b6708aeb 68 $this->_params = array(
69 'field_name' => 'phone',
70 'field_type' => 'Contact',
71 'visibility' => 'Public Pages and Listings',
72 'weight' => 1,
73 'label' => 'Test Phone',
74 'is_searchable' => 1,
75 'is_active' => 1,
76 'location_type_id' => 1,
77 'phone_type_id' => 1,
b6708aeb 78 'uf_group_id' => $this->_ufGroupId,
79 );
80 }
81
82 function tearDown() {
83 $this->quickCleanup(
84 array(
85 'civicrm_group',
86 'civicrm_contact',
87 'civicrm_uf_group',
88 'civicrm_uf_join',
89 'civicrm_uf_match',
90 )
91 );
92 }
93
94 /**
100fef9d 95 * Create / updating field
b6708aeb 96 */
97 public function testCreateUFField() {
98 $params = $this->_params; // copy
e6ff1593 99 $ufField = $this->callAPIAndDocument('uf_field', 'create', $params, __FUNCTION__, __FILE__);
b6708aeb 100 unset($params['uf_group_id']);
101 $this->_ufFieldId = $ufField['id'];
b6708aeb 102 foreach ($params as $key => $value) {
103 $this->assertEquals($ufField['values'][$ufField['id']][$key], $params[$key]);
104 }
105 }
106
107 public function testCreateUFFieldWithBadFieldName() {
108 $params = $this->_params; // copy
109 $params['field_name'] = 'custom_98789'; // invalid field
9443c775 110 $this->callAPIFailure('uf_field', 'create', $params);
b6708aeb 111 }
112
113 function testCreateUFFieldWithWrongParams() {
9443c775
CW
114 $this->callAPIFailure('uf_field', 'create', array('field_name' => 'test field'));
115 $this->callAPIFailure('uf_field', 'create', array('label' => 'name-less field'));
b6708aeb 116 }
117 /**
118 * Create a field with 'weight=1' and then a second with 'weight=1'. The second field
119 * winds up with weight=1, and the first field gets bumped to 'weight=2'.
120 */
121 public function testCreateUFFieldWithDefaultAutoWeight() {
122 $params1 = $this->_params; // copy
9443c775 123 $ufField1 = $this->callAPISuccess('uf_field', 'create', $params1);
b6708aeb 124 $this->assertEquals(1, $ufField1['values'][$ufField1['id']]['weight']);
125 $this->assertDBQuery(1, 'SELECT weight FROM civicrm_uf_field WHERE id = %1', array(
126 1 => array($ufField1['id'], 'Int'),
127 ));
128
129 $params2 = $this->_params; // copy
130 $params2['location_type_id'] = 2; // needs to be a different field
9443c775 131 $ufField2 = $this->callAPISuccess('uf_field', 'create', $params2);
b6708aeb 132 $this->assertEquals(1, $ufField2['values'][$ufField2['id']]['weight']);
133 $this->assertDBQuery(1, 'SELECT weight FROM civicrm_uf_field WHERE id = %1', array(
134 1 => array($ufField2['id'], 'Int'),
135 ));
136 $this->assertDBQuery(2, 'SELECT weight FROM civicrm_uf_field WHERE id = %1', array(
137 1 => array($ufField1['id'], 'Int'),
138 ));
139 }
140
141 /**
100fef9d 142 * Deleting field
b6708aeb 143 */
144 public function testDeleteUFField() {
9443c775 145 $ufField = $this->callAPISuccess('uf_field', 'create', $this->_params);
b6708aeb 146 $params = array(
b6708aeb 147 'field_id' => $ufField['id'],
148 );
9443c775 149 $result = $this->callAPIAndDocument('uf_field', 'delete', $params, __FUNCTION__, __FILE__);
b6708aeb 150 }
151
152 public function testGetUFFieldSuccess() {
54bd1003 153 $this->callAPISuccess($this->_entity, 'create', $this->_params);
9443c775 154 $result = $this->callAPIAndDocument($this->_entity, 'get', array(), __FUNCTION__, __FILE__);
b6708aeb 155 $this->getAndCheck($this->_params, $result['id'], $this->_entity);
156 }
157
158 /**
100fef9d 159 * Create / updating field
b6708aeb 160 */
161 public function testReplaceUFFields() {
162 $baseFields = array();
163 $baseFields[] = array(
164 'field_name' => 'first_name',
165 'field_type' => 'Contact',
166 'visibility' => 'Public Pages and Listings',
167 'weight' => 3,
168 'label' => 'Test First Name',
169 'is_searchable' => 1,
170 'is_active' => 1,
171 );
172 $baseFields[] = array(
173 'field_name' => 'country',
174 'field_type' => 'Contact',
175 'visibility' => 'Public Pages and Listings',
176 'weight' => 2,
177 'label' => 'Test Country',
178 'is_searchable' => 1,
179 'is_active' => 1,
180 'location_type_id' => 1,
181 );
182 $baseFields[] = array(
183 'field_name' => 'phone',
184 'field_type' => 'Contact',
185 'visibility' => 'Public Pages and Listings',
186 'weight' => 1,
187 'label' => 'Test Phone',
188 'is_searchable' => 1,
189 'is_active' => 1,
190 'location_type_id' => 1,
191 'phone_type_id' => 1,
192 );
193
194 $params = array(
b6708aeb 195 'uf_group_id' => $this->_ufGroupId,
196 'option.autoweight' => FALSE,
197 'values' => $baseFields,
198 );
199
e6ff1593 200 $result = $this->callAPIAndDocument('uf_field', 'replace', $params, __FUNCTION__, __FILE__);
b6708aeb 201 $inputsByName = CRM_Utils_Array::index(array('field_name'), $params['values']);
202 $this->assertEquals(count($params['values']), count($result['values']));
203 foreach ($result['values'] as $outUfField) {
204 $this->assertTrue(is_string($outUfField['field_name']));
205 $inUfField = $inputsByName[$outUfField['field_name']];
206 foreach ($inUfField as $key => $inValue) {
207 $this->assertEquals($inValue, $outUfField[$key],
208 sprintf("field_name=[%s] key=[%s] expected=[%s] actual=[%s]",
209 $outUfField['field_name'],
210 $key,
211 $inValue,
212 $outUfField[$key]
213 )
214 );
215 }
216 }
217 }
b6708aeb 218}