Merge pull request #9187 from sqweets/ExportHeadersRelationships
[civicrm-core.git] / tests / phpunit / api / v3 / ImTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
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 /**
29 * Test APIv3 civicrm_im_* functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_Contact
33 * @group headless
34 */
35 class api_v3_ImTest extends CiviUnitTestCase {
36 protected $_apiversion = 3;
37 protected $params;
38 protected $id;
39 protected $_entity;
40
41 public $DBResetRequired = FALSE;
42
43 public function setUp() {
44 parent::setUp();
45 $this->useTransaction(TRUE);
46
47 $this->_entity = 'im';
48 $this->_contactID = $this->organizationCreate();
49 $this->params = array(
50 'contact_id' => $this->_contactID,
51 'name' => 'My Yahoo IM Handle',
52 'location_type_id' => 1,
53 'provider_id' => 1,
54 );
55 }
56
57 public function testCreateIm() {
58 $result = $this->callAPIAndDocument($this->_entity, 'create', $this->params, __FUNCTION__, __FILE__);
59 $this->assertEquals(1, $result['count']);
60 $this->getAndCheck($this->params, $result['id'], $this->_entity);
61 $this->assertNotNull($result['values'][$result['id']]['id']);
62 }
63
64 public function testGetIm() {
65 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
66 $result = $this->callAPIAndDocument($this->_entity, 'get', $this->params, __FUNCTION__, __FILE__);
67 $this->assertEquals(1, $result['count']);
68 $this->assertNotNull($result['values'][$result['id']]['id']);
69 $this->callAPISuccess($this->_entity, 'delete', array('id' => $result['id']));
70 }
71
72 public function testDeleteIm() {
73 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
74 $deleteParams = array('id' => $result['id']);
75 $result = $this->callAPIAndDocument($this->_entity, 'delete', $deleteParams, __FUNCTION__, __FILE__);
76 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
77 $this->assertEquals(0, $checkDeleted['count']);
78 }
79
80 public function testDeleteImInvalid() {
81 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
82 $deleteParams = array('id' => 600);
83 $result = $this->callAPIFailure($this->_entity, 'delete', $deleteParams);
84 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
85 $this->assertEquals(1, $checkDeleted['count']);
86 }
87
88 }