Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
81621fee | 4 | | CiviCRM version 4.7 | |
6a488035 | 5 | +--------------------------------------------------------------------+ |
15a4309a | 6 | | Copyright CiviCRM LLC (c) 2004-2017 | |
6a488035 TO |
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 | +--------------------------------------------------------------------+ | |
d25dd0ee | 26 | */ |
6a488035 | 27 | |
6a488035 TO |
28 | /** |
29 | * Test APIv3 civicrm_im_* functions | |
30 | * | |
6c6e6187 TO |
31 | * @package CiviCRM_APIv3 |
32 | * @subpackage API_Contact | |
acb109b7 | 33 | * @group headless |
6a488035 | 34 | */ |
6a488035 | 35 | class api_v3_ImTest extends CiviUnitTestCase { |
e6ff1593 | 36 | protected $_apiversion = 3; |
6a488035 TO |
37 | protected $params; |
38 | protected $id; | |
39 | protected $_entity; | |
b7c9bc4c | 40 | |
430ae6dd TO |
41 | public $DBResetRequired = FALSE; |
42 | ||
00be9182 | 43 | public function setUp() { |
6a488035 | 44 | parent::setUp(); |
c008f892 | 45 | $this->useTransaction(TRUE); |
6a488035 | 46 | |
92915c55 TO |
47 | $this->_entity = 'im'; |
48 | $this->_contactID = $this->organizationCreate(); | |
49 | $this->params = array( | |
6a488035 TO |
50 | 'contact_id' => $this->_contactID, |
51 | 'name' => 'My Yahoo IM Handle', | |
52 | 'location_type_id' => 1, | |
53 | 'provider_id' => 1, | |
54 | ); | |
55 | } | |
56 | ||
6a488035 | 57 | public function testCreateIm() { |
e6ff1593 | 58 | $result = $this->callAPIAndDocument($this->_entity, 'create', $this->params, __FUNCTION__, __FILE__); |
ba4a1892 | 59 | $this->assertEquals(1, $result['count']); |
6a488035 | 60 | $this->getAndCheck($this->params, $result['id'], $this->_entity); |
ba4a1892 | 61 | $this->assertNotNull($result['values'][$result['id']]['id']); |
6a488035 TO |
62 | } |
63 | ||
64 | public function testGetIm() { | |
e6ff1593 | 65 | $result = $this->callAPISuccess($this->_entity, 'create', $this->params); |
66 | $result = $this->callAPIAndDocument($this->_entity, 'get', $this->params, __FUNCTION__, __FILE__); | |
ba4a1892 TM |
67 | $this->assertEquals(1, $result['count']); |
68 | $this->assertNotNull($result['values'][$result['id']]['id']); | |
e6ff1593 | 69 | $this->callAPISuccess($this->_entity, 'delete', array('id' => $result['id'])); |
6a488035 TO |
70 | } |
71 | ||
72 | public function testDeleteIm() { | |
e6ff1593 | 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()); | |
ba4a1892 | 77 | $this->assertEquals(0, $checkDeleted['count']); |
6a488035 | 78 | } |
92915c55 | 79 | |
6a488035 | 80 | public function testDeleteImInvalid() { |
e6ff1593 | 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()); | |
ba4a1892 | 85 | $this->assertEquals(1, $checkDeleted['count']); |
6a488035 | 86 | } |
96025800 | 87 | |
6a488035 | 88 | } |