Mass switch to openCiviPage method
[civicrm-core.git] / tests / phpunit / WebTest / Event / TellAFriendTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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
28require_once 'CiviTest/CiviSeleniumTestCase.php';
29class WebTest_Event_TellAFriendTest extends CiviSeleniumTestCase {
30
31 protected function setUp() {
32 parent::setUp();
33 }
34
35 function testAddEvent() {
6a488035 36 // Log in using webtestLogin() method
42daf119 37 $this->webtestLogin('admin');
6a488035 38
071a6d2e 39 $this->openCiviPage("event/add", "reset=1&action=add");
6a488035
TO
40
41 $eventTitle = 'My Conference - ' . substr(sha1(rand()), 0, 7);
42 $eventDescription = "Here is a description for this conference.";
43 $this->_testAddEventInfo($eventTitle, $eventDescription);
44
45 $streetAddress = "100 Main Street";
46 $this->_testAddLocation($streetAddress);
47
48 // intro text for registration page
49 $registerIntro = "Fill in all the fields below and click Continue.";
50 $multipleRegistrations = TRUE;
51 $this->_testAddOnlineRegistration($registerIntro, $multipleRegistrations);
52
53 // enable tell a friend
54 $subject = "$eventTitle Tell A Friend";
55 $thankYouMsg = "$eventTitle Tell A Friend Test Thankyou Message";
56 $this->_testAddTellAFriend($subject, $thankYouMsg, $eventTitle);
57
58 // get the url for registration
59 $this->waitForElementPresent("xpath=//div[@id='event_status_id']//div[@class='dataTables_wrapper']/table/tbody//tr/td[1]/a[text()='$eventTitle']");
60 $this->click("link=$eventTitle");
61 $this->waitForElementPresent("link=Register Now");
62 $this->click("link=Register Now");
63 $this->waitForElementPresent("_qf_Register_upload-bottom");
64 $registerUrl = $this->getLocation();
65
66 // give permissions for event registration
67 $permission = array('edit-1-register-for-events');
68 $this->changePermissions($permission);
69
70 // register as an anonymous user
42daf119 71 $this->webtestLogout();
6a488035
TO
72 $this->open($registerUrl);
73 $this->waitForElementPresent('_qf_Register_upload-bottom');
74
75 $firstName = substr(sha1(rand()), 0, 7);
76 $this->type('email-Primary', "$firstName@Anderson.com");
77 $this->click('_qf_Register_upload-bottom');
78 $this->waitForPageToLoad($this->getTimeoutMsec());
79 $this->click("css=div.crm-event-thankyou-form-block div#tell-a-friend a");
80 $this->waitForElementPresent('_qf_Form_cancel');
81
82 $this->type('suggested_message', '$subject Test Message for the recipients');
83
84 // fill the recipients
85 $firstName1 = 'John' . substr(sha1(rand()), 0, 7);
86 $lastName1 = substr(sha1(rand()), 0, 7);
87 $this->type('friend_1_first_name', "$firstName1");
88 $this->type('friend_1_last_name', "$lastName1");
89 $this->type('friend_1_email', "$firstName1@$lastName1.com");
90
91 $firstName2 = 'Smith' . substr(sha1(rand()), 0, 7);
92 $lastName2 = substr(sha1(rand()), 0, 7);
93 $this->type('friend_2_first_name', "$firstName2");
94 $this->type('friend_2_last_name', "$lastName2");
95 $this->type('friend_2_email', "$firstName2@$lastName2.com");
96
97 $firstName3 = 'James' . substr(sha1(rand()), 0, 7);
98 $lastName3 = substr(sha1(rand()), 0, 7);
99 $this->type('friend_3_first_name', "$firstName3");
100 $this->type('friend_3_last_name', "$lastName3");
101 $this->type('friend_3_email', "$firstName3@$lastName3.com");
102
103 $this->click('_qf_Form_submit');
104 $this->waitForPageToLoad($this->getTimeoutMsec());
105
106 //to wait for thank you message to appear
107 sleep(5);
108 $this->assertTrue($this->isTextPresent($thankYouMsg));
109
110 // Log in using webtestLogin() method
6a488035
TO
111 $this->webtestLogin();
112
113 // get all friends contact id
42daf119 114 $this->openCiviPage("contact/search", "reset=1", '_qf_Basic_refresh');
6a488035
TO
115 $this->type('sort_name', $firstName1);
116 $this->click('_qf_Basic_refresh ');
117 $this->waitForPageToLoad($this->getTimeoutMsec());
118 $this->click("xpath=//div[@class='crm-search-results']/table/tbody/tr/td[11]/span/a[text()='View']");
119 $this->waitForPageToLoad($this->getTimeoutMsec());
120
42daf119 121 $this->openCiviPage("contact/search", "reset=1", '_qf_Basic_refresh');
6a488035
TO
122 $this->type('sort_name', $firstName2);
123 $this->click('_qf_Basic_refresh ');
124 $this->waitForPageToLoad($this->getTimeoutMsec());
125 $this->click("xpath=//div[@class='crm-search-results']/table/tbody/tr/td[11]/span/a[text()='View']");
126 $this->waitForPageToLoad($this->getTimeoutMsec());
127
42daf119 128 $this->openCiviPage("contact/search", "reset=1", '_qf_Basic_refresh');
6a488035
TO
129 $this->type('sort_name', $firstName3);
130 $this->click('_qf_Basic_refresh ');
131 $this->waitForPageToLoad($this->getTimeoutMsec());
132 $this->click("xpath=//div[@class='crm-search-results']/table/tbody/tr/td[11]/span/a[text()='View']");
133 $this->waitForPageToLoad($this->getTimeoutMsec());
134
42daf119 135 $this->openCiviPage("contact/search", "reset=1", '_qf_Basic_refresh');
6a488035
TO
136 $this->type('sort_name', $firstName);
137 $this->click('_qf_Basic_refresh ');
138 $this->waitForElementPresent('Print');
139 $this->assertTrue($this->isTextPresent('1 Contact'));
140
141 // Verify Activity created
42daf119 142 $this->openCiviPage("activity/search", "reset=1", '_qf_Search_refresh');
6a488035
TO
143 $this->type('sort_name', $firstName1);
144 $this->click('_qf_Search_refresh');
145 $this->waitForElementPresent("_qf_Search_next_print");
146 $this->click("xpath=//div[@class='crm-search-results']//table[@class='selector']/tbody/tr[2]/td[9]/span/a[text()='View']");
147 $this->waitForElementPresent('_qf_Activity_cancel-bottom');
148
149 $this->verifyText("xpath=//table[@class='crm-info-panel']/tbody/tr[1]/td[2]",
150 preg_quote("$firstName@Anderson.com")
151 );
152
153 $this->verifyText("xpath=//table[@class='crm-info-panel']/tbody/tr[2]/td[2]/a[1]",
154 preg_quote("$lastName1, $firstName1")
155 );
156 $this->verifyText("xpath=//table[@class='crm-info-panel']/tbody/tr[2]/td[2]/a[2]",
157 preg_quote("$lastName2, $firstName2")
158 );
159 $this->verifyText("xpath=//table[@class='crm-info-panel']/tbody/tr[2]/td[2]/a[3]",
160 preg_quote("$lastName3, $firstName3")
161 );
162
163 $this->verifyText("xpath=//table[@class='crm-info-panel']/tbody/tr[4]/td[2]",
164 preg_quote("Tell a Friend:")
165 );
166 }
167
168 function _testAddEventInfo($eventTitle, $eventDescription) {
6a488035
TO
169 $this->waitForElementPresent("_qf_EventInfo_upload-bottom");
170
6a488035
TO
171 $this->select("event_type_id", "value=1");
172
173 // Attendee role s/b selected now.
174 $this->select("default_role_id", "value=1");
175
176 // Enter Event Title, Summary and Description
177 $this->type("title", $eventTitle);
178 $this->type("summary", "This is a great conference. Sign up now!");
179
180 // Type description in ckEditor (fieldname, text to type, editor)
181 $this->fillRichTextField("description", $eventDescription, 'CKEditor');
182
183 // Choose Start and End dates.
184 // Using helper webtestFillDate function.
185 $this->webtestFillDateTime("start_date", "+1 week");
186 $this->webtestFillDateTime("end_date", "+1 week 1 day 8 hours ");
187
188 $this->type("max_participants", "50");
189 $this->click("is_map");
190 $this->click("_qf_EventInfo_upload-bottom");
191 }
192
193 function _testAddLocation($streetAddress) {
194 // Wait for Location tab form to load
195 $this->waitForPageToLoad($this->getTimeoutMsec());
196 $this->waitForElementPresent("_qf_Location_upload-bottom");
197
198 // Fill in address fields
199 $streetAddress = "100 Main Street";
200 $this->type("address_1_street_address", $streetAddress);
201 $this->type("address_1_city", "San Francisco");
202 $this->type("address_1_postal_code", "94117");
203 $this->select("address_1_state_province_id", "value=1004");
204 $this->type("email_1_email", "info@civicrm.org");
205
206 $this->click("_qf_Location_upload-bottom");
207
208 // Wait for "saved" status msg
209 $this->waitForPageToLoad($this->getTimeoutMsec());
210 $this->waitForTextPresent("'Location' information has been saved.");
211 }
212
213 function _testAddOnlineRegistration($registerIntro, $multipleRegistrations = FALSE) {
214 // Go to Online Registration tab
215 $this->click("link=Online Registration");
216 $this->waitForElementPresent("_qf_Registration_upload-bottom");
217
218 $this->check("is_online_registration");
219 $this->assertChecked("is_online_registration");
220 if ($multipleRegistrations) {
221 $this->check("is_multiple_registrations");
222 $this->assertChecked("is_multiple_registrations");
223 }
224
225 $this->fillRichTextField("intro_text", $registerIntro);
226
227 // enable confirmation email
228 $this->click('xpath=//fieldset[@id="mail"]/div/table/tbody/tr/td[2]/label[contains(text(), "Yes")]');
229 $this->type("confirm_from_name", "Jane Doe");
230 $this->type("confirm_from_email", "jane.doe@example.org");
231
232 $this->click("_qf_Registration_upload-bottom");
233 $this->waitForPageToLoad($this->getTimeoutMsec());
234 $this->waitForTextPresent("'Registration' information has been saved.");
235 }
236
237 function _testAddTellAFriend($subject, $thankYouMsg, $eventTitle) {
238 // Go to Tell A Friend Tab
239 $this->click('link=Tell a Friend');
240 $this->waitForElementPresent('_qf_Event_cancel-bottom');
241
242 // Enable tell a friend feature
243 $this->check('tf_is_active');
244 $this->waitForElementPresent('tf_thankyou_text');
245
246 // Modify the messages
247 $this->type('intro', "This is $subject Test intro text");
248 $this->type('suggested_message', "$subject Test Message. This is amazing!");
249
250 $this->type('tf_thankyou_title', 'Test thank you title');
251 $this->type('tf_thankyou_text', $thankYouMsg);
252
253 $this->click('_qf_Event_upload_done-bottom');
254 $this->waitForElementPresent("xpath=//div[@id='event_status_id']//div[@class='dataTables_wrapper']/table/tbody//tr/td[1]/a[text()='$eventTitle']");
255 }
256}
257