16f37032e3eb7f6a2fd389b4f368651b7a181389
[civicrm-core.git] / tests / phpunit / WebTest / Contact / SearchBuilderTest.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_Contact_SearchBuilderTest
31 */
32 class WebTest_Contact_SearchBuilderTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 function testSearchBuilderOptions() {
39 $this->webtestLogin();
40
41 $groupName = $this->WebtestAddGroup();
42
43 // Open the search builder
44 $this->openCiviPage('contact/search/builder', 'reset=1');
45
46 $this->enterValues(1, 1, 'Contacts', 'Group(s)', NULL, '=', array($groupName));
47 $this->enterValues(1, 2, 'Contacts', 'Country', NULL, '=', array('United States'));
48 $this->enterValues(1, 3, 'Individual', 'Gender', NULL, '=', array('Male'));
49 $this->click('_qf_Builder_refresh');
50 $this->waitForPageToLoad();
51
52 // We should get no results. But check the options are all still set
53 $this->waitForTextPresent('No matches found');
54 foreach (array($groupName, 'United States', 'Male') as $i => $label) {
55 $this->waitForElementPresent("//span[@id='crm_search_value_1_$i']/select/option[2]");
56 $this->assertSelectedLabel("//span[@id='crm_search_value_1_$i']/select", $label);
57 }
58 }
59
60 function testSearchBuilderRLIKE() {
61 $this->webtestLogin();
62
63 // Adding contact
64 // We're using Quick Add block on the main page for this.
65 $firstName = substr(sha1(rand()), 0, 7);
66 $this->createDetailContact($firstName);
67
68 $sortName = "adv$firstName, $firstName";
69 $displayName = "$firstName adv$firstName";
70
71 $this->_searchBuilder("Postal Code", "100[0-9]", $sortName, "RLIKE");
72 }
73
74 // function to create contact with details (contact details, address, Constituent information ...)
75 /**
76 * @param null $firstName
77 */
78 function createDetailContact($firstName = NULL) {
79
80 if (!$firstName) {
81 $firstName = substr(sha1(rand()), 0, 7);
82 }
83
84 // create contact type Individual with subtype
85 // with most of values to required to search
86 $Subtype = "Student";
87 $this->openCiviPage('contact/add', array('reset' => 1, 'ct' => 'Individual'), '_qf_Contact_cancel');
88
89 // --- fill few values in Contact Detail block
90 $this->type("first_name", "$firstName");
91 $this->type("middle_name", "mid$firstName");
92 $this->type("last_name", "adv$firstName");
93 $this->select("contact_sub_type", "label=$Subtype");
94 $this->type("email_1_email", "$firstName@advsearch.co.in");
95 $this->type("phone_1_phone", "123456789");
96 $this->type("external_identifier", "extid$firstName");
97
98 // --- fill few values in address
99 $this->click("//form[@id='Contact']/div[2]/div[4]/div[1]");
100 $this->waitForElementPresent("address_1_geo_code_2");
101 $this->type("address_1_street_address", "street 1 $firstName");
102 $this->type("address_1_supplemental_address_1", "street supplement 1 $firstName");
103 $this->type("address_1_supplemental_address_2", "street supplement 2 $firstName");
104 $this->type("address_1_city", "city$firstName");
105 $this->type("address_1_postal_code", "100100");
106 $this->select("address_1_country_id", "United States");
107 $this->select("address_1_state_province_id", "Alaska");
108
109 // save contact
110 $this->click("_qf_Contact_upload_view");
111 $this->waitForPageToLoad($this->getTimeoutMsec());
112 $this->assertTrue($this->isTextPresent("$firstName adv$firstName"));
113 }
114
115 function testSearchBuilderContacts() {
116 $this->webtestLogin();
117
118 //Individual
119 $firstName = substr(sha1(rand()), 0, 7);
120 $streetName = "street $firstName";
121 $sortName = "adv$firstName, $firstName";
122 $this->_createContact('Individual', $firstName, "$firstName@advsearch.co.in", $streetName);
123 // search using search builder and advanced search
124 $this->_searchBuilder('Street Address', $streetName, $sortName, '=', '1');
125 $this->_advancedSearch($streetName, $sortName, 'Individual', '1', 'street_address');
126
127 //Organization
128 $orgName = substr(sha1(rand()), 0, 7) . "org";
129 $orgEmail = "ab" . rand() . "@{$orgName}.com";
130 $this->_createContact('Organization', $orgName, $orgEmail, "street $orgName");
131 // search using search builder and advanced search
132 $this->_searchBuilder('Email', $orgEmail, $orgName, '=', '1');
133 $this->_advancedSearch($orgEmail, $orgName, 'Organization', '1', 'email');
134
135 //Household
136 $householdName = "household" . substr(sha1(rand()), 0, 7);
137 $householdEmail = "h1" . rand() . "@{$householdName}.com";
138 $this->_createContact('Household', $householdName, $householdEmail, "street $householdName");
139 // search using search builder and advanced search
140 $this->_searchBuilder('Email', $householdEmail, $householdName, '=', '1');
141 $this->_advancedSearch($householdEmail, $householdName, 'Household', '1', 'email');
142
143 $this->openCiviPage("contact/add", "reset=1&ct=Individual");
144
145 // searching contacts whose email is not set
146 $firstName1 = "00a1" . substr(sha1(rand()), 0, 7);
147 $this->type("first_name", $firstName1);
148 $this->type("last_name", "01adv$firstName1");
149 // save contact
150 $this->click("_qf_Contact_upload_view");
151 $this->waitForPageToLoad($this->getTimeoutMsec());
152 $this->openCiviPage("contact/add", "reset=1&ct=Individual");
153
154 $firstName2 = "00a2" . substr(sha1(rand()), 0, 7);
155 $this->type("first_name", $firstName2);
156 $this->type("last_name", "02adv$firstName2");
157 // save contact
158 $this->click("_qf_Contact_upload_view");
159 $this->waitForPageToLoad($this->getTimeoutMsec());
160 $this->openCiviPage("contact/add", "reset=1&ct=Individual");
161
162 $firstName3 = "00a3" . substr(sha1(rand()), 0, 7);
163 $this->type("first_name", $firstName3);
164 $this->type("last_name", "03adv$firstName3");
165 // save contact
166 $this->click("_qf_Contact_upload_view");
167 $this->waitForPageToLoad($this->getTimeoutMsec());
168 $this->_searchBuilder('Email', NULL, NULL, 'IS NULL');
169 $this->type('CRM_Contact_Form_Search_Builder-rows-per-page-select', '100');
170 $this->waitForElementPresent('CRM_Contact_Form_Search_Builder-rows-per-page-select');
171 $names = array(
172 1 => $firstName1,
173 2 => $firstName2,
174 3 => $firstName3,
175 );
176 foreach ($names as $key => $value) {
177 $this->assertTrue($this->isTextPresent($value));
178 }
179 //searching contacts whose phone field is empty
180 $this->_searchBuilder('Phone', NULL, NULL, 'IS EMPTY');
181 foreach ($names as $key => $value) {
182 $this->assertTrue($this->isTextPresent($value));
183 }
184 //searching contacts whose phone field is not empty
185 $this->_searchBuilder('Phone', NULL, $firstName, 'IS NOT EMPTY');
186 $this->type('CRM_Contact_Form_Search_Builder-rows-per-page-select', '100');
187 $this->waitForElementPresent('CRM_Contact_Form_Search_Builder-rows-per-page-select');
188 $this->assertTrue($this->isTextPresent($firstName));
189
190 $firstName4 = "AB" . substr(sha1(rand()), 0, 7);
191 $postalCode = rand();
192 $this->_createContact('Individual', $firstName4, "$firstName4@advsearch.co.in", NULL, $postalCode);
193 $firstName5 = "CD" . substr(sha1(rand()), 0, 7);
194 $this->_createContact('Individual', $firstName5, "$firstName5@advsearch.co.in", NULL, $postalCode);
195 $firstName6 = "EF" . substr(sha1(rand()), 0, 7);
196 $this->_createContact('Organization', $firstName6, "$firstName6@advsearch.co.in", NULL, $postalCode);
197 $firstName7 = "GH" . substr(sha1(rand()), 0, 7);
198 $this->_createContact('Household', $firstName7, "$firstName7@advsearch.co.in", NULL, $postalCode);
199
200 // check if the resultset of search builder and advanced search match for the postal code
201 $this->_searchBuilder('Postal Code', $postalCode, NULL, 'LIKE', '4');
202 $this->_advancedSearch($postalCode, NULL, NULL, '4', 'postal_code');
203
204 $firstName8 = "abcc" . substr(sha1(rand()), 0, 7);
205 $this->_createContact('Individual', $firstName8, "$firstName8@advsearch.co.in", NULL);
206 $this->_searchBuilder('Note(s): Body and Subject', "this is notes by $firstName8", $firstName8, 'LIKE');
207 $this->_searchBuilder('Note(s): Subject only', "this is subject by $firstName8", $firstName8, 'LIKE');
208 $this->_searchBuilder('Note(s): Body only', "this is notes by $firstName8", $firstName8, 'LIKE');
209 $this->_advancedSearch("this is notes by $firstName8", $firstName8, NULL, NULL, 'note_body', 'notes');
210 $this->_advancedSearch("this is subject by $firstName8", $firstName8, NULL, NULL, 'note_subject', 'notes');
211 $this->_advancedSearch("this is notes by $firstName8", $firstName8, NULL, NULL, 'note_both', 'notes');
212 $this->_advancedSearch("this is notes by $firstName8", $firstName8, NULL, NULL, 'note_both', 'notes');
213 }
214
215 /**
216 * @param $field
217 * @param null $fieldValue
218 * @param null $name
219 * @param string $op
220 * @param null $count
221 */
222 function _searchBuilder($field, $fieldValue = NULL, $name = NULL, $op = '=', $count = NULL) {
223 // search builder using contacts(not using contactType)
224 $this->openCiviPage("contact/search/builder", "reset=1");
225 $this->enterValues(1, 1, 'Contacts', $field, NULL, $op, "$fieldValue");
226 $this->click("id=_qf_Builder_refresh");
227 $this->waitForPageToLoad($this->getTimeoutMsec());
228 if (($op == '=' || $op == 'LIKE') && $fieldValue) {
229 $this->assertElementContainsText('css=.crm-search-results > table.row-highlight', "$fieldValue");
230 }
231 if ($name) {
232 $this->assertElementContainsText('css=.crm-search-results > table.row-highlight', "$name");
233 }
234 if ($count) {
235 $this->assertElementContainsText('search-status', "$count Contact");
236 }
237 }
238
239 /**
240 * Enter form values in a Search Builder row
241 */
242 function enterValues($set, $row, $entity, $field, $loc, $op, $value = '') {
243 if ($set > 1 && $row == 1) {
244 $this->click('addBlock');
245 }
246 if ($row > 1) {
247 $this->click("addMore_{$set}");
248 }
249 // In the DOM rows are 0 indexed and sets are 1 indexed, so normalizing
250 $row--;
251
252 $this->waitForElementPresent("mapper_{$set}_{$row}_0");
253 $this->select("mapper_{$set}_{$row}_0", "label=$entity");
254 $this->select("mapper_{$set}_{$row}_1", "label=$field");
255 if ($loc) {
256 $this->select("mapper_{$set}_{$row}_2", "label=$loc");
257 }
258 $this->select("operator_{$set}_{$row}", "value=$op");
259 if (is_array($value)) {
260 $this->waitForElementPresent("css=#crm_search_value_{$set}_{$row} select option + option");
261 foreach ($value as $val) {
262 if ($op != 'IN') {
263 $select = 'select';
264
265 }
266 else {
267 $select = 'addSelection';
268
269 }
270 $this->$select("css=#crm_search_value_{$set}_{$row} select", "label=$val");
271 }
272 }
273 elseif ($value && substr($value, 0, 5) == 'date:') {
274 $this->webtestFillDate("value_{$set}_{$row}", trim(substr($value, 5)));
275 }
276 elseif ($value) {
277 $this->type("value_{$set}_{$row}", $value);
278 }
279 }
280
281 /**
282 * @param null $fieldValue
283 * @param null $name
284 * @param null $contactType
285 * @param null $count
286 * @param $field
287 */
288 function _advancedSearch($fieldValue = NULL, $name = NULL, $contactType = NULL, $count = NULL, $field) {
289 //advanced search by selecting the contactType
290 $this->openCiviPage("contact/search/advanced", "reset=1");
291 if (isset($contactType)) {
292 $this->select("id=contact_type", "value=$contactType");
293 }
294 if (substr($field, 0, 5) == 'note_') {
295 $this->click("notes");
296 $this->waitForElementPresent("xpath=//div[@id='notes-search']/table/tbody/tr/td[2]/input[3]");
297 if ($field == 'note_body') {
298 $this->click("CIVICRM_QFID_2_note_option");
299 }
300 elseif ($field == 'note_subject') {
301 $this->click("CIVICRM_QFID_3_note_option");
302 }
303 else {
304 $this->click("CIVICRM_QFID_6_note_option");
305 }
306 $this->type("note", $fieldValue);
307 }
308 else {
309 $this->click("location");
310 $this->waitForElementPresent("$field");
311 if ($contactType == 'Individual') {
312 $this->type("$field", $fieldValue);
313 }
314 else {
315 $this->type("$field", $fieldValue);
316 }
317 }
318 $this->click("_qf_Advanced_refresh");
319 $this->waitForPageToLoad($this->getTimeoutMsec());
320
321 //the search result should be same as the one that we got in search builder
322 if ($fieldValue) {
323 $this->assertElementContainsText('Advanced', "$fieldValue");
324 }
325 if ($name) {
326 $this->assertElementContainsText('css=.crm-search-results > table.row-highlight', "$name");
327 }
328 if ($count) {
329 $this->assertElementContainsText('search-status', "$count Contact");
330 }
331 }
332
333 /**
334 * @param $contactType
335 * @param $name
336 * @param $email
337 * @param null $streetName
338 * @param null $postalCode
339 */
340 function _createContact($contactType, $name, $email, $streetName = NULL, $postalCode = NULL) {
341 $this->openCiviPage('contact/add', array('reset' => 1, 'ct' => $contactType), '_qf_Contact_cancel');
342
343 if ($contactType == 'Individual') {
344 $this->type("first_name", "$name");
345 $this->type("last_name", "adv$name");
346 $name = "$name adv$name";
347 }
348 elseif ($contactType == 'Organization') {
349 $this->type("organization_name", $name);
350 }
351 else {
352 $this->type("household_name", $name);
353 }
354 $this->click("//form[@id='Contact']/div[2]/div[4]/div[1]");
355 $this->waitForElementPresent("address_1_geo_code_2");
356 $this->type("email_1_email", $email);
357 $this->type("phone_1_phone", "9876543210");
358 $this->type("address_1_street_address", $streetName);
359 $this->select("address_1_country_id", "United States");
360 $this->select("address_1_state_province_id", "Alaska");
361 $this->type("address_1_postal_code", $postalCode);
362
363 $this->click("//form[@id='Contact']/div[2]/div[6]/div[1]");
364 $this->waitForElementPresent("note");
365 $this->type("subject", "this is subject by $name");
366 $this->type("note", "this is notes by $name");
367
368 // save contact
369 $this->click("_qf_Contact_upload_view");
370 $this->waitForPageToLoad($this->getTimeoutMsec());
371 $this->assertTrue($this->isTextPresent("$name has been created."));
372 }
373
374 /*
375 * Webtest for CRM-12148
376 *
377 */
378 function testSearchBuilderfinancialType() {
379 $this->webtestLogin();
380
381 // add financial type
382 $financialTypeName1 = 'Financial Type' . substr(sha1(rand()), 0, 5);;
383 $financialTypeName2 = 'Financial Type' . substr(sha1(rand()), 0, 5);;
384 $financialType = array(
385 'name' => $financialTypeName1,
386 'is_reserved' => FALSE,
387 'is_deductible' => FALSE,
388 );
389 $this->addeditFinancialType($financialType);
390 $financialType['name'] = $financialTypeName2;
391 $this->addeditFinancialType($financialType);
392 //create 6 contribution
393 $this->openCiviPage("contribute/add", "reset=1&action=add&context=standalone", "_qf_Contribution_upload");
394 for ($i = 1; $i <= 6; $i++) {
395 if ($i % 2 == 0) {
396 $financialType = $financialTypeName1;
397 }
398 else {
399 $financialType = $financialTypeName2;
400 }
401 // create new contact using dialog
402 $this->createDialogContact();
403 $this->select('financial_type_id', $financialType);
404 $this->type('total_amount', 100 * $i);
405 $this->clickLink('_qf_Contribution_upload_new', '_qf_Contribution_upload_new');
406 }
407 $this->openCiviPage("contact/search/builder", "reset=1", "_qf_Builder_refresh");
408
409 $this->enterValues(1, 1, 'Contribution', 'Financial Type', NULL, '=', array($financialTypeName1));
410 $this->clickLink('_qf_Builder_refresh');
411
412 $this->assertTrue($this->isTextPresent('3 Contacts'), 'Missing text: ' . '3 Contacts');
413
414 $this->click("xpath=//div[@class='crm-accordion-header crm-master-accordion-header']");
415 $this->enterValues(1, 1, 'Contribution', 'Financial Type', NULL, '=', array($financialTypeName2));
416 $this->clickLink('_qf_Builder_refresh');
417
418 $this->assertTrue($this->isTextPresent('3 Contacts'), 'Missing text: ' . '3 Contacts');
419
420 $this->click("xpath=//div[@class='crm-accordion-header crm-master-accordion-header']");
421 $this->enterValues(1, 1, 'Contribution', 'Financial Type', NULL, 'IN', array(
422 $financialTypeName1,
423 $financialTypeName2
424 ));
425 $this->clickLink('_qf_Builder_refresh');
426
427 $this->assertTrue($this->isTextPresent('6 Contacts'), 'Missing text: ' . '6 Contacts');
428 }
429
430 /*
431 * Webtest for CRM-12588
432 *
433 */
434 function testSearchBuilderMembershipType() {
435 $this->webtestLogin();
436
437 // create first contact
438 $firstName1 = substr(sha1(rand()), 0, 7);
439 $this->webtestAddContact($firstName1, "Memberson", "Memberson{$firstName1}@memberson.name");
440 $contactName1 = "Memberson, $firstName1";
441
442 // create Second contact
443 $firstName2 = substr(sha1(rand()), 0, 7);
444 $this->webtestAddContact($firstName2, "Memberson", "Memberson{$firstName2}@memberson.name");
445 $contactName2 = "Memberson, $firstName2";
446
447 // add membership type
448 $membershipTypes = $this->webtestAddMembershipType();
449
450 // now add membership
451 $this->openCiviPage("member/add", "reset=1&action=add&context=standalone", "_qf_Membership_upload");
452
453 // select contact
454 $this->webtestFillAutocomplete($firstName1);
455
456 // fill in Membership Organization
457 $this->select("membership_type_id[0]", "label={$membershipTypes['member_of_contact']}");
458
459 // select membership type
460 $this->select("membership_type_id[1]", "label={$membershipTypes['membership_type']}");
461
462 // fill in Source
463 $this->type("source", "Membership StandaloneAddTest Webtest");
464
465 // fill in Start Date
466 $this->webtestFillDate('start_date');
467
468 // Clicking save.
469 $this->clickLink("_qf_Membership_upload");
470
471 // page was loaded
472 $this->waitForTextPresent("Membership StandaloneAddTest Webtest");
473
474 // now add membership for second contact
475 $this->openCiviPage("member/add", "reset=1&action=add&context=standalone", "_qf_Membership_upload");
476 $this->webtestFillAutocomplete($firstName2);
477 $this->select("membership_type_id[0]", "label={$membershipTypes['member_of_contact']}");
478 $this->select("membership_type_id[1]", "label={$membershipTypes['membership_type']}");
479 $this->type("source", "Membership StandaloneAddTest Webtest");
480 $this->webtestFillDate('start_date');
481
482 // fill in Status Override?
483 $this->click("is_override");
484 $this->waitForElementPresent("status_id");
485 $this->select("status_id", "label=Grace");
486
487 // Clicking save.
488 $this->clickLink("_qf_Membership_upload");
489 $this->waitForTextPresent("Membership StandaloneAddTest Webtest");
490
491 // Open the search builder
492 $this->openCiviPage('contact/search/builder', 'reset=1');
493 $this->enterValues(1, 1, 'Membership', 'Membership Type', NULL, '=', array($membershipTypes['membership_type']));
494
495 $this->clickLink('_qf_Builder_refresh');
496 $this->waitForText('search-status', "2 Contacts");
497
498 $this->click("xpath=//div[@class='crm-accordion-header crm-master-accordion-header']");
499 $this->enterValues(1, 2, 'Membership', 'Membership Status', NULL, '=', array('New'));
500 $this->clickLink('_qf_Builder_refresh');
501 $this->waitForText('search-status', "1 Contact");
502
503 $this->enterValues(1, 2, 'Membership', 'Membership Status', NULL, '=', array('Grace'));
504 $this->clickLink('_qf_Builder_refresh');
505 $this->waitForText('search-status', "1 Contact");
506
507 $this->click("xpath=//div[@class='crm-accordion-header crm-master-accordion-header']");
508 $this->click("xpath=//div[@id='map-field']/div[1]/table/tbody/tr[2]/td/a");
509 $this->enterValues(1, 2, 'Membership', 'Membership Status', NULL, 'IN', array('New', 'Grace'));
510 $this->clickLink('_qf_Builder_refresh');
511 $this->waitForText('search-status', "2 Contacts");
512
513 $this->click("xpath=//div[@class='crm-accordion-header crm-master-accordion-header']");
514 $this->click("xpath=//div[@id='map-field']/div[1]/table/tbody/tr[2]/td/a");
515 $this->enterValues(1, 2, 'Membership', 'Membership Status', NULL, 'IN', array('Current', 'Expired'));
516 $this->clickLink('_qf_Builder_refresh');
517 $this->waitForText("xpath=//form[@id='Builder']/div[3]/div/div", "No matches found for");
518
519 // Find Membership
520 $this->openCiviPage("member/search", "reset=1", "_qf_Search_refresh");
521 $this->click("xpath=//label[text()='{$membershipTypes['membership_type']}']");
522 $this->clickLink('_qf_Search_refresh');
523 $this->waitForText('search-status', "2 Results");
524
525 $this->click("xpath=//div[@class='crm-accordion-header crm-master-accordion-header']");
526 $this->click("xpath=//label[text()='New']");
527 $this->click("xpath=//label[text()='Grace']");
528 $this->clickLink('_qf_Search_refresh');
529 $this->waitForText('search-status', "2 Results");
530
531 $this->click("xpath=//div[@class='crm-accordion-header crm-master-accordion-header']");
532 $this->click("xpath=//label[text()='New']");
533 $this->clickLink('_qf_Search_refresh');
534 $this->waitForText('search-status', "1 Result");
535 }
536
537 }