Merge pull request #8239 from jitendrapurohit/CRM-18471
[civicrm-core.git] / tests / phpunit / WebTest / Contact / TaskActionAddToGroupTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 25 */
6a488035 26
6a488035 27require_once 'CiviTest/CiviSeleniumTestCase.php';
e9479dcf
EM
28
29/**
30 * Class WebTest_Contact_TaskActionAddToGroupTest
31 */
6a488035
TO
32class WebTest_Contact_TaskActionAddToGroupTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
00be9182 38 public function testAddContactsToGroup() {
6a488035 39
69369531 40 $this->webtestLogin();
6a488035
TO
41 $newGroupName = 'Group_' . substr(sha1(rand()), 0, 7);
42 $this->WebtestAddGroup($newGroupName);
43
44 // Create two new contacts with a common random string in email address
bf333c47 45 $emailString = substr(sha1(rand()), 0, 7) . '@example.com';
6a488035
TO
46 $cids = array();
47 for ($i = 0; $i < 2; $i++) {
48 // create new contact
49 $this->webtestAddContact();
50
51 // get cid of new contact
a471a3b6 52 $cids[] = $this->urlArg('cid');
6a488035
TO
53
54 // update email of new contact
03b0e225 55 $this->click("xpath=//ul[@id='actions']/li[2]/a");
6a488035
TO
56 $this->waitForPageToLoad($this->getTimeoutMsec());
57 $this->type("email_1_email", $emailString . $i . 'webtest');
58 $this->click("_qf_Contact_upload_view");
59 $this->waitForPageToLoad($this->getTimeoutMsec());
60 }
61
62 // goto advanced search
63 $this->openCiviPage("contact/search/advanced", "reset=1", "email");
64
65 $this->type("email", $emailString);
66 $this->click("_qf_Advanced_refresh");
67 $this->waitForPageToLoad($this->getTimeoutMsec());
68
69 // Verify exactly two contacts found
70 $this->assertTrue($this->isTextPresent("2 Contacts"), 'Looking for 2 results with email like ' . $emailString);
71
72 // Click "check all" box and act on "Add to group" action
73 $this->click('toggleSelect');
bf333c47 74 $this->waitForText("xpath=//input[@value='ts_sel']/following-sibling::label/span", '2');
7f82e636 75 $this->select("task", "label=Group - add contacts");
6a488035
TO
76 $this->waitForPageToLoad($this->getTimeoutMsec());
77
78 // Select the new group and click to add
79 $this->click("group_id");
80 $this->select("group_id", "label=" . $newGroupName);
81 $this->click("_qf_AddToGroup_next-bottom");
82 $this->waitForPageToLoad($this->getTimeoutMsec());
83
84 // Check status messages are as expected
6c5f7368
CW
85 $this->waitForText('crm-notification-container', "Added Contacts to {$newGroupName}");
86 $this->waitForText('crm-notification-container', "2 contacts added to group");
6a488035
TO
87
88 // Search by group membership in newly created group
89 $this->openCiviPage('contact/search/advanced', 'reset=1');
c900afb1 90 $this->select("group", "label=" . $newGroupName);
6a488035
TO
91 $this->click("_qf_Advanced_refresh");
92 $this->waitForPageToLoad($this->getTimeoutMsec());
93
94 // Verify those two contacts (and only those two) are in the group
95 if (!$this->isTextPresent("2 Contacts")) {
96 die("nothing found for group $newGroupName");
97 }
98
99 $this->assertTrue($this->isTextPresent("2 Contacts"), 'Looking for 2 results belonging to group: ' . $newGroupName);
100 foreach ($cids as $cid) {
101 $this->assertTrue($this->isElementPresent('rowid' . $cid));
102 }
103
104 }
105
00be9182 106 public function testMultiplePageContactSearchAddContactsToGroup() {
69369531 107 $this->webtestLogin();
6a488035
TO
108 $newGroupName = 'Group_' . substr(sha1(rand()), 0, 7);
109 $this->WebtestAddGroup($newGroupName);
110
111 $this->openCiviPage('contact/search', 'reset=1');
beea38fc 112 $this->clickLink("_qf_Basic_refresh");
dd055b5e 113 $this->waitForElementPresent("xpath=//*[@id='CRM_Contact_Form_Search_Basic-rows-per-page-select']");
bf333c47 114 $this->type("xpath=//*[@id='CRM_Contact_Form_Search_Basic-rows-per-page-select']", '25');
c900afb1 115 $this->waitForElementPresent("toggleSelect");
6a488035 116 $this->click("toggleSelect");
dd055b5e 117 $this->waitForAjaxContent();
45d22844 118 $this->waitForText("xpath=//div[@class='crm-content-block']/div/div[2]/div/span[2]/a", "Next >");
6a488035 119 $this->click("toggleSelect");
dd055b5e 120 $this->waitForAjaxContent();
bf333c47 121 $this->waitForText("xpath=//input[@value='ts_sel']/following-sibling::label/span", '50');
7f82e636 122 $this->select("task", "label=Group - add contacts");
6a488035
TO
123 $this->waitForPageToLoad($this->getTimeoutMsec());
124
6c6e6187 125 // Select the new group and click to add
dd055b5e 126 $this->waitForElementPresent("group_id");
6a488035
TO
127 $this->click("group_id");
128 $this->select("group_id", "label=" . $newGroupName);
129 $this->click("_qf_AddToGroup_next-bottom");
6a488035
TO
130
131 // Check status messages are as expected
6c5f7368
CW
132 $this->waitForText('crm-notification-container', "Added Contacts to {$newGroupName}");
133 $this->waitForText('crm-notification-container', "50 contacts added to group");
6a488035
TO
134
135 $this->openCiviPage('contact/search/advanced', 'reset=1');
c900afb1 136 $this->select("group", "label=" . $newGroupName);
6a488035
TO
137 $this->click("_qf_Advanced_refresh");
138 $this->waitForPageToLoad($this->getTimeoutMsec());
139
140 $this->assertTrue($this->isTextPresent("50 Contacts"), 'Looking for 50 results belonging to group: ' . $newGroupName);
141 }
96025800 142
6a488035 143}