Merge pull request #5536 from totten/4.5-httpclient
[civicrm-core.git] / tests / phpunit / api / v3 / ActivityContactTest.php
CommitLineData
3ed73cde 1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
3ed73cde 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
3ed73cde 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/**
33 * Test APIv3 civicrm_activity_contact* functions
34 *
6c6e6187
TO
35 * @package CiviCRM_APIv3
36 * @subpackage API_Activity
3ed73cde 37 */
38class api_v3_ActivityContactTest extends CiviUnitTestCase {
39 protected $_apiversion;
40 protected $_contactID;
41 protected $_activityID;
42 protected $_params;
43
44
00be9182 45 public function setUp() {
3ed73cde 46 $this->_apiversion = 3;
47 parent::setUp();
323df81e 48 $this->useTransaction(TRUE);
3ed73cde 49
5896d037
TO
50 $this->_contactID = $this->organizationCreate();
51 $activity = $this->activityCreate();
52 $this->_activityID = $activity['id'];
3ed73cde 53 CRM_Core_PseudoConstant::flush();
3ed73cde 54 $this->_params = array(
55 'contact_id' => $this->_contactID,
56 'activity_id' => $this->_activityID,
57 'record_type_id' => 2,
58 );
59 }
60
3ed73cde 61 public function testCreateActivityContact() {
62
63 $result = $this->callAPIAndDocument('activity_contact', 'create', $this->_params, __FUNCTION__, __FILE__);
64 $this->assertEquals(1, $result['count']);
65 $this->assertNotNull($result['values'][$result['id']]['id']);
66
67 $this->callAPISuccess('activity_contact', 'delete', array('id' => $result['id']));
68 }
69
70 public function testDeleteActivityContact() {
71 //create one
72 $create = $this->callAPISuccess('activity_contact', 'create', $this->_params);
73
6c6e6187 74 $result = $this->callAPIAndDocument('activity_contact', 'delete', array('id' => $create['id']), __FUNCTION__, __FILE__);
3ed73cde 75 $this->assertEquals(1, $result['count']);
76 $get = $this->callAPISuccess('activity_contact', 'get', array(
77 'id' => $create['id'],
78 ));
79 $this->assertEquals(0, $get['count'], 'ActivityContact not successfully deleted');
80 }
81
f0be539a
EM
82 /**
83 *
84 */
3ed73cde 85 public function testGetActivitiesByContact() {
f0be539a 86 $this->callAPISuccess('ActivityContact', 'Get', array('contact_id' => $this->_contactID));
3ed73cde 87 }
88
f0be539a
EM
89 public function testGetParticipantsByActivity() {
90 $this->callAPISuccess('ActivityContact', 'Get', array('activity_id' => $this->_activityID));
3ed73cde 91 }
92
93 /**
94 * Test civicrm_activity_contact_get with empty params.
95 */
96 public function testGetEmptyParams() {
97 $result = $this->callAPISuccess('ActivityContact', 'Get', array());
98 }
99
100 /**
101 * Test civicrm_activity_contact_get with wrong params.
102 */
103 public function testGetWrongParams() {
104 $this->callAPIFailure('ActivityContact', 'Get', array('contact_id' => 'abc'));
105 $this->callAPIFailure('ActivityContact', 'Get', array('activity_id' => 'abc'));
106 $this->callAPIFailure('ActivityContact', 'Get', array('record_type_id' => 'abc'));
107 }
96025800 108
3ed73cde 109}