test fix, remove old param & fix comments
[civicrm-core.git] / tests / phpunit / api / v3 / TagTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
TO
27
28require_once 'CiviTest/CiviUnitTestCase.php';
29
30
31/**
32 * Test APIv3 civicrm_tag_* functions
33 *
6c6e6187
TO
34 * @package CiviCRM_APIv3
35 * @subpackage API_Core
6a488035 36 */
6a488035 37class api_v3_TagTest extends CiviUnitTestCase {
6c6e6187 38 protected $_apiversion = 3;
fb32de45 39 /**
40 * @ids array of values to be cleaned up in the tear down
41 */
42 protected $ids = array();
43 /**
eceb18cc 44 * Tag id.
fb32de45 45 * @var integer
46 */
47 protected $tag = array();
48
49 protected $tagID;
b7c9bc4c 50
00be9182 51 public function setUp() {
6a488035 52 parent::setUp();
1166fbea 53 $this->useTransaction(TRUE);
fb32de45 54 $this->tag = $this->tagCreate();
55 $this->ids['tag'][] = $this->tagID = $this->tag['id'];
6a488035
TO
56 }
57
fb32de45 58 ///////////////// civicrm_tag_get methods
6a488035
TO
59 /**
60 * Test civicrm_tag_get with wrong params.
61 */
62 public function testGetWrongParams() {
641cb0ba 63 $params = array('name' => 'Wrong Tag Name');
64 $result = $this->callAPISuccess('tag', 'get', $params);
fb32de45 65 $this->assertEquals(0, $result['count']);
6a488035
TO
66 }
67
68 /**
69 * Test civicrm_tag_get - success expected.
70 */
71 public function testGet() {
6a488035 72 $params = array(
fb32de45 73 'id' => $this->tagID,
74 'name' => $this->tag['name'],
6a488035 75 );
641cb0ba 76 $result = $this->callAPIAndDocument('tag', 'get', $params, __FUNCTION__, __FILE__);
ba4a1892 77 $this->assertEquals($this->tag['description'], $result['values'][$this->tagID]['description']);
fb32de45 78 $this->assertEquals($this->tag['name'], $result['values'][$this->tagID]['name']);
6a488035
TO
79 }
80
81 /**
82 * Test civicrm_tag_get - success expected.
83 */
84 public function testGetReturnArray() {
5c49fee0 85 $description = "Demonstrates use of Return as an array.";
a828d7b8 86 $subfile = "GetReturnArray";
6a488035
TO
87
88 $params = array(
fb32de45 89 'id' => $this->tagID,
90 'name' => $this->tag['name'],
6a488035
TO
91 'return' => array('name'),
92 );
641cb0ba 93 $result = $this->callAPIAndDocument('tag', 'get', $params, __FUNCTION__, __FILE__, $description, $subfile);
fb32de45 94 $this->assertTrue(empty($result['values'][$this->tagID]['description']));
95 $this->assertEquals($this->tag['name'], $result['values'][$this->tagID]['name']);
6a488035
TO
96 }
97
98 ///////////////// civicrm_tag_create methods
99
6a488035
TO
100 /**
101 * Test civicrm_tag_create with empty params.
102 */
00be9182 103 public function testCreateEmptyParams() {
6c6e6187 104 $result = $this->callAPIFailure('tag', 'create', array(), 'Mandatory key(s) missing from params array: name');
6a488035
TO
105 }
106
107 /**
fe482240 108 * Test civicrm_tag_create.
6a488035 109 */
00be9182 110 public function testCreatePasstagInParams() {
6a488035
TO
111 $params = array(
112 'tag' => 10,
113 'name' => 'New Tag23',
114 'description' => 'This is description for New Tag 02',
6a488035 115 );
641cb0ba 116 $result = $this->callAPISuccess('tag', 'create', $params);
ba4a1892 117 $this->assertEquals(10, $result['id']);
6a488035
TO
118 }
119
120 /**
121 * Test civicrm_tag_create - success expected.
122 */
00be9182 123 public function testCreate() {
6a488035 124 $params = array(
fb32de45 125 'name' => 'Super Heros',
126 'description' => 'Outside undie-wearers',
6a488035 127 );
641cb0ba 128 $result = $this->callAPIAndDocument('tag', 'create', $params, __FUNCTION__, __FILE__);
61ef23bd 129 $this->assertNotNull($result['id']);
6a488035
TO
130 $params['used_for'] = 'civicrm_contact';
131 $this->getAndCheck($params, $result['id'], 'tag');
132 }
133
134 /**
fe482240
EM
135 * Test civicrm_tag_create activity tag- success expected.
136 *
137 * Test checks that used_for is set and not over-written by default on update.
6a488035 138 */
00be9182 139 public function testCreateEntitySpecificTag() {
6a488035
TO
140 $params = array(
141 'name' => 'New Tag4',
710ec471
CW
142 'description' => 'This is description for New Activity tag',
143 'used_for' => 'civicrm_activity',
6a488035 144 );
641cb0ba 145 $result = $this->callAPISuccess('tag', 'create', $params);
710ec471 146 $this->callAPISuccess('tag', 'get', array());
6a488035
TO
147 $this->getAndCheck($params, $result['id'], 'tag', 0, __FUNCTION__ . ' tag first created');
148 unset($params['used_for']);
6a488035 149 $params['id'] = $result['id'];
641cb0ba 150 $result = $this->callAPISuccess('tag', 'create', $params);
710ec471 151 $params['used_for'] = 'civicrm_activity';
6a488035
TO
152 $this->getAndCheck($params, $result['id'], 'tag', 1, __FUNCTION__ . ' tag updated in line ' . __LINE__);
153 }
154 ///////////////// civicrm_tag_delete methods
155
6a488035
TO
156 /**
157 * Test civicrm_tag_delete without tag id.
158 */
00be9182 159 public function testDeleteWithoutTagId() {
641cb0ba 160 $result = $this->callAPIFailure('tag', 'delete', array(), 'Mandatory key(s) missing from params array: id');
6a488035
TO
161 }
162
163 /**
164 * Test civicrm_tag_delete .
165 */
00be9182 166 public function testTagDeleteOldSyntax() {
6a488035 167 $params = array(
fb32de45 168 'tag_id' => $this->tagID,
6a488035 169 );
641cb0ba 170 $result = $this->callAPISuccess('tag', 'delete', $params);
fb32de45 171 unset($this->ids['tag']);
6a488035
TO
172 }
173
174 /**
175 * Test civicrm_tag_delete = $params['id'] is correct
176 */
00be9182 177 public function testTagDeleteCorrectSyntax() {
6a488035 178 $params = array(
fb32de45 179 'id' => $this->tagID,
6a488035 180 );
641cb0ba 181 $result = $this->callAPIAndDocument('tag', 'delete', $params, __FUNCTION__, __FILE__);
fb32de45 182 unset($this->ids['tag']);
6a488035
TO
183 }
184
00be9182 185 public function testTagGetfields() {
5c49fee0 186 $description = "Demonstrate use of getfields to interrogate api.";
92915c55 187 $params = array('action' => 'create');
a828d7b8 188 $result = $this->callAPIAndDocument('tag', 'getfields', $params, __FUNCTION__, __FILE__, $description, NULL);
6a488035
TO
189 $this->assertEquals('civicrm_contact', $result['values']['used_for']['api.default']);
190 }
76ec9ca7 191
00be9182 192 public function testTagGetList() {
5c49fee0 193 $description = "Demonstrates use of api.getlist for autocomplete and quicksearch applications.";
76ec9ca7
CW
194 $params = array(
195 'input' => $this->tag['name'],
21dfd5f5 196 'extra' => array('used_for'),
76ec9ca7 197 );
8250601e 198 $result = $this->callAPIAndDocument('tag', 'getlist', $params, __FUNCTION__, __FILE__, $description);
ba4a1892
TM
199 $this->assertEquals($this->tag['id'], $result['values'][0]['id']);
200 $this->assertEquals($this->tag['description'], $result['values'][0]['description'][0]);
201 $this->assertEquals($this->tag['used_for'], $result['values'][0]['extra']['used_for']);
76ec9ca7 202 }
96025800 203
6a488035 204}