phpcs - Fix error, "CONST keyword must be lowercase; expected const but found CONST"
[civicrm-core.git] / tests / phpunit / api / v3 / DashboardTest.php
CommitLineData
15d9b3ae
N
1<?php
2/**
3 * File for the TestActionSchedule class
4 *
5 * (PHP 5)
6 *
7 * CiviCRM is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Affero General Public License
9 * as published by the Free Software Foundation; either version 3 of
10 * the License, or (at your option) any later version.
11 *
12 * CiviCRM is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public
18 * License along with this program. If not, see
19 * <http://www.gnu.org/licenses/>.
20 */
21
22/**
23 * Include class definitions
24 */
25require_once 'CiviTest/CiviUnitTestCase.php';
26
27/**
28 * Test APIv3 civicrm_action_schedule functions
29 *
151da6c3
TO
30 * @package CiviCRM_APIv3
31 * @subpackage API_ActionSchedule
15d9b3ae
N
32 */
33
34class api_v3_DashboardTest extends CiviUnitTestCase {
35 protected $_params;
36 protected $_params2;
37 protected $_entity = 'dashboard';
38 protected $_apiversion = 3;
39
15d9b3ae
N
40 /**
41 * Test setup for every test
42 *
43 * Connect to the database, truncate the tables that will be used
44 * and redirect stdin to a temporary file
151da6c3 45 */
15d9b3ae 46 public function setUp() {
151da6c3 47 // Connect to the database
15d9b3ae 48 parent::setUp();
51a11406 49 $this->useTransaction(TRUE);
15d9b3ae
N
50 }
51
52 function testDashboardCreate() {
151da6c3 53 $oldCount = CRM_Core_DAO::singleValueQuery('select count(*) from civicrm_dashboard');
15d9b3ae
N
54 $params = array(
55 'version' => 3,
56 'label' => 'New Dashlet element',
57 'name' => 'New Dashlet element',
58 'url' => 'civicrm/report/list&reset=1&compid=99&snippet=5',
59 'fullscreen_url' => 'civicrm/report/list&compid=99&reset=1&snippet=5&context=dashletFullscreen',
60 );
61 $dashboard = $this->callAPISuccess('dashboard', 'create', $params);
62 $this->assertTrue(is_numeric($dashboard['id']), "In line " . __LINE__);
63 $this->assertTrue($dashboard['id'] > 0, "In line " . __LINE__);
64 $newCount = CRM_Core_DAO::singleValueQuery('select count(*) from civicrm_dashboard');
151da6c3
TO
65 $this->assertEquals($oldCount + 1, $newCount);
66 $this->DashboardDelete($dashboard['id'], $oldCount);
15d9b3ae
N
67 }
68
4cbe18b8 69 /**
100fef9d 70 * @param int $id
4cbe18b8
EM
71 * @param $oldCount
72 */
15d9b3ae
N
73 function DashboardDelete($id, $oldCount) {
74 $params = array(
75 'version' => 3,
76 'id' => $id,
77 );
78 $dashboardget = $this->callAPISuccess('dashboard', 'get', $params);
79 $this->assertEquals($id, $dashboardget['id']);
80 $dashboard = $this->callAPISuccess('dashboard', 'delete', $params);
81 $newCount = CRM_Core_DAO::singleValueQuery('select count(*) from civicrm_dashboard');
82 $this->assertEquals($oldCount, $newCount);
83 }
4b2694ae 84}