add missing comments - tests directory
[civicrm-core.git] / tests / phpunit / api / v3 / DashboardContactTest.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_DashboardContactTest extends CiviUnitTestCase {
35 protected $_params;
36 protected $_params2;
37 protected $_entity = 'dashboard_contact';
38 protected $_apiversion = 3;
39
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
45 */
46 public function setUp() {
47 // Connect to the database
48 parent::setUp();
49 }
50
51 /**
52 * Tears down the fixture, for example, closes a network connection.
53 * This method is called after a test is executed.
54 *
55 * @access protected
56 */
57 function tearDown() {
58 $tablesToTruncate = array(
59 'civicrm_dashboard',
60 'civicrm_dashboard_contact',
61 );
62 $this->quickCleanup($tablesToTruncate, TRUE);
63 }
64
65 function testDashboardContactCreate() {
66 $dashParams = array(
67 'version' => 3,
68 'label' => 'New Dashlet element',
69 'name' => 'New Dashlet element',
70 'url' => 'civicrm/report/list&compid=99&reset=1&snippet=5',
71 'fullscreen_url' => 'civicrm/report/list&compid=99&reset=1&snippet=5&context=dashletFullscreen',
72 );
73 $dashresult = $this->callAPISuccess('dashboard', 'create', $dashParams);
74 $contact = $this->callAPISuccess('contact', 'create', array(
75 'first_name' => 'abc1',
76 'contact_type' => 'Individual',
77 'last_name' => 'xyz1',
78 'email' => 'abc@abc.com'
79 )
80 );
81 $oldCount = CRM_Core_DAO::singleValueQuery("select count(*) from civicrm_dashboard_contact where contact_id = {$contact['id']} AND is_active = 1 AND dashboard_id = {$dashresult['id']}");
82 $params = array(
83 'version' => 3,
84 'contact_id' => $contact['id'],
85 'dashboard_id' => $dashresult['id'],
86 'is_active' => 1,
87 );
88 $dashboradContact = $this->callAPISuccess('dashboard_contact', 'create', $params);
89 $newCount = CRM_Core_DAO::singleValueQuery("select count(*) from civicrm_dashboard_contact where contact_id = {$contact['id']} AND is_active = 1 AND dashboard_id = {$dashresult['id']}");
90 $this->assertEquals($oldCount + 1, $newCount);
91 }
92 }