Merge pull request #7768 from totten/master-test-boot
[civicrm-core.git] / tests / phpunit / api / v3 / UFMatchTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 class for UFGroup API - civicrm_uf_*
30 * @todo Split UFGroup and UFJoin tests
31 *
32 * @package CiviCRM
33 * @group headless
34 */
35 class api_v3_UFMatchTest extends CiviUnitTestCase {
36 // ids from the uf_group_test.xml fixture
37 protected $_ufGroupId = 11;
38 protected $_ufFieldId;
39 protected $_contactId;
40 protected $_apiversion;
41 protected $_params = array();
42
43
44 protected function setUp() {
45 parent::setUp();
46 $this->_apiversion = 3;
47 $this->quickCleanup(
48 array(
49 'civicrm_group',
50 'civicrm_contact',
51 'civicrm_uf_group',
52 'civicrm_uf_join',
53 'civicrm_uf_match',
54 )
55 );
56 $this->_contactId = $this->individualCreate();
57 $op = new PHPUnit_Extensions_Database_Operation_Insert();
58 $op->execute(
59 $this->_dbconn,
60 $this->createFlatXMLDataSet(dirname(__FILE__) . '/dataset/uf_group_test.xml')
61 );
62
63 $this->_params = array(
64 'contact_id' => $this->_contactId,
65 'uf_id' => '2',
66 'uf_name' => 'blahdyblah@gmail.com',
67 'domain_id' => 1,
68 );
69 }
70
71 public function tearDown() {
72 // Truncate the tables
73 $this->quickCleanup(
74 array(
75 'civicrm_group',
76 'civicrm_contact',
77 'civicrm_uf_group',
78 'civicrm_uf_join',
79 'civicrm_uf_match',
80 )
81 );
82 }
83
84 /**
85 * Fetch contact id by uf id.
86 */
87 public function testGetUFMatchID() {
88 $params = array(
89 'uf_id' => 42,
90 );
91 $result = $this->callAPISuccess('uf_match', 'get', $params);
92 $this->assertEquals($result['values'][$result['id']]['contact_id'], 69);
93 }
94
95 public function testGetUFMatchIDWrongParam() {
96 $params = 'a string';
97 $result = $this->callAPIFailure('uf_match', 'get', $params);
98 }
99
100 /**
101 * Fetch uf id by contact id.
102 */
103 public function testGetUFID() {
104 $params = array(
105 'contact_id' => 69,
106 );
107 $result = $this->callAPIAndDocument('uf_match', 'get', $params, __FUNCTION__, __FILE__);
108 $this->assertEquals($result['values'][$result['id']]['uf_id'], 42);
109 }
110
111 public function testGetUFIDWrongParam() {
112 $params = 'a string';
113 $result = $this->callAPIFailure('uf_match', 'get', $params);
114 }
115
116 /**
117 * Test civicrm_activity_create() using example code
118 */
119 public function testUFMatchGetExample() {
120 require_once 'api/v3/examples/UFMatch/Get.php';
121 $result = UF_match_get_example();
122 $expectedResult = UF_match_get_expectedresult();
123 $this->assertEquals($result, $expectedResult);
124 }
125
126 public function testCreate() {
127 $result = $this->callAPISuccess('uf_match', 'create', $this->_params);
128 $this->getAndCheck($this->_params, $result['id'], 'uf_match');
129 }
130
131 public function testDelete() {
132 $result = $this->callAPISuccess('uf_match', 'create', $this->_params);
133 $this->assertEquals(1, $this->callAPISuccess('uf_match', 'getcount', array(
134 'id' => $result['id'],
135 )));
136 $this->callAPISuccess('uf_match', 'delete', array(
137 'id' => $result['id'],
138 ));
139 $this->assertEquals(0, $this->callAPISuccess('uf_match', 'getcount', array(
140 'id' => $result['id'],
141 )));
142 }
143
144 }