Merge pull request #4764 from rohankatkar/CRM-15615
[civicrm-core.git] / tests / phpunit / api / v3 / ConstantTest.php
1 <?php
2 /**
3 * File for the TestConstant class
4 *
5 * (PHP 5)
6 *
7 * @author Walt Haas <walt@dharmatech.org> (801) 534-1262
8 * @copyright Copyright CiviCRM LLC (C) 2009
9 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html
10 * GNU Affero General Public License version 3
11 * @version $Id: ConstantTest.php 31254 2010-12-15 10:09:29Z eileen $
12 * @package CiviCRM_APIv3
13 * @subpackage API_Constant
14 *
15 * This file is part of CiviCRM
16 *
17 * CiviCRM is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Affero General Public License
19 * as published by the Free Software Foundation; either version 3 of
20 * the License, or (at your option) any later version.
21 *
22 * CiviCRM is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU Affero General Public License for more details.
26 *
27 * You should have received a copy of the GNU Affero General Public
28 * License along with this program. If not, see
29 * <http://www.gnu.org/licenses/>.
30 */
31
32 /**
33 * Include class definitions
34 */
35 require_once 'CiviTest/CiviUnitTestCase.php';
36
37 /**
38 * Test APIv3 civicrm_activity_* functions
39 *
40 * @package CiviCRM_APIv3
41 * @subpackage API_Constant
42 */
43 class api_v3_ConstantTest extends CiviUnitTestCase {
44 protected $_apiversion = 3;
45
46
47 /**
48 * Constructor
49 *
50 * Initialize configuration
51 */ function __construct() {
52 parent::__construct();
53 }
54
55 /**
56 * Test setup for every test
57 *
58 * Connect to the database, truncate the tables that will be used
59 * and redirect stdin to a temporary file
60 */
61 public function setUp() {
62 // Connect to the database
63 parent::setUp();
64 $this->_apiversion = 3;
65 }
66
67 /**
68 * Test civicrm_constant_get( ) for unknown constant
69 */
70 public function testUnknownConstant() {
71 $result = $this->callAPIFailure('constant', 'get', array(
72 'name' => 'thisTypeDoesNotExist',
73 ));
74 }
75
76 /**
77 * Test civicrm_constant_get( 'activityStatus' )
78 */
79 public function testActivityStatus() {
80
81 $result = $this->callAPISuccess('constant', 'get', array(
82 'name' => 'activityStatus',
83 ));
84
85 $this->assertTrue($result['count'] > 5, "In line " . __LINE__);
86 $this->assertContains('Scheduled', $result['values'], "In line " . __LINE__);
87 $this->assertContains('Completed', $result['values'], "In line " . __LINE__);
88 $this->assertContains('Cancelled', $result['values'], "In line " . __LINE__);
89
90 }
91
92 /**
93 * Test civicrm_constant_get( 'activityType' )
94 */
95 public function testActivityType() {
96
97 $parameters = array(TRUE, FALSE, TRUE);
98
99 $result = $this->callAPISuccess('constant', 'get', array(
100 'name' => 'activityType',
101 ));
102 $this->assertTrue($result['count'] > 2, "In line " . __LINE__);
103 $this->assertContains('Meeting', $result['values'], "In line " . __LINE__);
104 }
105
106 /**
107 * Test civicrm_address_getoptions( 'location_type_id' )
108 */
109 public function testLocationTypeGet() {
110 // needed to get rid of cached values from previous tests
111 CRM_Core_PseudoConstant::flush();
112
113 $params = array(
114 'field' => 'location_type_id',
115 );
116 $result = $this->callAPIAndDocument('address', 'getoptions', $params, __FUNCTION__, __FILE__);
117 $this->assertTrue($result['count'] > 3, "In line " . __LINE__);
118 $this->assertContains('Home', $result['values'], "In line " . __LINE__);
119 $this->assertContains('Work', $result['values'], "In line " . __LINE__);
120 $this->assertContains('Main', $result['values'], "In line " . __LINE__);
121 $this->assertContains('Billing', $result['values'], "In line " . __LINE__);
122 }
123
124 /**
125 * Test civicrm_phone_getoptions( 'phone_type_id' )
126 */
127 public function testPhoneType() {
128 $params = array(
129 'field' => 'phone_type_id',
130 );
131 $result = $this->callAPISuccess('phone', 'getoptions', $params);
132
133 $this->assertEquals(5, $result['count'], "In line " . __LINE__);
134 $this->assertContains('Phone', $result['values'], "In line " . __LINE__);
135 $this->assertContains('Mobile', $result['values'], "In line " . __LINE__);
136 $this->assertContains('Fax', $result['values'], "In line " . __LINE__);
137 $this->assertContains('Pager', $result['values'], "In line " . __LINE__);
138 $this->assertContains('Voicemail', $result['values'], "In line " . __LINE__);
139 }
140
141 /**
142 * Test civicrm_constant_get( 'mailProtocol' )
143 */
144 public function testmailProtocol() {
145 $params = array(
146 'field' => 'protocol',
147 );
148 $result = $this->callAPISuccess('mail_settings', 'getoptions', $params);
149
150 $this->assertEquals(4, $result['count'], "In line " . __LINE__);
151 $this->assertContains('IMAP', $result['values'], "In line " . __LINE__);
152 $this->assertContains('Maildir', $result['values'], "In line " . __LINE__);
153 $this->assertContains('POP3', $result['values'], "In line " . __LINE__);
154 $this->assertContains('Localdir', $result['values'], "In line " . __LINE__);
155 }
156 }