Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-06-25-23-42-42
[civicrm-core.git] / tests / phpunit / WebTest / Case / AddCaseTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 */
26
27 require_once 'CiviTest/CiviSeleniumTestCase.php';
28
29 /**
30 * Class WebTest_Case_AddCaseTest
31 */
32 class WebTest_Case_AddCaseTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 function testStandaloneCaseAdd() {
39 // Log in as admin first to verify permissions for CiviCase
40 $this->webtestLogin('admin');
41
42 // Enable CiviCase module if necessary
43 $this->enableComponents("CiviCase");
44
45 // let's give full CiviCase permissions to demo user (registered user).
46 $permission = array('edit-2-access-all-cases-and-activities', 'edit-2-access-my-cases-and-activities', 'edit-2-administer-civicase', 'edit-2-delete-in-civicase');
47 $this->changePermissions($permission);
48
49 // Log in as normal user
50 $this->webtestLogin();
51
52 // Go to reserved New Individual Profile to set value for logged in user's contact name (we'll need that later)
53 $this->openCiviPage('profile/edit', 'reset=1&gid=4', NULL);
54 $testUserFirstName = "Testuserfirst";
55 $testUserLastName = "Testuserlast";
56 $this->waitForPageToLoad($this->getTimeoutMsec());
57 $this->waitForElementPresent("_qf_Edit_next");
58 $this->type("first_name", $testUserFirstName);
59 $this->type("last_name", $testUserLastName);
60 $this->clickLink("_qf_Edit_next", "profilewrap4");
61 // Is status message correct?
62 $this->assertElementContainsText('crm-container', "Thank you. Your information has been saved.", "Save successful status message didn't show up after saving profile to update testUserName!");
63
64 $this->openCiviPage('case/add', 'reset=1&action=add&atype=13&context=standalone', '_qf_Case_upload-bottom');
65
66 // Try submitting the form without creating or selecting a contact (test for CRM-7971)
67 $this->clickLink("_qf_Case_upload-bottom", "css=span.crm-error");
68 $this->assertElementContainsText('Case', "Client is a required field.", "Expected form rule error for submit without selecting contact did not show up after clicking Save.");
69
70 // Adding contact with randomized first name (so we can then select that contact when creating case)
71 // We're using pop-up New Contact dialog
72 $firstName = substr(sha1(rand()), 0, 7);
73 $lastName = "Fraser";
74 $contactName = "{$lastName}, {$firstName}";
75 $displayName = "{$firstName} {$lastName}";
76 $email = "{$lastName}.{$firstName}@example.org";
77 $this->webtestNewDialogContact($firstName, $lastName, $email, $type = 4, "s2id_client_id");
78
79 // Fill in other form values. We'll use a case type which is included in CiviCase sample data / xml files.
80 $caseTypeLabel = "Adult Day Care Referral";
81 // activity types we expect for this case type
82 $activityTypes = array("ADC referral", "Follow up", "Medical evaluation", "Mental health evaluation");
83 $caseRoles = array("Senior Services Coordinator", "Health Services Coordinator", "Benefits Specialist", "Client");
84 $caseStatusLabel = "Ongoing";
85 $subject = "Safe daytime setting - senior female";
86 $this->select("medium_id", "value=1");
87 $location = "Main offices";
88 $this->type("activity_location", $location);
89 $details = "65 year old female needs safe location during the day for herself and her dog. She is in good health but somewhat disoriented.";
90 $this->fireEvent('activity_details', 'focus');
91 $this->fillRichTextField("activity_details", $details, 'CKEditor');
92 $this->type("activity_subject", $subject);
93
94 $this->select("case_type_id", "label={$caseTypeLabel}");
95 $this->select("status_id", "label={$caseStatusLabel}");
96 // Choose Case Start Date.
97 // Using helper webtestFillDate function.
98 $this->webtestFillDate('start_date', 'now');
99 $today = date('F jS, Y', strtotime('now'));
100
101 $this->type("duration", "20");
102 $this->clickLink("_qf_Case_upload-bottom", "_qf_CaseView_cancel-bottom");
103
104 // Is status message correct?
105 $this->waitForText('crm-notification-container', "Case opened successfully.");
106
107 $summaryStrings = array(
108 "Summary",
109 $displayName,
110 "Type: {$caseTypeLabel}",
111 "Open Date: {$today}",
112 "Status: {$caseStatusLabel}",
113 );
114
115 $this->_testVerifyCaseSummary($summaryStrings, $activityTypes);
116 $this->_testVerifyCaseRoles($caseRoles, "{$testUserLastName}, {$testUserFirstName}");
117 $this->_testVerifyCaseActivities($activityTypes);
118
119 $openCaseData = array(
120 "Client" => $displayName,
121 "Activity Type" => "Open Case",
122 "Subject" => $subject,
123 "Created By" => "{$testUserFirstName} {$testUserLastName}",
124 "Reported By" => "{$testUserFirstName} {$testUserLastName}",
125 "Medium" => "In Person",
126 "Location" => $location,
127 "Date and Time" => $today,
128 "Details" => $details,
129 "Status" => "Completed",
130 "Priority" => "Normal",
131 );
132
133 $this->_testVerifyOpenCaseActivity($subject, $openCaseData);
134
135 //change the case status to Resolved to get the end date
136 $this->click("xpath=//form[@id='CaseView']/div[2]/table/tbody/tr/td[4]/a");
137 $this->waitForElementPresent("_qf_Activity_cancel-bottom");
138 $this->select("case_status_id","value=2");
139 $this->click("_qf_Activity_upload-top");
140
141 $this->_testSearchbyDate($firstName, $lastName, "this.quarter");
142 $this->_testSearchbyDate($firstName, $lastName, "0");
143 $this->_testSearchbyDate($firstName, $lastName, "this.year");
144 }
145
146 function testAjaxCustomGroupLoad() {
147 $this->webtestLogin();
148
149 // Enable CiviCase module if necessary
150 $this->enableComponents("CiviCase");
151
152 $triggerElement = array('name' => 'case_type_id', 'type' => 'select');
153 $customSets = array(
154 array('entity' => 'Case', 'subEntity' => 'Housing Support', 'triggerElement' => $triggerElement),
155 );
156
157 $pageUrl = array('url' => 'case/add', 'args' => "reset=1&action=add&atype=13&context=standalone");
158 $this->customFieldSetLoadOnTheFlyCheck($customSets, $pageUrl);
159 }
160
161 /**
162 * @param $validateStrings
163 * @param $activityTypes
164 */
165 function _testVerifyCaseSummary($validateStrings, $activityTypes) {
166 $this->assertStringsPresent($validateStrings);
167 foreach ($activityTypes as $aType) {
168 $this->assertText("add_activity_type_id", $aType);
169 }
170 $this->assertElementPresent("link=Assign to Another Client", "Assign to Another Client link is missing.");
171 $this->assertElementPresent("xpath=//a[text()=' Print Report']", "Print Case Summary button is missing.");
172 }
173
174 /**
175 * @param $caseRoles
176 * @param $creatorName
177 */
178 function _testVerifyCaseRoles($caseRoles, $creatorName) {
179 $this->waitForElementPresent("xpath=//table[@id='caseRoles-selector']/tbody/tr[4]/td[2]/a");
180 // check that expected roles are listed in the Case Roles pane
181 foreach ($caseRoles as $role) {
182 $this->assertText("css=div.crm-case-roles-block", $role);
183 }
184 // check that case creator role has been assigned to logged in user
185 $this->verifyText("xpath=//table[@id='caseRoles-selector']/tbody/tr[4]/td[2]", $creatorName);
186 }
187
188 /**
189 * @param $activityTypes
190 */
191 function _testVerifyCaseActivities($activityTypes) {
192 $id = $this->urlArg('id');
193 // check that expected auto-created activities are listed in the Case Activities table
194 foreach ($activityTypes as $aType) {
195 $this->assertText("case_id_$id", $aType);
196 }
197 }
198
199 /**
200 * @param $subject
201 * @param $openCaseData
202 */
203 function _testVerifyOpenCaseActivity($subject, $openCaseData) {
204 $id = $this->urlArg('id');
205 // check that open case subject is present
206 $this->assertText("case_id_$id", $subject);
207 // click open case activity pop-up dialog
208 $this->click("link=$subject");
209 $this->waitForElementPresent("ActivityView");
210 $this->waitForElementPresent("css=tr.crm-case-activity-view-Activity");
211 // set page location of table containing activity view data
212 $activityViewPrefix = "//*[@id='ActivityView']";
213 $activityViewTableId = "crm-activity-view-table";
214 // Probably don't need both tableId and prefix - but good examples for other situations where only one can be used
215
216 $this->webtestVerifyTabularData($openCaseData, '', $activityViewTableId);
217 $this->click("xpath=//span[@class='ui-button-icon-primary ui-icon ui-icon-closethick']");
218 }
219
220 /**
221 * @param $firstName
222 * @param $lastName
223 * @param $action
224 */
225 function _testSearchbyDate($firstName, $lastName, $action) {
226 // Find Cases
227 if ($action != "0") {
228 $this->openCiviPage('case/search', 'reset=1');
229 $this->select("case_from_relative", "value=$action");
230 $this->select("case_to_relative", "value=$action");
231 $this->click("_qf_Search_refresh");
232 $this->waitForPageToLoad($this->getTimeoutMsec());
233 $this->assertElementContainsText('Search', "$lastName, $firstName");
234 }
235 else {
236 //select date range
237 $this->openCiviPage('case/search', 'reset=1', '_qf_Search_refresh-bottom');
238 $this->select("case_from_relative", "value=$action");
239 $this->webtestFillDate("case_from_start_date_low", "-1 month");
240 $this->webtestFillDate("case_from_start_date_high", "+1 month");
241 $this->select("case_to_relative", "value=$action");
242 $this->webtestFillDate("case_to_end_date_low", "-1 month");
243 $this->webtestFillDate("case_to_end_date_high", "+1 month");
244 $this->click("_qf_Search_refresh-bottom");
245 $this->waitForPageToLoad($this->getTimeoutMsec());
246 $this->assertElementContainsText('Search', "$lastName, $firstName");
247 }
248
249 //Advanced Search
250 $this->openCiviPage('contact/search/advanced', 'reset=1', '_qf_Advanced_refresh');
251 $this->click("CiviCase");
252 $this->waitForElementPresent("xpath=//div[@id='case-search']/table/tbody/tr[3]/td[2]/input[3]");
253 if ($action != "0") {
254 $this->select("case_from_relative", "value=$action");
255 $this->select("case_to_relative", "value=$action");
256 }
257 else {
258 $this->select("case_from_relative", "value=$action");
259 $this->webtestFillDate("case_from_start_date_low", "-1 month");
260 $this->webtestFillDate("case_from_start_date_high", "+1 month");
261 $this->select("case_to_relative", "value=$action");
262 $this->webtestFillDate("case_to_end_date_low", "-1 month");
263 $this->webtestFillDate("case_to_end_date_high", "+1 month");
264 }
265 $this->click("_qf_Advanced_refresh");
266 $this->waitForPageToLoad($this->getTimeoutMsec());
267 $this->assertElementContainsText('Advanced', "$lastName, $firstName");
268 }
269 }
270