a few phpcs fixups
[civicrm-core.git] / tests / phpunit / api / v3 / ActivityTest.php
CommitLineData
6a488035
TO
1<?php
2/**
d177a2a6 3 * @file
6a488035
TO
4 * File for the TestActivity class
5 *
6 * (PHP 5)
7 *
6c6e6187
TO
8 * @author Walt Haas <walt@dharmatech.org> (801) 534-1262
9 * @copyright Copyright CiviCRM LLC (C) 2009
10 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html
6a488035 11 * GNU Affero General Public License version 3
6c6e6187
TO
12 * @version $Id: ActivityTest.php 31254 2010-12-15 10:09:29Z eileen $
13 * @package CiviCRM
6a488035
TO
14 *
15 * This file is part of CiviCRM
16 *
17 * CiviCRM is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Affero General Public License
19 * as published by the Free Software Foundation; either version 3 of
20 * the License, or (at your option) any later version.
21 *
22 * CiviCRM is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU Affero General Public License for more details.
26 *
27 * You should have received a copy of the GNU Affero General Public
28 * License along with this program. If not, see
29 * <http://www.gnu.org/licenses/>.
30 */
31
32/**
33 * Include class definitions
34 */
35require_once 'CiviTest/CiviUnitTestCase.php';
36
37
38/**
d177a2a6 39 * Test APIv3 civicrm_activity_* functions
6a488035 40 *
6c6e6187
TO
41 * @package CiviCRM_APIv3
42 * @subpackage API_Activity
6a488035 43 */
6a488035
TO
44class api_v3_ActivityTest extends CiviUnitTestCase {
45 protected $_params;
46 protected $_params2;
47 protected $_entity = 'activity';
48 protected $_apiversion = 3;
49 protected $test_activity_type_value;
b8a3da18 50 protected $_contactID;
9f1b81e0 51
6a488035 52 /**
d177a2a6 53 * Test setup for every test.
6a488035 54 *
d177a2a6
EM
55 * Connect to the database, truncate the tables that will be used
56 * and redirect stdin to a temporary file
6a488035
TO
57 */
58 public function setUp() {
e3aa0dd1 59 // Connect to the database
6a488035 60 parent::setUp();
6a488035 61
b8a3da18 62 $this->_contactID = $this->individualCreate();
6a488035 63 //create activity types
b8a3da18 64 $activityTypes = $this->callAPISuccess('option_value', 'create', array(
65 'option_group_id' => 2,
66 'name' => 'Test activity type',
67 'label' => 'Test activity type',
21dfd5f5 68 'sequential' => 1,
b8a3da18 69 ));
6a488035
TO
70 $this->test_activity_type_value = $activityTypes['values'][0]['value'];
71 $this->test_activity_type_id = $activityTypes['id'];
72 $this->_params = array(
b8a3da18 73 'source_contact_id' => $this->_contactID,
6a488035
TO
74 'activity_type_id' => $this->test_activity_type_value,
75 'subject' => 'test activity type id',
76 'activity_date_time' => '2011-06-02 14:36:13',
77 'status_id' => 2,
78 'priority_id' => 1,
79 'duration' => 120,
e3aa0dd1 80 'location' => 'Pennsylvania',
6a488035 81 'details' => 'a test activity',
6a488035
TO
82 );
83 $this->_params2 = array(
b8a3da18 84 'source_contact_id' => $this->_contactID,
6a488035
TO
85 'subject' => 'Eat & drink',
86 'activity_date_time' => date('Ymd'),
87 'duration' => 120,
88 'location' => 'Napier',
89 'details' => 'discuss & eat',
90 'status_id' => 1,
91 'activity_type_id' => $this->test_activity_type_value,
6a488035
TO
92 );
93 // create a logged in USER since the code references it for source_contact_id
94 $this->createLoggedInUser();
95 }
96
97 /**
98 * Tears down the fixture, for example, closes a network connection.
e3aa0dd1 99 *
6a488035 100 * This method is called after a test is executed.
6a488035 101 */
00be9182 102 public function tearDown() {
6a488035
TO
103 $tablesToTruncate = array(
104 'civicrm_contact',
105 'civicrm_activity',
b319d00a 106 'civicrm_activity_contact',
6a488035
TO
107 );
108 $this->quickCleanup($tablesToTruncate, TRUE);
9f1b81e0 109 $this->callAPISuccess('option_value', 'delete', array('id' => $this->test_activity_type_id));
6a488035
TO
110 }
111
112 /**
e3aa0dd1 113 * Check fails with empty array.
6a488035 114 */
00be9182 115 public function testActivityCreateEmpty() {
e3aa0dd1 116 $this->callAPIFailure('activity', 'create', array());
6a488035
TO
117 }
118
119 /**
100fef9d 120 * Check if required fields are not passed
6a488035 121 */
00be9182 122 public function testActivityCreateWithoutRequired() {
6a488035
TO
123 $params = array(
124 'subject' => 'this case should fail',
125 'scheduled_date_time' => date('Ymd'),
6a488035 126 );
d0e1eff2 127 $result = $this->callAPIFailure('activity', 'create', $params);
6a488035
TO
128 }
129
130 /**
d177a2a6
EM
131 * Test civicrm_activity_create() with mismatched activity_type_id
132 * and activity_name.
6a488035 133 */
00be9182 134 public function testActivityCreateMismatchNameType() {
6a488035 135 $params = array(
b8a3da18 136 'source_contact_id' => $this->_contactID,
6a488035
TO
137 'subject' => 'Test activity',
138 'activity_date_time' => date('Ymd'),
139 'duration' => 120,
e3aa0dd1 140 'location' => 'Pennsylvania',
6a488035
TO
141 'details' => 'a test activity',
142 'status_id' => 1,
143 'activity_name' => 'Fubar activity type',
144 'activity_type_id' => 5,
145 'scheduled_date_time' => date('Ymd'),
6a488035
TO
146 );
147
d0e1eff2 148 $result = $this->callAPIFailure('activity', 'create', $params);
6a488035
TO
149 }
150
151 /**
d177a2a6 152 * Test civicrm_activity_id() with missing source_contact_id is put with the current user.
6a488035 153 */
00be9182 154 public function testActivityCreateWithMissingContactId() {
6a488035
TO
155 $params = array(
156 'subject' => 'Make-it-Happen Meeting',
157 'activity_date_time' => date('Ymd'),
158 'duration' => 120,
e3aa0dd1 159 'location' => 'Pennsylvania',
6a488035
TO
160 'details' => 'a test activity',
161 'status_id' => 1,
162 'activity_name' => 'Test activity type',
6a488035
TO
163 );
164
d177a2a6 165 $this->callAPISuccess('activity', 'create', $params);
6a488035
TO
166 }
167
168 /**
d177a2a6 169 * Test civicrm_activity_id() with non-numeric source_contact_id.
6a488035 170 */
00be9182 171 public function testActivityCreateWithNonNumericContactId() {
6a488035
TO
172 $params = array(
173 'source_contact_id' => 'fubar',
174 'subject' => 'Make-it-Happen Meeting',
175 'activity_date_time' => date('Ymd'),
176 'duration' => 120,
e3aa0dd1 177 'location' => 'Pennsylvania',
6a488035
TO
178 'details' => 'a test activity',
179 'status_id' => 1,
180 'activity_name' => 'Test activity type',
6a488035
TO
181 );
182
e3aa0dd1 183 $this->callAPIFailure('activity', 'create', $params);
6a488035
TO
184 }
185
6a488035 186 /**
feb2a730 187 * Ensure that an invalid activity type causes failure
188 * oddly enough this test was failing because the creation of the invalid type
189 * got added to the set up routine. Probably a mis-fix on a test
6a488035 190 */
00be9182 191 public function testActivityCreateWithNonNumericActivityTypeId() {
6a488035 192 $params = array(
b8a3da18 193 'source_contact_id' => $this->_contactID,
6a488035
TO
194 'subject' => 'Make-it-Happen Meeting',
195 'activity_date_time' => date('Ymd'),
196 'duration' => 120,
e3aa0dd1 197 'location' => 'Pennsylvania',
6a488035
TO
198 'details' => 'a test activity',
199 'status_id' => 1,
feb2a730 200 'activity_type_id' => 'Invalid Test activity type',
6a488035
TO
201 );
202
d0e1eff2 203 $result = $this->callAPIFailure('activity', 'create', $params);
6a488035
TO
204 }
205
206 /**
e3aa0dd1 207 * Check with incorrect required fields.
6a488035 208 */
00be9182 209 public function testActivityCreateWithUnknownActivityTypeId() {
6a488035 210 $params = array(
b8a3da18 211 'source_contact_id' => $this->_contactID,
6a488035
TO
212 'subject' => 'Make-it-Happen Meeting',
213 'activity_date_time' => date('Ymd'),
214 'duration' => 120,
e3aa0dd1 215 'location' => 'Pennsylvania',
6a488035
TO
216 'details' => 'a test activity',
217 'status_id' => 1,
218 'activity_type_id' => 699,
6a488035
TO
219 );
220
d0e1eff2 221 $result = $this->callAPIFailure('activity', 'create', $params);
6a488035
TO
222 }
223
00be9182 224 public function testActivityCreateWithInvalidPriority() {
6a488035 225 $params = array(
b8a3da18 226 'source_contact_id' => $this->_contactID,
6a488035
TO
227 'subject' => 'Make-it-Happen Meeting',
228 'activity_date_time' => date('Ymd'),
229 'duration' => 120,
e3aa0dd1 230 'location' => 'Pennsylvania',
6a488035
TO
231 'details' => 'a test activity',
232 'status_id' => 1,
233 'priority_id' => 44,
234 'activity_type_id' => 1,
6a488035
TO
235 );
236
b8a3da18 237 $result = $this->callAPIFailure('activity', 'create', $params,
238 "'44' is not a valid option for field priority_id");
283f988c 239 $this->assertEquals('priority_id', $result['error_field']);
6a488035
TO
240 }
241
feb2a730 242
e3aa0dd1 243 /**
244 * Test create succeeds with valid string for priority.
245 */
00be9182 246 public function testActivityCreateWithValidStringPriority() {
6a488035 247 $params = array(
b8a3da18 248 'source_contact_id' => $this->_contactID,
6a488035
TO
249 'subject' => 'Make-it-Happen Meeting',
250 'activity_date_time' => date('Ymd'),
251 'duration' => 120,
e3aa0dd1 252 'location' => 'Pennsylvania',
6a488035
TO
253 'details' => 'a test activity',
254 'status_id' => 1,
255 'priority_id' => 'Urgent',
256 'activity_type_id' => 1,
6a488035
TO
257 );
258
b8a3da18 259 $result = $this->callAPISuccess('activity', 'create', $params);
6a488035
TO
260 $this->assertEquals(1, $result['values'][$result['id']]['priority_id']);
261 }
262
e3aa0dd1 263 /**
264 * Test create fails with invalid priority string.
265 */
00be9182 266 public function testActivityCreateWithInValidStringPriority() {
6a488035 267 $params = array(
b8a3da18 268 'source_contact_id' => $this->_contactID,
6a488035
TO
269 'subject' => 'Make-it-Happen Meeting',
270 'activity_date_time' => date('Ymd'),
271 'duration' => 120,
e3aa0dd1 272 'location' => 'Pennsylvania',
6a488035
TO
273 'details' => 'a test activity',
274 'status_id' => 1,
275 'priority_id' => 'ergUrgent',
276 'activity_type_id' => 1,
6a488035
TO
277 );
278
e3aa0dd1 279 $this->callAPIFailure('activity', 'create', $params,
b8a3da18 280 "'ergUrgent' is not a valid option for field priority_id");
6a488035
TO
281 }
282
283 /**
e3aa0dd1 284 * Test civicrm_activity_create() with valid parameters.
6a488035 285 */
00be9182 286 public function testActivityCreate() {
6a488035 287
e3aa0dd1 288 $this->callAPISuccess('activity', 'create', $this->_params);
b8a3da18 289 $result = $this->callAPISuccess('activity', 'get', $this->_params);
e3aa0dd1 290 $this->assertEquals($result['values'][$result['id']]['duration'], 120);
291 $this->assertEquals($result['values'][$result['id']]['subject'], 'test activity type id');
292 $this->assertEquals($result['values'][$result['id']]['activity_date_time'], '2011-06-02 14:36:13');
293 $this->assertEquals($result['values'][$result['id']]['location'], 'Pennsylvania');
294 $this->assertEquals($result['values'][$result['id']]['details'], 'a test activity');
295 $this->assertEquals($result['values'][$result['id']]['status_id'], 2);
296 $this->assertEquals($result['values'][$result['id']]['id'], $result['id']);
6a488035
TO
297 }
298
299 /**
d177a2a6 300 * Test civicrm_activity_create() with valid parameters - use type_id.
6a488035 301 */
00be9182 302 public function testActivityCreateCampaignTypeID() {
07fd63f5 303 $this->enableCiviCampaign();
6a488035 304
6a488035 305 $params = array(
b8a3da18 306 'source_contact_id' => $this->_contactID,
6a488035
TO
307 'subject' => 'Make-it-Happen Meeting',
308 'activity_date_time' => '20110316',
309 'duration' => 120,
e3aa0dd1 310 'location' => 'Pennsylvania',
6a488035
TO
311 'details' => 'a test activity',
312 'status_id' => 1,
313 'activity_type_id' => 29,
6a488035
TO
314 'priority_id' => 1,
315 );
316
b8a3da18 317 $result = $this->callAPISuccess('activity', 'create', $params);
6a488035 318
2b46f1da 319 $result = $this->callAPISuccess('activity', 'get', array('id' => $result['id']));
e3aa0dd1 320 $this->assertEquals($result['values'][$result['id']]['duration'], 120);
321 $this->assertEquals($result['values'][$result['id']]['subject'], 'Make-it-Happen Meeting');
322 $this->assertEquals($result['values'][$result['id']]['activity_date_time'], '2011-03-16 00:00:00');
323 $this->assertEquals($result['values'][$result['id']]['location'], 'Pennsylvania');
324 $this->assertEquals($result['values'][$result['id']]['details'], 'a test activity');
325 $this->assertEquals($result['values'][$result['id']]['status_id'], 1);
6a488035
TO
326 }
327
e3aa0dd1 328 /**
329 * Test get returns target and assignee contacts.
330 */
00be9182 331 public function testActivityReturnTargetAssignee() {
6a488035
TO
332
333 $description = "Example demonstrates setting & retrieving the target & source";
92915c55
TO
334 $subfile = "GetTargetandAssignee";
335 $params = array(
b8a3da18 336 'source_contact_id' => $this->_contactID,
6a488035
TO
337 'subject' => 'Make-it-Happen Meeting',
338 'activity_date_time' => '20110316',
339 'duration' => 120,
e3aa0dd1 340 'location' => 'Pennsylvania',
6a488035
TO
341 'details' => 'a test activity',
342 'status_id' => 1,
343 'activity_type_id' => 1,
6a488035 344 'priority_id' => 1,
b8a3da18 345 'target_contact_id' => $this->_contactID,
346 'assignee_contact_id' => $this->_contactID,
6a488035
TO
347 );
348
9f1b81e0 349 $result = $this->callAPIAndDocument('activity', 'create', $params, __FUNCTION__, __FILE__, $description, $subfile);
92915c55 350 $result = $this->callAPISuccess('activity', 'get', array(
c301f76e 351 'id' => $result['id'],
352 'version' => $this->_apiversion,
353 'return.assignee_contact_id' => 1,
354 'return.target_contact_id' => 1,
355 ));
6a488035 356
e3aa0dd1 357 $this->assertEquals($this->_contactID, $result['values'][$result['id']]['assignee_contact_id'][0]);
358 $this->assertEquals($this->_contactID, $result['values'][$result['id']]['target_contact_id'][0]);
6a488035
TO
359 }
360
e3aa0dd1 361 /**
362 * Test civicrm_activity_create() using example code.
363 */
00be9182 364 public function testActivityCreateExample() {
3ec6e38d 365 require_once 'api/v3/examples/Activity/Create.php';
6a488035
TO
366 $result = activity_create_example();
367 $expectedResult = activity_create_expectedresult();
368 $this->assertEquals($result, $expectedResult);
369 }
370
6a488035 371 /**
d177a2a6 372 * Test civicrm_activity_create() with valid parameters and custom data.
6a488035 373 */
00be9182 374 public function testActivityCreateCustom() {
6a488035
TO
375 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, __FILE__);
376 $params = $this->_params;
377 $params['custom_' . $ids['custom_field_id']] = "custom string";
9f1b81e0 378 $result = $this->callAPIAndDocument($this->_entity, 'create', $params, __FUNCTION__, __FILE__);
92915c55 379 $result = $this->callAPISuccess($this->_entity, 'get', array(
c301f76e 380 'return.custom_' . $ids['custom_field_id'] => 1,
c301f76e 381 'id' => $result['id'],
382 ));
6a488035
TO
383 $this->assertEquals("custom string", $result['values'][$result['id']]['custom_' . $ids['custom_field_id']], ' in line ' . __LINE__);
384
385 $this->customFieldDelete($ids['custom_field_id']);
386 $this->customGroupDelete($ids['custom_group_id']);
387 }
388
389 /**
d177a2a6 390 * Test civicrm_activity_create() with valid parameters and custom data.
6a488035 391 */
00be9182 392 public function testActivityCreateCustomContactRefField() {
6a488035 393
b8a3da18 394 $this->callAPISuccess('contact', 'create', array('id' => $this->_contactID, 'sort_name' => 'Contact, Test'));
92915c55 395 $subfile = 'ContactRefCustomField';
6a488035 396 $description = "demonstrates create with Contact Reference Custom Field";
92915c55
TO
397 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, __FILE__);
398 $params = array(
6a488035
TO
399 'custom_group_id' => $ids['custom_group_id'],
400 'name' => 'Worker_Lookup',
401 'label' => 'Worker Lookup',
402 'html_type' => 'Autocomplete-Select',
403 'data_type' => 'ContactReference',
404 'weight' => 4,
405 'is_searchable' => 1,
406 'is_active' => 1,
6a488035
TO
407 );
408
b8a3da18 409 $customField = $this->callAPISuccess('custom_field', 'create', $params);
6a488035 410 $params = $this->_params;
b8a3da18 411 $params['custom_' . $customField['id']] = "$this->_contactID";
6a488035 412
9f1b81e0 413 $result = $this->callAPIAndDocument($this->_entity, 'create', $params, __FUNCTION__, __FILE__, $description, $subfile, 'Create');
92915c55 414 $result = $this->callAPIAndDocument($this->_entity, 'get', array(
c301f76e 415 'return.custom_' . $customField['id'] => 1,
416 'id' => $result['id'],
417 ), __FUNCTION__, __FILE__, 'Get with Contact Ref Custom Field', 'ContactRefCustomFieldGet', 'get');
6a488035 418
e3aa0dd1 419 $this->assertEquals('Anderson, Anthony', $result['values'][$result['id']]['custom_' . $customField['id']]);
b8a3da18 420 $this->assertEquals($this->_contactID, $result['values'][$result['id']]['custom_' . $customField['id'] . "_id"], ' in line ' . __LINE__);
421 $this->assertEquals('Anderson, Anthony', $result['values'][$result['id']]['custom_' . $customField['id'] . '_1'], ' in line ' . __LINE__);
422 $this->assertEquals($this->_contactID, $result['values'][$result['id']]['custom_' . $customField['id'] . "_1_id"], ' in line ' . __LINE__);
6a488035
TO
423 $this->customFieldDelete($ids['custom_field_id']);
424 $this->customGroupDelete($ids['custom_group_id']);
425 }
426
427 /**
e3aa0dd1 428 * Test civicrm_activity_create() with an invalid text status_id.
6a488035 429 */
00be9182 430 public function testActivityCreateBadTextStatus() {
6a488035
TO
431
432 $params = array(
b8a3da18 433 'source_contact_id' => $this->_contactID,
6a488035
TO
434 'subject' => 'Discussion on Apis for v3',
435 'activity_date_time' => date('Ymd'),
436 'duration' => 120,
e3aa0dd1 437 'location' => 'Pennsylvania',
6a488035
TO
438 'details' => 'a test activity',
439 'status_id' => 'Invalid',
440 'activity_name' => 'Test activity type',
6a488035
TO
441 );
442
e3aa0dd1 443 $this->callAPIFailure('activity', 'create', $params);
feb2a730 444 }
445
446 /**
e3aa0dd1 447 * Test civicrm_activity_create() with an invalid text status_id.
feb2a730 448 */
00be9182 449 public function testActivityCreateSupportActivityStatus() {
feb2a730 450
451 $params = array(
b8a3da18 452 'source_contact_id' => $this->_contactID,
feb2a730 453 'subject' => 'Discussion on Apis for v3',
454 'activity_date_time' => date('Ymd'),
455 'duration' => 120,
e3aa0dd1 456 'location' => 'Pennsylvania',
feb2a730 457 'details' => 'a test activity',
458 'activity_status_id' => 'Invalid',
459 'activity_name' => 'Test activity type',
6a488035 460 );
feb2a730 461
b8a3da18 462 $result = $this->callAPIFailure('activity', 'create', $params,
463 "'Invalid' is not a valid option for field status_id");
6a488035
TO
464 }
465
feb2a730 466
6a488035 467 /**
e3aa0dd1 468 * Test civicrm_activity_create() with using a text status_id.
6a488035 469 */
00be9182 470 public function testActivityCreateTextStatus() {
6a488035 471
6a488035 472 $params = array(
b8a3da18 473 'source_contact_id' => $this->_contactID,
6a488035
TO
474 'subject' => 'Make-it-Happen Meeting',
475 'activity_date_time' => date('Ymd'),
476 'duration' => 120,
e3aa0dd1 477 'location' => 'Pennsylvania',
6a488035
TO
478 'details' => 'a test activity',
479 'status_id' => 'Scheduled',
480 'activity_name' => 'Test activity type',
6a488035
TO
481 );
482
b8a3da18 483 $result = $this->callAPISuccess('activity', 'create', $params);
e3aa0dd1 484 $this->assertEquals($result['values'][$result['id']]['duration'], 120);
485 $this->assertEquals($result['values'][$result['id']]['subject'], 'Make-it-Happen Meeting');
486 $this->assertEquals($result['values'][$result['id']]['activity_date_time'], date('Ymd') . '000000');
487 $this->assertEquals($result['values'][$result['id']]['location'], 'Pennsylvania');
488 $this->assertEquals($result['values'][$result['id']]['details'], 'a test activity');
6a488035
TO
489 }
490
491 /**
d177a2a6 492 * Test civicrm_activity_get() with no params
6a488035 493 */
00be9182 494 public function testActivityGetEmpty() {
b8a3da18 495 $result = $this->callAPISuccess('activity', 'get', array());
6a488035
TO
496 }
497
498 /**
d177a2a6 499 * Test civicrm_activity_get() with a good activity ID
6a488035 500 */
00be9182 501 public function testActivityGetGoodID1() {
e3aa0dd1 502 // Insert rows in civicrm_activity creating activities 4 and
503 // 13
6a488035 504 $description = "Function demonstrates getting asignee_contact_id & using it to get the contact";
92915c55
TO
505 $subfile = 'ReturnAssigneeContact';
506 $activity = $this->callAPISuccess('activity', 'create', $this->_params);
6a488035 507
b8a3da18 508 $contact = $this->callAPISuccess('Contact', 'Create', array(
92915c55
TO
509 'first_name' => "The Rock",
510 'last_name' => 'roccky',
511 'contact_type' => 'Individual',
512 'version' => 3,
513 'api.activity.create' => array(
514 'id' => $activity['id'],
515 'assignee_contact_id' => '$value.id',
516 ),
517 ));
6a488035
TO
518
519 $params = array(
520 'activity_id' => $activity['id'],
521 'version' => $this->_apiversion,
522 'sequential' => 1,
523 'return.assignee_contact_id' => 1,
524 'api.contact.get' => array(
525 'id' => '$value.source_contact_id',
526 ),
527 );
528
9f1b81e0 529 $result = $this->callAPIAndDocument('Activity', 'Get', $params, __FUNCTION__, __FILE__, $description, $subfile);
6a488035
TO
530
531 $this->assertEquals($activity['id'], $result['id'], 'In line ' . __LINE__);
6a488035
TO
532
533 $this->assertEquals($contact['id'], $result['values'][0]['assignee_contact_id'][0], 'In line ' . __LINE__);
534
b8a3da18 535 $this->assertEquals($this->_contactID, $result['values'][0]['api.contact.get']['values'][0]['contact_id'], 'In line ' . __LINE__);
6a488035
TO
536 $this->assertEquals($this->test_activity_type_value, $result['values'][0]['activity_type_id'], 'In line ' . __LINE__);
537 $this->assertEquals("test activity type id", $result['values'][0]['subject'], 'In line ' . __LINE__);
538 }
539
d424ffde 540 /**
42d30b83
DL
541 * test that get functioning does filtering
542 */
00be9182 543 public function testGetFilter() {
6a488035 544 $params = array(
b8a3da18 545 'source_contact_id' => $this->_contactID,
6a488035
TO
546 'subject' => 'Make-it-Happen Meeting',
547 'activity_date_time' => '20110316',
548 'duration' => 120,
e3aa0dd1 549 'location' => 'Pennsylvania',
6a488035
TO
550 'details' => 'a test activity',
551 'status_id' => 1,
552 'activity_name' => 'Test activity type',
6a488035
TO
553 'priority_id' => 1,
554 );
9f1b81e0 555 $result = $this->callAPISuccess('Activity', 'Create', $params);
556 $this->callAPISuccess('Activity', 'Get', array('subject' => 'Make-it-Happen Meeting'));
6a488035
TO
557 $this->assertEquals(1, $result['count']);
558 $this->assertEquals('Make-it-Happen Meeting', $result['values'][$result['id']]['subject']);
9f1b81e0 559 $this->callAPISuccess('Activity', 'Delete', array('id' => $result['id']));
6a488035 560 }
6e1bb60c
N
561
562
563 /**
d177a2a6 564 * Test civicrm_activity_get() with filter target_contact_id
6e1bb60c 565 */
00be9182 566 public function testActivityGetTargetFilter() {
6e1bb60c
N
567 $params = $this->_params;
568 $contact1Params = array(
569 'first_name' => 'John',
570 'middle_name' => 'J.',
571 'last_name' => 'Anderson',
572 'prefix_id' => 3,
573 'suffix_id' => 3,
574 'email' => 'john_anderson@civicrm.org',
575 'contact_type' => 'Individual',
576 );
577
578 $contact1 = $this->individualCreate($contact1Params);
579 $contact2Params = array(
580 'first_name' => 'Michal',
581 'middle_name' => 'J.',
582 'last_name' => 'Anderson',
583 'prefix_id' => 3,
584 'suffix_id' => 3,
585 'email' => 'michal_anderson@civicrm.org',
586 'contact_type' => 'Individual',
587 );
588
589 $contact2 = $this->individualCreate($contact2Params);
590
591 $params['assignee_contact_id'] = array($contact1, $contact2);
592 $params['target_contact_id'] = array($contact2 => $contact2);
593 $activity = $this->callAPISuccess('Activity', 'Create', $params);
594
92915c55 595 $activityget = $this->callAPISuccess('Activity', 'get', array(
c301f76e 596 'id' => $activity['id'],
597 'target_contact_id' => $contact2,
598 'return.target_contact_id' => 1,
599 ));
6e1bb60c
N
600 $this->assertEquals($activity['id'], $activityget['id'], 'In line ' . __LINE__);
601 $this->assertEquals($contact2, $activityget['values'][$activityget['id']]['target_contact_id'][0], 'In line ' . __LINE__);
602
92915c55 603 $activityget = $this->callAPISuccess('activity', 'get', array(
c301f76e 604 'target_contact_id' => $this->_contactID,
605 'return.target_contact_id' => 1,
606 'id' => $activity['id'],
607 ));
6e1bb60c
N
608 if ($activityget['count'] > 0) {
609 $this->assertNotEquals($contact2, $activityget['values'][$activityget['id']]['target_contact_id'][0], 'In line ' . __LINE__);
610 }
611 }
612
d424ffde 613 /**
42d30b83
DL
614 * test that get functioning does filtering
615 */
00be9182 616 public function testGetStatusID() {
6a488035 617 $params = array(
b8a3da18 618 'source_contact_id' => $this->_contactID,
6a488035
TO
619 'subject' => 'Make-it-Happen Meeting',
620 'activity_date_time' => '20110316',
621 'duration' => 120,
e3aa0dd1 622 'location' => 'Pennsylvania',
6a488035
TO
623 'details' => 'a test activity',
624 'status_id' => 1,
625 'activity_name' => 'Test activity type',
6a488035
TO
626 'priority_id' => 1,
627 );
b8a3da18 628 $this->callAPISuccess('Activity', 'Create', $params);
2b46f1da 629 $result = $this->callAPISuccess('Activity', 'Get', array('activity_status_id' => '1'));
6a488035
TO
630 $this->assertEquals(1, $result['count'], 'one activity of status 1 should exist');
631
2b46f1da 632 $result = $this->callAPISuccess('Activity', 'Get', array('status_id' => '1'));
6a488035
TO
633 $this->assertEquals(1, $result['count'], 'status_id should also work');
634
2b46f1da 635 $result = $this->callAPISuccess('Activity', 'Get', array('activity_status_id' => '2'));
6a488035 636 $this->assertEquals(0, $result['count'], 'No activities of status 1 should exist');
b8a3da18 637 $result = $this->callAPISuccess('Activity', 'Get', array(
92915c55 638 'version' => $this->_apiversion,
c301f76e 639 'status_id' => '2',
92915c55 640 ));
6a488035
TO
641 $this->assertEquals(0, $result['count'], 'No activities of status 1 should exist');
642
42d30b83 643 }
6a488035 644
d424ffde 645 /**
42d30b83
DL
646 * test that get functioning does filtering
647 */
00be9182 648 public function testGetFilterMaxDate() {
6a488035 649 $params = array(
b8a3da18 650 'source_contact_id' => $this->_contactID,
6a488035
TO
651 'subject' => 'Make-it-Happen Meeting',
652 'activity_date_time' => '20110101',
653 'duration' => 120,
e3aa0dd1 654 'location' => 'Pennsylvania',
6a488035
TO
655 'details' => 'a test activity',
656 'status_id' => 1,
657 'activity_name' => 'Test activity type',
658 'version' => $this->_apiversion,
659 'priority_id' => 1,
660 );
b8a3da18 661 $activityOne = $this->callAPISuccess('Activity', 'Create', $params);
6a488035 662 $params['activity_date_time'] = 20120216;
b8a3da18 663 $activityTwo = $this->callAPISuccess('Activity', 'Create', $params);
664 $result = $this->callAPISuccess('Activity', 'Get', array(
92915c55
TO
665 'version' => 3,
666 ));
6a488035
TO
667 $description = "demonstrates _low filter (at time of writing doesn't work if contact_id is set";
668 $subfile = "DateTimeLow";
669 $this->assertEquals(2, $result['count']);
670 $params = array(
671 'version' => 3,
672 'filter.activity_date_time_low' => '20120101000000',
673 'sequential' => 1,
674 );
9f1b81e0 675 $result = $this->callAPIAndDocument('Activity', 'Get', $params, __FUNCTION__, __FILE__, $description, $subfile);
e3aa0dd1 676 $this->assertEquals(1, $result['count']);
6a488035
TO
677 $description = "demonstrates _high filter (at time of writing doesn't work if contact_id is set";
678 $subfile = "DateTimeHigh";
e3aa0dd1 679 $this->assertEquals('2012-02-16 00:00:00', $result['values'][0]['activity_date_time']);
6a488035 680 $params = array(
b8a3da18 681 'source_contact_id' => $this->_contactID,
6a488035
TO
682 'version' => 3,
683 'filter.activity_date_time_high' => '20120101000000',
684 'sequential' => 1,
685 );
9f1b81e0 686 $result = $this->callAPIAndDocument('Activity', 'Get', $params, __FUNCTION__, __FILE__, $description, $subfile);
6a488035
TO
687
688 $this->assertEquals(1, $result['count']);
e3aa0dd1 689 $this->assertEquals('2011-01-01 00:00:00', $result['values'][0]['activity_date_time']);
6a488035 690
b8a3da18 691 $this->callAPISuccess('Activity', 'Delete', array('version' => 3, 'id' => $activityOne['id']));
692 $this->callAPISuccess('Activity', 'Delete', array('version' => 3, 'id' => $activityTwo['id']));
6a488035
TO
693 }
694
695 /**
d177a2a6
EM
696 * Test civicrm_activity_get() with a good activity ID which
697 * has associated custom data
6a488035 698 */
00be9182 699 public function testActivityGetGoodIDCustom() {
6a488035
TO
700 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, __FILE__);
701
702 $params = $this->_params;
703 $params['custom_' . $ids['custom_field_id']] = "custom string";
704
e3aa0dd1 705 $this->callAPISuccess($this->_entity, 'create', $params);
9f1b81e0 706
e3aa0dd1 707 // Retrieve the test value.
6a488035
TO
708 $params = array(
709 'activity_type_id' => $this->test_activity_type_value,
6a488035
TO
710 'sequential' => 1,
711 'return.custom_' . $ids['custom_field_id'] => 1,
712 );
9f1b81e0 713 $result = $this->callAPIAndDocument('activity', 'get', $params, __FUNCTION__, __FILE__);
714 $this->assertEquals("custom string", $result['values'][0]['custom_' . $ids['custom_field_id']]);
6a488035 715
9f1b81e0 716 $this->assertEquals($this->test_activity_type_value, $result['values'][0]['activity_type_id']);
6a488035
TO
717 $this->assertEquals('test activity type id', $result['values'][0]['subject'], 'In line ' . __LINE__);
718 $this->customFieldDelete($ids['custom_field_id']);
719 $this->customGroupDelete($ids['custom_group_id']);
720 }
721
722 /**
d177a2a6
EM
723 * Test civicrm_activity_get() with a good activity ID which
724 * has associated custom data
6a488035 725 */
00be9182 726 public function testActivityGetContact_idCustom() {
6a488035
TO
727 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, __FILE__);
728
729 $params = $this->_params;
730 $params['custom_' . $ids['custom_field_id']] = "custom string";
731
b8a3da18 732 $result = $this->callAPISuccess($this->_entity, 'create', $params);
e3aa0dd1 733 // Retrieve the test value
6a488035
TO
734 $params = array(
735 'contact_id' => $this->_params['source_contact_id'],
736 'activity_type_id' => $this->test_activity_type_value,
6a488035
TO
737 'sequential' => 1,
738 'return.custom_' . $ids['custom_field_id'] => 1,
739 );
9f1b81e0 740 $result = $this->callAPIAndDocument('activity', 'get', $params, __FUNCTION__, __FILE__);
6a488035
TO
741 $this->assertEquals("custom string", $result['values'][0]['custom_' . $ids['custom_field_id']], ' in line ' . __LINE__);
742
6a488035
TO
743 $this->assertEquals($this->test_activity_type_value, $result['values'][0]['activity_type_id'], 'In line ' . __LINE__);
744 $this->assertEquals('test activity type id', $result['values'][0]['subject'], 'In line ' . __LINE__);
e3aa0dd1 745 $this->assertEquals($result['values'][0]['id'], $result['id']);
6a488035
TO
746 }
747
748 /**
e3aa0dd1 749 * Check activity deletion with empty params.
6a488035 750 */
00be9182 751 public function testDeleteActivityForEmptyParams() {
6a488035 752 $params = array('version' => $this->_apiversion);
e3aa0dd1 753 $this->callAPIFailure('activity', 'delete', $params);
6a488035
TO
754 }
755
756 /**
e3aa0dd1 757 * Check activity deletion without activity id.
6a488035 758 */
00be9182 759 public function testDeleteActivityWithoutId() {
6a488035
TO
760 $params = array(
761 'activity_name' => 'Meeting',
762 'version' => $this->_apiversion,
763 );
d0e1eff2 764 $result = $this->callAPIFailure('activity', 'delete', $params);
6a488035
TO
765 }
766
767 /**
100fef9d 768 * Check activity deletion without activity type
6a488035 769 */
00be9182 770 public function testDeleteActivityWithoutActivityType() {
6a488035 771 $params = array('id' => 1);
d0e1eff2 772 $result = $this->callAPIFailure('activity', 'delete', $params);
6a488035
TO
773 }
774
775 /**
100fef9d 776 * Check activity deletion with incorrect data
6a488035 777 */
00be9182 778 public function testDeleteActivityWithIncorrectActivityType() {
6a488035
TO
779 $params = array(
780 'id' => 1,
781 'activity_name' => 'Test Activity',
782 );
783
d0e1eff2 784 $result = $this->callAPIFailure('activity', 'delete', $params);
6a488035
TO
785 }
786
787 /**
100fef9d 788 * Check activity deletion with correct data
6a488035 789 */
00be9182 790 public function testDeleteActivity() {
b8a3da18 791 $result = $this->callAPISuccess('activity', 'create', $this->_params);
6a488035
TO
792 $params = array(
793 'id' => $result['id'],
794 'version' => $this->_apiversion,
795 );
796
b8a3da18 797 $result = $this->callAPISuccess('activity', 'delete', $params);
6a488035 798 $this->documentMe($params, $result, __FUNCTION__, __FILE__);
6a488035
TO
799 }
800
6a488035 801 /**
100fef9d 802 * Check if required fields are not passed
6a488035 803 */
00be9182 804 public function testActivityUpdateWithoutRequired() {
6a488035
TO
805 $params = array(
806 'subject' => 'this case should fail',
807 'scheduled_date_time' => date('Ymd'),
808 );
809
d0e1eff2 810 $result = $this->callAPIFailure('activity', 'create', $params);
6a488035
TO
811 }
812
813 /**
814 * Test civicrm_activity_update() with non-numeric id
815 */
00be9182 816 public function testActivityUpdateWithNonNumericId() {
6a488035
TO
817 $params = array(
818 'id' => 'lets break it',
819 'activity_name' => 'Meeting',
820 'subject' => 'this case should fail',
821 'scheduled_date_time' => date('Ymd'),
822 );
823
d0e1eff2 824 $result = $this->callAPIFailure('activity', 'create', $params);
6a488035
TO
825 }
826
827 /**
100fef9d 828 * Check with incorrect required fields
6a488035 829 */
00be9182 830 public function testActivityUpdateWithIncorrectContactActivityType() {
6a488035
TO
831 $params = array(
832 'id' => 1,
833 'activity_name' => 'Test Activity',
834 'subject' => 'this case should fail',
835 'scheduled_date_time' => date('Ymd'),
b8a3da18 836 'source_contact_id' => $this->_contactID,
6a488035
TO
837 );
838
b8a3da18 839 $result = $this->callAPIFailure('activity', 'create', $params,
840 'Invalid Activity Id');
6a488035
TO
841 }
842
843 /**
d177a2a6 844 * Test civicrm_activity_update() to update an existing activity
6a488035 845 */
00be9182 846 public function testActivityUpdate() {
b8a3da18 847 $result = $this->callAPISuccess('activity', 'create', $this->_params);
6a488035
TO
848
849 $params = array(
850 'id' => $result['id'],
851 'subject' => 'Make-it-Happen Meeting',
852 'activity_date_time' => '20091011123456',
853 'duration' => 120,
854 'location' => '21, Park Avenue',
855 'details' => 'Lets update Meeting',
856 'status_id' => 1,
b8a3da18 857 'source_contact_id' => $this->_contactID,
6a488035 858 'priority_id' => 1,
6a488035
TO
859 );
860
b8a3da18 861 $result = $this->callAPISuccess('activity', 'create', $params);
6a488035
TO
862 //hack on date comparison - really we should make getAndCheck smarter to handle dates
863 $params['activity_date_time'] = '2009-10-11 12:34:56';
42d30b83
DL
864 // we also unset source_contact_id since it is stored in an aux table
865 unset($params['source_contact_id']);
6a488035
TO
866 $this->getAndCheck($params, $result['id'], 'activity');
867 }
868
869 /**
d177a2a6
EM
870 * Test civicrm_activity_update() with valid parameters
871 * and some custom data
6a488035 872 */
00be9182 873 public function testActivityUpdateCustom() {
6a488035
TO
874 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, __FILE__);
875
876 $params = $this->_params;
877
e3aa0dd1 878 // Create an activity with custom data
6a488035
TO
879 //this has been updated from the previous 'old format' function - need to make it work
880 $params = array(
b8a3da18 881 'source_contact_id' => $this->_contactID,
6a488035
TO
882 'subject' => 'Make-it-Happen Meeting',
883 'activity_date_time' => '2009-10-18',
884 'duration' => 120,
e3aa0dd1 885 'location' => 'Pennsylvania',
6a488035
TO
886 'details' => 'a test activity to check the update api',
887 'status_id' => 1,
888 'activity_name' => 'Test activity type',
889 'version' => $this->_apiversion,
890 'custom_' . $ids['custom_field_id'] => 'custom string',
891 );
b8a3da18 892 $result = $this->callAPISuccess('activity', 'create', $params);
6a488035
TO
893
894 $activityId = $result['id'];
92915c55 895 $result = $this->callAPISuccess($this->_entity, 'get', array(
c301f76e 896 'return.custom_' . $ids['custom_field_id'] => 1,
897 'version' => 3,
898 'id' => $result['id'],
899 ));
e3aa0dd1 900 $this->assertEquals("custom string", $result['values'][$result['id']]['custom_' . $ids['custom_field_id']]);
901 $this->assertEquals("2009-10-18 00:00:00", $result['values'][$result['id']]['activity_date_time']);
b8a3da18 902 $fields = $this->callAPISuccess('activity', 'getfields', array('version' => $this->_apiversion));
6a488035
TO
903 $this->assertTrue(is_array($fields['values']['custom_' . $ids['custom_field_id']]));
904
e3aa0dd1 905 // Update the activity with custom data.
6a488035
TO
906 $params = array(
907 'id' => $activityId,
b8a3da18 908 'source_contact_id' => $this->_contactID,
6a488035
TO
909 'subject' => 'Make-it-Happen Meeting',
910 'status_id' => 1,
911 'activity_name' => 'Test activity type',
912 // add this since dates are messed up
913 'activity_date_time' => date('Ymd'),
914 'custom_' . $ids['custom_field_id'] => 'Updated my test data',
915 'version' => $this->_apiversion,
916 );
b8a3da18 917 $result = $this->callAPISuccess('Activity', 'Create', $params);
6a488035 918
92915c55 919 $result = $this->callAPISuccess($this->_entity, 'get', array(
c301f76e 920 'return.custom_' . $ids['custom_field_id'] => 1,
921 'version' => 3,
922 'id' => $result['id'],
923 ));
e3aa0dd1 924 $this->assertEquals("Updated my test data", $result['values'][$result['id']]['custom_' . $ids['custom_field_id']]);
6a488035
TO
925 }
926
927 /**
d177a2a6
EM
928 * Test civicrm_activity_update() for core activity fields
929 * and some custom data
6a488035 930 */
00be9182 931 public function testActivityUpdateCheckCoreFields() {
6a488035
TO
932 $params = $this->_params;
933 $contact1Params = array(
934 'first_name' => 'John',
935 'middle_name' => 'J.',
936 'last_name' => 'Anderson',
937 'prefix_id' => 3,
938 'suffix_id' => 3,
939 'email' => 'john_anderson@civicrm.org',
940 'contact_type' => 'Individual',
941 );
942
943 $contact1 = $this->individualCreate($contact1Params);
944 $contact2Params = array(
945 'first_name' => 'Michal',
946 'middle_name' => 'J.',
947 'last_name' => 'Anderson',
948 'prefix_id' => 3,
949 'suffix_id' => 3,
950 'email' => 'michal_anderson@civicrm.org',
951 'contact_type' => 'Individual',
952 );
953
954 $contact2 = $this->individualCreate($contact2Params);
955
956 $params['assignee_contact_id'] = array($contact1, $contact2);
957 $params['target_contact_id'] = array($contact2 => $contact2);
b8a3da18 958 $result = $this->callAPISuccess('Activity', 'Create', $params);
6a488035 959
6a488035 960 $activityId = $result['id'];
6a488035
TO
961 $getParams = array(
962 'return.assignee_contact_id' => 1,
963 'return.target_contact_id' => 1,
964 'version' => $this->_apiversion,
965 'id' => $activityId,
966 );
481a74f4 967 $result = $this->callAPISuccess($this->_entity, 'get', $getParams);
6a488035
TO
968 $assignee = $result['values'][$result['id']]['assignee_contact_id'];
969 $target = $result['values'][$result['id']]['target_contact_id'];
970 $this->assertEquals(2, count($assignee), ' in line ' . __LINE__);
971 $this->assertEquals(1, count($target), ' in line ' . __LINE__);
972 $this->assertEquals(TRUE, in_array($contact1, $assignee), ' in line ' . __LINE__);
973 $this->assertEquals(TRUE, in_array($contact2, $target), ' in line ' . __LINE__);
974
975 $contact3Params = array(
976 'first_name' => 'Jijo',
977 'middle_name' => 'J.',
978 'last_name' => 'Anderson',
979 'prefix_id' => 3,
980 'suffix_id' => 3,
981 'email' => 'jijo_anderson@civicrm.org',
982 'contact_type' => 'Individual',
983 );
984
985 $contact4Params = array(
986 'first_name' => 'Grant',
987 'middle_name' => 'J.',
988 'last_name' => 'Anderson',
989 'prefix_id' => 3,
990 'suffix_id' => 3,
991 'email' => 'grant_anderson@civicrm.org',
992 'contact_type' => 'Individual',
993 );
994
995 $contact3 = $this->individualCreate($contact3Params);
996 $contact4 = $this->individualCreate($contact4Params);
997
998 $params = array();
999 $params['id'] = $activityId;
6a488035
TO
1000 $params['assignee_contact_id'] = array($contact3 => $contact3);
1001 $params['target_contact_id'] = array($contact4 => $contact4);
1002
b8a3da18 1003 $result = $this->callAPISuccess('activity', 'create', $params);
6a488035
TO
1004
1005 $this->assertEquals($activityId, $result['id'], ' in line ' . __LINE__);
1006
b8a3da18 1007 $result = $this->callAPISuccess(
42d30b83
DL
1008 $this->_entity,
1009 'get',
1010 array(
1011 'return.assignee_contact_id' => 1,
1012 'return.target_contact_id' => 1,
1013 'return.source_contact_id' => 1,
21dfd5f5 1014 'id' => $result['id'],
42d30b83
DL
1015 )
1016 );
6a488035
TO
1017
1018 $assignee = $result['values'][$result['id']]['assignee_contact_id'];
1019 $target = $result['values'][$result['id']]['target_contact_id'];
1020
1021 $this->assertEquals(1, count($assignee), ' in line ' . __LINE__);
1022 $this->assertEquals(1, count($target), ' in line ' . __LINE__);
1023 $this->assertEquals(TRUE, in_array($contact3, $assignee), ' in line ' . __LINE__);
1024 $this->assertEquals(TRUE, in_array($contact4, $target), ' in line ' . __LINE__);
1025
1026 foreach ($this->_params as $fld => $val) {
9f1b81e0 1027 $this->assertEquals($val, $result['values'][$result['id']][$fld]);
6a488035
TO
1028 }
1029 }
1030
1031 /**
d177a2a6
EM
1032 * Test civicrm_activity_update() where the DB has a date_time
1033 * value and there is none in the update params.
6a488035 1034 */
00be9182 1035 public function testActivityUpdateNotDate() {
b8a3da18 1036 $result = $this->callAPISuccess('activity', 'create', $this->_params);
6a488035
TO
1037
1038 $params = array(
1039 'id' => $result['id'],
1040 'subject' => 'Make-it-Happen Meeting',
1041 'duration' => 120,
1042 'location' => '21, Park Avenue',
1043 'details' => 'Lets update Meeting',
1044 'status_id' => 1,
b8a3da18 1045 'source_contact_id' => $this->_contactID,
6a488035 1046 'priority_id' => 1,
6a488035
TO
1047 );
1048
b8a3da18 1049 $result = $this->callAPISuccess('activity', 'create', $params);
6a488035
TO
1050 //hack on date comparison - really we should make getAndCheck smarter to handle dates
1051 $params['activity_date_time'] = $this->_params['activity_date_time'];
42d30b83
DL
1052 // we also unset source_contact_id since it is stored in an aux table
1053 unset($params['source_contact_id']);
6a488035
TO
1054 $this->getAndCheck($params, $result['id'], 'activity');
1055 }
1056
1057 /**
100fef9d 1058 * Check activity update with status
6a488035 1059 */
00be9182 1060 public function testActivityUpdateWithStatus() {
b8a3da18 1061 $activity = $this->callAPISuccess('activity', 'create', $this->_params);
6a488035
TO
1062 $params = array(
1063 'id' => $activity['id'],
b8a3da18 1064 'source_contact_id' => $this->_contactID,
6a488035
TO
1065 'subject' => 'Hurry update works',
1066 'status_id' => 1,
1067 'activity_name' => 'Test activity type',
6a488035
TO
1068 );
1069
b8a3da18 1070 $result = $this->callAPISuccess('activity', 'create', $params);
9f1b81e0 1071 $this->assertEquals($result['id'], $activity['id']);
1072 $this->assertEquals($result['values'][$activity['id']]['subject'], 'Hurry update works');
1073 $this->assertEquals($result['values'][$activity['id']]['status_id'], 1
6a488035
TO
1074 );
1075 }
1076
1077 /**
d177a2a6
EM
1078 * Test civicrm_activity_update() where the source_contact_id
1079 * is not in the update params.
6a488035 1080 */
00be9182 1081 public function testActivityUpdateKeepSource() {
b8a3da18 1082 $activity = $this->callAPISuccess('activity', 'create', $this->_params);
e3aa0dd1 1083 // Updating the activity but not providing anything for the source contact
1084 // (It was set as $this->_contactID earlier.)
6a488035
TO
1085 $params = array(
1086 'id' => $activity['id'],
1087 'subject' => 'Updated Make-it-Happen Meeting',
1088 'duration' => 120,
1089 'location' => '21, Park Avenue',
1090 'details' => 'Lets update Meeting',
1091 'status_id' => 1,
1092 'activity_name' => 'Test activity type',
1093 'priority_id' => 1,
6a488035
TO
1094 );
1095
b8a3da18 1096 $result = $this->callAPISuccess('activity', 'create', $params);
9f1b81e0 1097 $findactivity = $this->callAPISuccess('Activity', 'Get', array('id' => $activity['id']));
6a488035
TO
1098 }
1099
1100 /**
d177a2a6 1101 * Test civicrm_activities_contact_get()
6a488035 1102 */
00be9182 1103 public function testActivitiesContactGet() {
b8a3da18 1104 $activity = $this->callAPISuccess('activity', 'create', $this->_params);
1105 $activity2 = $this->callAPISuccess('activity', 'create', $this->_params2);
e3aa0dd1 1106 // Get activities associated with contact $this->_contactID.
6a488035 1107 $params = array(
b8a3da18 1108 'contact_id' => $this->_contactID,
6a488035 1109 );
b8a3da18 1110 $result = $this->callAPISuccess('activity', 'get', $params);
6a488035 1111
6a488035 1112 $this->assertEquals(2, $result['count'], 'In line ' . __LINE__);
e3aa0dd1 1113 $this->assertEquals($this->test_activity_type_value, $result['values'][$activity['id']]['activity_type_id']);
1114 $this->assertEquals('Test activity type', $result['values'][$activity['id']]['activity_name']);
1115 $this->assertEquals('Test activity type', $result['values'][$activity2['id']]['activity_name']);
6a488035 1116 }
92915c55 1117
d424ffde 1118 /**
e3aa0dd1 1119 * Test chained Activity format.
42d30b83 1120 */
e3aa0dd1 1121 public function testChainedActivityGet() {
6a488035 1122
b8a3da18 1123 $activity = $this->callAPISuccess('Contact', 'Create', array(
92915c55
TO
1124 'display_name' => "bob brown",
1125 'contact_type' => 'Individual',
1126 'api.activity_type.create' => array(
1127 'weight' => '2',
1128 'label' => 'send out letters',
1129 'filter' => 0,
1130 'is_active' => 1,
1131 'is_optgroup' => 1,
1132 'is_default' => 0,
1133 ),
1134 'api.activity.create' => array(
1135 'subject' => 'send letter',
c301f76e 1136 'activity_type_id' => '$value.api.activity_type.create.values.0.value',
92915c55
TO
1137 ),
1138 ));
6a488035 1139
b8a3da18 1140 $result = $this->callAPISuccess('Activity', 'Get', array(
92915c55
TO
1141 'id' => $activity['id'],
1142 'return.assignee_contact_id' => 1,
1143 'api.contact.get' => array('api.pledge.get' => 1),
1144 ));
6a488035
TO
1145 }
1146
6a488035 1147 /**
e3aa0dd1 1148 * Test civicrm_activity_contact_get() with invalid Contact ID.
6a488035 1149 */
00be9182 1150 public function testActivitiesContactGetWithInvalidContactId() {
6a488035 1151 $params = array('contact_id' => 'contact');
e3aa0dd1 1152 $this->callAPIFailure('activity', 'get', $params);
6a488035
TO
1153 }
1154
1155 /**
e3aa0dd1 1156 * Test civicrm_activity_contact_get() with contact having no Activity.
6a488035 1157 */
00be9182 1158 public function testActivitiesContactGetHavingNoActivity() {
6a488035
TO
1159 $params = array(
1160 'first_name' => 'dan',
1161 'last_name' => 'conberg',
1162 'email' => 'dan.conberg@w.co.in',
1163 'contact_type' => 'Individual',
6a488035
TO
1164 );
1165
b8a3da18 1166 $contact = $this->callAPISuccess('contact', 'create', $params);
6a488035
TO
1167 $params = array(
1168 'contact_id' => $contact['id'],
6a488035 1169 );
b8a3da18 1170 $result = $this->callAPISuccess('activity', 'get', $params);
e3aa0dd1 1171 $this->assertEquals($result['count'], 0);
6a488035
TO
1172 }
1173
e3aa0dd1 1174 /**
1175 * Test getfields function.
1176 */
00be9182 1177 public function testGetFields() {
b8a3da18 1178 $params = array('action' => 'create');
9f1b81e0 1179 $result = $this->callAPIAndDocument('activity', 'getfields', $params, __FUNCTION__, __FILE__, NULL, NULL, 'getfields');
e3aa0dd1 1180 $this->assertTrue(is_array($result['values']), 'get fields doesn\'t return values array');
6a488035 1181 foreach ($result['values'] as $key => $value) {
e3aa0dd1 1182 $this->assertTrue(is_array($value), $key . " is not an array");
6a488035
TO
1183 }
1184 }
96025800 1185
6a488035 1186}