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