Merge pull request #2546 from brylie/master
[civicrm-core.git] / tests / phpunit / api / v3 / DashboardTest.php
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 */
25 require_once 'CiviTest/CiviUnitTestCase.php';
26
27 /**
28 * Test APIv3 civicrm_action_schedule functions
29 *
30 * @package CiviCRM_APIv3
31 * @subpackage API_ActionSchedule
32 */
33
34 class api_v3_DashboardTest extends CiviUnitTestCase {
35 protected $_params;
36 protected $_params2;
37 protected $_entity = 'dashboard';
38 protected $_apiversion = 3;
39
40 public $_eNoticeCompliant = TRUE;
41
42 /**
43 * Test setup for every test
44 *
45 * Connect to the database, truncate the tables that will be used
46 * and redirect stdin to a temporary file
47 */
48 public function setUp() {
49 // Connect to the database
50 parent::setUp();
51 }
52
53 /**
54 * Tears down the fixture, for example, closes a network connection.
55 * This method is called after a test is executed.
56 *
57 * @access protected
58 */
59 function tearDown() {
60 $tablesToTruncate = array(
61 'civicrm_dashboard',
62 );
63 $this->quickCleanup($tablesToTruncate, TRUE);
64 }
65
66 function testDashboardCreate() {
67 $oldCount = CRM_Core_DAO::singleValueQuery('select count(*) from civicrm_dashboard');
68 $params = array(
69 'version' => 3,
70 'label' => 'New Dashlet element',
71 'name' => 'New Dashlet element',
72 'url' => 'civicrm/report/list&reset=1&compid=99&snippet=5',
73 'fullscreen_url' => 'civicrm/report/list&compid=99&reset=1&snippet=5&context=dashletFullscreen',
74 );
75 $dashboard = $this->callAPISuccess('dashboard', 'create', $params);
76 $this->assertTrue(is_numeric($dashboard['id']), "In line " . __LINE__);
77 $this->assertTrue($dashboard['id'] > 0, "In line " . __LINE__);
78 $newCount = CRM_Core_DAO::singleValueQuery('select count(*) from civicrm_dashboard');
79 $this->assertEquals($oldCount + 1, $newCount);
80 $this->DashboardDelete($dashboard['id'], $oldCount);
81 }
82
83 function DashboardDelete($id, $oldCount) {
84 $params = array(
85 'version' => 3,
86 'id' => $id,
87 );
88 $dashboardget = $this->callAPISuccess('dashboard', 'get', $params);
89 $this->assertEquals($id, $dashboardget['id']);
90 $dashboard = $this->callAPISuccess('dashboard', 'delete', $params);
91 $newCount = CRM_Core_DAO::singleValueQuery('select count(*) from civicrm_dashboard');
92 $this->assertEquals($oldCount, $newCount);
93 }
94 }