commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / tests / phpunit / WebTest / Contact / TaskActionAddToGroupTest.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 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_TaskActionAddToGroupTest
31 */
32 class WebTest_Contact_TaskActionAddToGroupTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testAddContactsToGroup() {
39
40 $this->webtestLogin();
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
45 $emailString = substr(sha1(rand()), 0, 7) . '@example.com';
46 $cids = array();
47 for ($i = 0; $i < 2; $i++) {
48 // create new contact
49 $this->webtestAddContact();
50
51 // get cid of new contact
52 $cids[] = $this->urlArg('cid');
53
54 // update email of new contact
55 $this->waitForElementPresent("//ul[@id='actions']/li/a/span[text()='Edit']");
56 $this->click("//ul[@id='actions']/li/a/span[text()='Edit']");
57 $this->waitForPageToLoad($this->getTimeoutMsec());
58 $this->type("email_1_email", $emailString . $i . 'webtest');
59 $this->click("_qf_Contact_upload_view");
60 $this->waitForPageToLoad($this->getTimeoutMsec());
61 }
62
63 // goto advanced search
64 $this->openCiviPage("contact/search/advanced", "reset=1", "email");
65
66 $this->type("email", $emailString);
67 $this->click("_qf_Advanced_refresh");
68 $this->waitForPageToLoad($this->getTimeoutMsec());
69
70 // Verify exactly two contacts found
71 $this->assertTrue($this->isTextPresent("2 Contacts"), 'Looking for 2 results with email like ' . $emailString);
72
73 // Click "check all" box and act on "Add to group" action
74 $this->click('toggleSelect');
75 $this->waitForText("xpath=//input[@value='ts_sel']/following-sibling::label/span", '2');
76 $this->select("task", "label=Add Contacts to Group");
77 $this->waitForPageToLoad($this->getTimeoutMsec());
78
79 // Select the new group and click to add
80 $this->click("group_id");
81 $this->select("group_id", "label=" . $newGroupName);
82 $this->click("_qf_AddToGroup_next-bottom");
83 $this->waitForPageToLoad($this->getTimeoutMsec());
84
85 // Check status messages are as expected
86 $this->waitForText('crm-notification-container', "Added Contacts to {$newGroupName}");
87 $this->waitForText('crm-notification-container', "2 contacts added to group");
88
89 // Search by group membership in newly created group
90 $this->openCiviPage('contact/search/advanced', 'reset=1');
91 $this->select("group", "label=" . $newGroupName);
92 $this->click("_qf_Advanced_refresh");
93 $this->waitForPageToLoad($this->getTimeoutMsec());
94
95 // Verify those two contacts (and only those two) are in the group
96 if (!$this->isTextPresent("2 Contacts")) {
97 die("nothing found for group $newGroupName");
98 }
99
100 $this->assertTrue($this->isTextPresent("2 Contacts"), 'Looking for 2 results belonging to group: ' . $newGroupName);
101 foreach ($cids as $cid) {
102 $this->assertTrue($this->isElementPresent('rowid' . $cid));
103 }
104
105 }
106
107 public function testMultiplePageContactSearchAddContactsToGroup() {
108 $this->markTestSkipped('Skipping for now as it works fine locally.');
109 $this->webtestLogin();
110 $newGroupName = 'Group_' . substr(sha1(rand()), 0, 7);
111 $this->WebtestAddGroup($newGroupName);
112
113 $this->openCiviPage('contact/search', 'reset=1');
114 $this->clickLink("_qf_Basic_refresh");
115
116 $this->type("xpath=//*[@id='CRM_Contact_Form_Search_Basic-rows-per-page-select']", '25');
117 $this->waitForElementPresent("toggleSelect");
118 $this->click("toggleSelect");
119 $this->click("xpath=//div[@class='crm-content-block']/div/div[2]/div/span[2]/a");
120 $this->waitForText("xpath=//div[@class='crm-content-block']/div/div[2]/div/span[2]/a", "Next >");
121 $this->click("toggleSelect");
122 $this->waitForText("xpath=//input[@value='ts_sel']/following-sibling::label/span", '50');
123 $this->select("task", "label=Add Contacts to Group");
124 $this->waitForPageToLoad($this->getTimeoutMsec());
125
126 // Select the new group and click to add
127 $this->click("group_id");
128 $this->select("group_id", "label=" . $newGroupName);
129 $this->click("_qf_AddToGroup_next-bottom");
130 $this->waitForPageToLoad($this->getTimeoutMsec());
131
132 // Check status messages are as expected
133 $this->waitForText('crm-notification-container', "Added Contacts to {$newGroupName}");
134 $this->waitForText('crm-notification-container', "50 contacts added to group");
135
136 $this->openCiviPage('contact/search/advanced', 'reset=1');
137 $this->select("group", "label=" . $newGroupName);
138 $this->click("_qf_Advanced_refresh");
139 $this->waitForPageToLoad($this->getTimeoutMsec());
140
141 $this->assertTrue($this->isTextPresent("50 Contacts"), 'Looking for 50 results belonging to group: ' . $newGroupName);
142 }
143
144 }