Merge pull request #20750 from mattwire/viewrecur
[civicrm-core.git] / Civi / Test / ContactTestTrait.php
1 <?php
2
3 namespace Civi\Test;
4
5 /**
6 * Class ContactTestTrait
7 *
8 * @package Civi\Test
9 *
10 * This trait defines a number of helper functions for managing
11 * test contacts. Generally, it depends on having access to the
12 * API test functions ($this->callAPISuccess()) and to the
13 * standard PHPUnit assertions ($this->assertEquals). It should
14 * not impose any other requirements for the downstream consumer class.
15 */
16 trait ContactTestTrait {
17
18 /**
19 * Emulate a logged in user since certain functions use that.
20 * value to store a record in the DB (like activity)
21 *
22 * @see https://issues.civicrm.org/jira/browse/CRM-8180
23 *
24 * @return int
25 * Contact ID of the created user.
26 * @throws \CiviCRM_API3_Exception
27 */
28 public function createLoggedInUser(): int {
29 $params = [
30 'first_name' => 'Logged In',
31 'last_name' => 'User ' . rand(),
32 'contact_type' => 'Individual',
33 'domain_id' => \CRM_Core_Config::domainID(),
34 ];
35 $contactID = $this->individualCreate($params);
36 $this->callAPISuccess('UFMatch', 'get', ['uf_id' => 6, 'api.UFMatch.delete' => []]);
37 $this->callAPISuccess('UFMatch', 'create', [
38 'contact_id' => $contactID,
39 'uf_name' => 'superman',
40 'uf_id' => 6,
41 ]);
42
43 $session = \CRM_Core_Session::singleton();
44 $session->set('userID', $contactID);
45 return $contactID;
46 }
47
48 /**
49 * Generic function to create Organisation, to be used in test cases
50 *
51 * @param array $params
52 * parameters for civicrm_contact_add api function call
53 * @param int $seq
54 * sequence number if creating multiple organizations
55 *
56 * @return int
57 * id of Organisation created
58 *
59 * @throws \CiviCRM_API3_Exception
60 */
61 public function organizationCreate($params = [], $seq = 0): int {
62 if (!$params) {
63 $params = [];
64 }
65 $params = array_merge($this->sampleContact('Organization', $seq), $params);
66 return $this->_contactCreate($params);
67 }
68
69 /**
70 * Generic function to create Individual, to be used in test cases
71 *
72 * @param array $params
73 * parameters for civicrm_contact_add api function call
74 * @param int $seq
75 * sequence number if creating multiple individuals
76 * @param bool $random
77 *
78 * @return int
79 * id of Individual created
80 *
81 * @throws \CiviCRM_API3_Exception
82 */
83 public function individualCreate($params = [], $seq = 0, $random = FALSE): int {
84 $params = array_merge($this->sampleContact('Individual', $seq, $random), $params);
85 return $this->_contactCreate($params);
86 }
87
88 /**
89 * Generic function to create Household, to be used in test cases
90 *
91 * @param array $params
92 * parameters for civicrm_contact_add api function call
93 * @param int $seq
94 * sequence number if creating multiple households
95 *
96 * @return int
97 * id of Household created
98 *
99 * @throws \CRM_Core_Exception
100 */
101 public function householdCreate($params = [], $seq = 0) {
102 $params = array_merge($this->sampleContact('Household', $seq), $params);
103 return $this->_contactCreate($params);
104 }
105
106 /**
107 * Helper function for getting sample contact properties.
108 *
109 * @param string $contact_type
110 * enum contact type: Individual, Organization
111 * @param int $seq
112 * sequence number for the values of this type
113 * @param bool $random
114 *
115 * @return array
116 * properties of sample contact (ie. $params for API call)
117 */
118 public function sampleContact($contact_type, $seq = 0, $random = FALSE) {
119 $samples = [
120 'Individual' => [
121 // The number of values in each list need to be coprime numbers to not have duplicates
122 'first_name' => ['Anthony', 'Joe', 'Terrence', 'Lucie', 'Albert', 'Bill', 'Kim'],
123 'middle_name' => ['J.', 'M.', 'P', 'L.', 'K.', 'A.', 'B.', 'C.', 'D', 'E.', 'Z.'],
124 'last_name' => ['Anderson', 'Miller', 'Smith', 'Collins', 'Peterson'],
125 ],
126 'Organization' => [
127 'organization_name' => [
128 'Unit Test Organization',
129 'Acme',
130 'Roberts and Sons',
131 'Cryo Space Labs',
132 'Sharper Pens',
133 ],
134 ],
135 'Household' => [
136 'household_name' => ['Unit Test household'],
137 ],
138 ];
139 $params = ['contact_type' => $contact_type];
140 foreach ($samples[$contact_type] as $key => $values) {
141 $params[$key] = $values[$seq % count($values)];
142 if ($random) {
143 $params[$key] .= substr(sha1(rand()), 0, 5);
144 }
145 }
146 if ($contact_type == 'Individual') {
147 $params['email'] = strtolower(
148 $params['first_name'] . '_' . $params['last_name'] . '@civicrm.org'
149 );
150 $params['prefix_id'] = 3;
151 $params['suffix_id'] = 3;
152 }
153 return $params;
154 }
155
156 /**
157 * Private helper function for calling civicrm_contact_add.
158 *
159 * @param array $params
160 * For civicrm_contact_add api function call.
161 *
162 * @return int
163 * id of contact created
164 *
165 * @throws \CiviCRM_API3_Exception
166 */
167 private function _contactCreate($params): int {
168 $result = civicrm_api3('contact', 'create', $params);
169 return (int) $result['id'];
170 }
171
172 /**
173 * Delete contact, ensuring it is not the domain contact
174 *
175 * @param int $contactID
176 * Contact ID to delete
177 */
178 public function contactDelete($contactID) {
179 $domain = new \CRM_Core_BAO_Domain();
180 $domain->contact_id = $contactID;
181 if (!$domain->find(TRUE)) {
182 $this->callAPISuccess('contact', 'delete', [
183 'id' => $contactID,
184 'skip_undelete' => 1,
185 ]);
186 }
187 }
188
189 /**
190 * Add a Group.
191 *
192 * @param array $params
193 *
194 * @return int
195 * groupId of created group
196 */
197 public function groupCreate($params = []) {
198 $params = array_merge([
199 'name' => 'Test Group 1',
200 'domain_id' => 1,
201 'title' => 'New Test Group Created',
202 'description' => 'New Test Group Created',
203 'is_active' => 1,
204 'visibility' => 'Public Pages',
205 'group_type' => [
206 '1' => 1,
207 '2' => 1,
208 ],
209 ], $params);
210
211 $result = $this->callAPISuccess('Group', 'create', $params);
212 return $result['id'];
213 }
214
215 /**
216 * Delete a Group.
217 *
218 * @param int $gid
219 */
220 public function groupDelete($gid) {
221 $params = [
222 'id' => $gid,
223 ];
224
225 $this->callAPISuccess('Group', 'delete', $params);
226 }
227
228 /**
229 * Function to add a Group.
230 *
231 * @params array to add group
232 *
233 * @param int $groupID
234 * @param int $totalCount
235 * @param bool $random
236 *
237 * @return int
238 * groupId of created group
239 */
240 public function groupContactCreate($groupID, $totalCount = 10, $random = FALSE) {
241 $params = ['group_id' => $groupID];
242 for ($i = 1; $i <= $totalCount; $i++) {
243 $contactID = $this->individualCreate([], 0, $random);
244 if ($i == 1) {
245 $params += ['contact_id' => $contactID];
246 }
247 else {
248 $params += ["contact_id.$i" => $contactID];
249 }
250 }
251 $result = $this->callAPISuccess('GroupContact', 'create', $params);
252
253 return $result;
254 }
255
256 }