commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / tests / phpunit / CRM / Activity / BAO / ActivityAssignmentTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 +--------------------------------------------------------------------+
26 */
27
28
29 require_once 'CiviTest/CiviUnitTestCase.php';
30
31 /**
32 * Test class for CRM_Activity_BAO_ActivityAssignment BAO
33 *
34 * @package CiviCRM
35 */
36 class CRM_Activity_BAO_ActivityAssignmentTest extends CiviUnitTestCase {
37
38 /**
39 * Sets up the fixture, for example, opens a network connection.
40 * This method is called before a test is executed.
41 */
42 protected function setUp() {
43 parent::setUp();
44 }
45
46 /**
47 * Tears down the fixture, for example, closes a network connection.
48 * This method is called after a test is executed.
49 */
50 protected function tearDown() {
51 }
52
53 /**
54 * Pass zero as an id and make sure no Assignees are retrieved.
55 */
56 public function testRetrieveAssigneeIdsByActivityIdNoId() {
57 $activity = $this->activityCreate();
58 $activityId = CRM_Activity_BAO_ActivityAssignment::retrieveAssigneeIdsByActivityId(0);
59
60 $this->assertEquals(count($activityId), 0, '0 assignees retrieved');
61 }
62
63 /**
64 * Pass null as an id and make sure no Assignees are retrieved.
65 */
66 public function testRetrieveAssigneeIdsByActivityIdNullId() {
67 $activity = $this->activityCreate();
68 $activityId = CRM_Activity_BAO_ActivityAssignment::retrieveAssigneeIdsByActivityId(NULL);
69
70 $this->assertEquals(count($activityId), 0, '0 assignees retrieved using null');
71 }
72
73 /**
74 * Pass a string as an id and make sure no Assignees are retrieved.
75 */
76 public function testRetrieveAssigneeIdsByActivityIdString() {
77 $activity = $this->activityCreate();
78 $activityId = CRM_Activity_BAO_ActivityAssignment::retrieveAssigneeIdsByActivityId('test');
79
80 $this->assertEquals(count($activityId), 0, '0 assignees retrieved using string');
81 }
82
83 /**
84 * Pass a known activity id as an id and make sure 1 Assignees is retrieved
85 */
86 public function testRetrieveAssigneeIdsByActivityIdOneId() {
87 $activity = $this->activityCreate();
88 $activityId = CRM_Activity_BAO_ActivityAssignment::retrieveAssigneeIdsByActivityId($activity['id']);
89
90 $this->assertEquals(count($activityId), 1, 'One record retrieved');
91 }
92
93 /**
94 * Pass zero as an id and make sure no Assignees are retrieved.
95 */
96 public function testGetAssigneeNamesNoId() {
97 $activity = $this->activityCreate();
98 $assignees = CRM_Activity_BAO_ActivityAssignment::getAssigneeNames(0);
99
100 $this->assertEquals(count($assignees), 0, '0 assignee names retrieved');
101 }
102
103 /**
104 * Pass Null as an id and make sure no Assignees are retrieved.
105 */
106 public function testGetAssigneeNamesNullId() {
107 $activity = $this->activityCreate();
108 $assignees = CRM_Activity_BAO_ActivityAssignment::getAssigneeNames(NULL);
109
110 $this->assertEquals(count($assignees), 0, '0 assignee names retrieved');
111 }
112
113 /**
114 * Pass a known activity id as an id and make sure 1 Assignees is retrieved
115 */
116 public function testGetAssigneeNamesOneId() {
117 $activity = $this->activityCreate();
118 $assignees = CRM_Activity_BAO_ActivityAssignment::getAssigneeNames(array($activity['id']));
119 $this->assertEquals(count($assignees), 1, '1 assignee names retrieved');
120 }
121
122 }