Webtest fixes
[civicrm-core.git] / tests / phpunit / WebTest / Contact / AddTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
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 require_once 'CiviTest/CiviSeleniumTestCase.php';
28 class WebTest_Contact_AddTest extends CiviSeleniumTestCase {
29
30 protected function setUp() {
31 parent::setUp();
32 }
33
34 function testIndividualAdd() {
35 $this->webtestLogin();
36
37 $groupName = $this->WebtestAddGroup();
38
39 // go to display preferences to enable Open ID field
40 $this->openCiviPage('admin/setting/preferences/display', "reset=1", "_qf_Display_next-bottom");
41 $this->check("xpath=//ul[@id='contactEditBlocks']//li/span[2]/label[text()='Open ID']/../input");
42 $this->click("_qf_Display_next-bottom");
43 $this->waitForPageToLoad($this->getTimeoutMsec());
44 $this->openCiviPage('contact/add', 'reset=1&ct=Individual');
45
46 //contact details section
47 //select prefix
48 $this->click("prefix_id");
49 $this->select("prefix_id", "value=" . $this->webtestGetFirstValueForOptionGroup('individual_prefix'));
50
51 //fill in first name
52 $this->type("first_name", substr(sha1(rand()), 0, 7) . "John");
53
54 //fill in middle name
55 $this->type("middle_name", "Bruce");
56
57 //fill in last name
58 $this->type("last_name", substr(sha1(rand()), 0, 7) . "Smith");
59
60 //select suffix
61 $this->select("suffix_id", "value=3");
62
63 //fill in nick name
64 $this->type("nick_name", "jsmith");
65
66 //fill in email
67 $this->type("email_1_email", substr(sha1(rand()), 0, 7) . "john@gmail.com");
68
69 //fill in phone
70 $this->type("phone_1_phone", "2222-4444");
71
72 //fill in IM
73 $this->type("im_1_name", "testYahoo");
74
75 //fill in openID
76 $this->type("openid_1_openid", "http://" . substr(sha1(rand()), 0, 7) . "openid.com");
77
78 //fill in website
79 $this->type("website_1_url", "http://www.john.com");
80
81 //fill in source
82 $this->type("contact_source", "johnSource");
83
84 //fill in external identifier
85 $indExternalId = substr(sha1(rand()), 0, 4);
86 $this->type("external_identifier", $indExternalId);
87
88 //check for matching contact
89 $this->click("_qf_Contact_refresh_dedupe");
90 $this->waitForPageToLoad($this->getTimeoutMsec());
91
92 //address section
93 $this->click("addressBlock");
94 $this->waitForElementPresent("address_1_street_address");
95 //fill in address 1
96 $this->type("address_1_street_address", "902C El Camino Way SW");
97 $this->type("address_1_city", "Dumfries");
98 $this->type("address_1_postal_code", "1234");
99
100 $this->click("address_1_country_id");
101 $this->select("address_1_country_id", "value=" . $this->webtestGetValidCountryID());
102
103 if ($this->assertElementContainsText('address_1', "Latitude")) {
104 $this->type("address_1_geo_code_1", "1234");
105 $this->type("address_1_geo_code_2", "5678");
106 }
107
108 //fill in address 2
109 $this->click("//div[@id='addMoreAddress1']/a/span");
110 $this->waitForElementPresent("address_2_street_address");
111 $this->type("address_2_street_address", "2782Y Dowlen Path W");
112 $this->type("address_2_city", "Birmingham");
113 $this->type("address_2_postal_code", "3456");
114
115 $this->click("address_2_country_id");
116 $this->select("address_2_country_id", "value=" . $this->webtestGetValidCountryID());
117
118 if ($this->assertElementContainsText('address_2', "Latitude")) {
119 $this->type("address_2_geo_code_1", "1234");
120 $this->type("address_2_geo_code_2", "5678");
121 }
122
123 //Communication Preferences section
124 $this->click("commPrefs");
125
126 //select greeting/addressee options
127 $this->waitForElementPresent("email_greeting_id");
128 $this->select("email_greeting_id", "value=2");
129 $this->select("postal_greeting_id", "value=3");
130
131 //Select preferred method for Privacy
132 $this->click("privacy[do_not_trade]");
133 $this->click("privacy[do_not_sms]");
134
135 //Select preferred method(s) of communication
136 $this->click("preferred_communication_method[1]");
137 $this->click("preferred_communication_method[2]");
138
139 //select preferred language
140 $this->waitForElementPresent("preferred_language");
141 $this->select("preferred_language", "value=en_US");
142
143 //Notes section
144 $this->click("notesBlock");
145 $this->waitForElementPresent("subject");
146 $this->type("subject", "test note");
147 $this->type("note", "this is a test note contact webtest");
148 $this->assertElementContainsText('notesBlock', "Subject\n Notes");
149
150 //Demographics section
151 $this->click("//div[@class='crm-accordion-header' and contains(.,'Demographics')]");
152 $this->waitForElementPresent("birth_date");
153
154 $this->webtestFillDate('birth_date', "-1 year");
155
156 //Tags and Groups section
157 $this->click("tagGroup");
158
159 // select group
160 $this->select("crmasmSelect0", "label=$groupName");
161 $this->click("tag[{$this->webtestGetValidEntityID('Tag')}]");
162
163 // Clicking save.
164 $this->click("_qf_Contact_upload_view");
165
166 $this->waitForPageToLoad($this->getTimeoutMsec());
167 $this->waitForText('crm-notification-container', "Contact Saved");
168 }
169
170 function testHouseholdAdd() {
171 $this->webtestLogin();
172
173 $groupName = $this->WebtestAddGroup();
174
175 // go to display preferences to enable Open ID field
176 $this->openCiviPage('admin/setting/preferences/display', "reset=1", "_qf_Display_next-bottom");
177 $this->check("xpath=//ul[@id='contactEditBlocks']//li/span[2]/label[text()='Open ID']/../input");
178 $this->click("_qf_Display_next-bottom");
179 $this->waitForPageToLoad($this->getTimeoutMsec());
180
181 $this->openCiviPage('contact/add', "reset=1&ct=Household");
182
183 //contact details section
184 //fill in Household name
185 $this->click("household_name");
186 $name = substr(sha1(rand()), 0, 7) . "Fraddie Grant's home ";
187 $this->type("household_name", $name);
188
189 //fill in nick name
190 $this->type("nick_name", substr(sha1(rand()), 0, 7) . "Grant's home");
191
192 //fill in email
193 $email = substr(sha1(rand()), 0, 7) . "fraddiegrantshome@web.com ";
194 $this->type("email_1_email", $email);
195 $this->click("Email_1_IsBulkmail");
196
197 //fill in phone
198 $this->type("phone_1_phone", "444-4444");
199 $this->select("phone_1_phone_type_id", "value=" . $this->webtestGetFirstValueForOptionGroup('phone_type'));
200
201 //fill in IM
202 $this->assertElementContainsText('im_1_provider_id', "Yahoo MSN AIM GTalk Jabber Skype");
203 $this->type("im_1_name", "testSkype");
204 $this->select("im_1_location_type_id", "value=3");
205 $this->select("im_1_provider_id", "value=6");
206
207 //fill in openID
208 $this->type("openid_1_openid", "http://" . substr(sha1(rand()), 0, 7) . "shomeopenid.com");
209
210 //fill in website url
211 $this->type("website_1_url", "http://www.fraddiegrantshome.com");
212
213 //fill in contact source
214 $this->type("contact_source", "Grant's home source");
215
216 //fill in external identifier
217 $houExternalId = substr(sha1(rand()), 0, 4);
218 $this->type("external_identifier", $houExternalId);
219
220 //check for duplicate contact
221 $this->click("_qf_Contact_refresh_dedupe");
222 $this->waitForPageToLoad($this->getTimeoutMsec());
223
224 //address section
225 $this->click("addressBlock");
226 $this->waitForElementPresent("address_1_street_address");
227 $this->type("address_1_street_address", "938U Bay Rd E");
228 $this->type("address_1_city", "Birmingham");
229 $this->type("address_1_postal_code", "35278");
230
231 $this->click("address_1_country_id");
232 $this->select("address_1_country_id", "value=" . $this->webtestGetValidCountryID());
233
234 if ($this->assertElementContainsText('address_1', "Latitude")) {
235 $this->type("address_1_geo_code_1", "1234");
236 $this->type("address_1_geo_code_2", "5678");
237 }
238
239 //Communication Preferences section
240 $this->click("commPrefs");
241
242 //select greeting/addressee options
243 $this->waitForElementPresent("addressee_id");
244 $this->select("addressee_id", "value=4");
245 $this->type("addressee_custom", "Grant's home");
246
247 //Select preferred method(s) of communication
248 $this->click("preferred_communication_method[1]");
249 $this->click("preferred_communication_method[2]");
250 $this->click("preferred_communication_method[5]");
251
252 //Select preferred method for Privacy
253 $this->click("privacy[do_not_sms]");
254
255 //select preferred language
256 $this->waitForElementPresent("preferred_language");
257 $this->select("preferred_language", "value=fr_FR");
258
259 //Notes section
260 $this->clickAt("xpath=//div[text()='
261
262 Notes
263 ']");
264 $this->waitForElementPresent("subject");
265 $this->type("subject", "Grant's note");
266 $this->type("note", "This is a household contact webtest note.");
267
268 // select group
269 $this->clickAt("xpath=//div[text()='Tags and Groups']");
270 $this->select("group", "label=$groupName");
271
272 //tags section
273 $this->click("tag[{$this->webtestGetValidEntityID('Tag')}]");
274
275 // Clicking save.
276 $this->click("_qf_Contact_upload_view");
277 $this->waitForPageToLoad($this->getTimeoutMsec());
278
279 $this->waitForText('crm-notification-container', "Contact Saved");
280 }
281
282 function testOrganizationAdd() {
283 $this->webtestLogin();
284
285 $groupName = $this->WebtestAddGroup();
286
287 // go to display preferences to enable Open ID field
288 $this->openCiviPage('admin/setting/preferences/display', "reset=1", "_qf_Display_next-bottom");
289 $this->check("xpath=//ul[@id='contactEditBlocks']//li/span[2]/label[text()='Open ID']/../input");
290 $this->click("_qf_Display_next-bottom");
291 $this->waitForPageToLoad($this->getTimeoutMsec());
292
293 $this->openCiviPage('contact/add', 'reset=1&ct=Organization');
294
295 //contact details section
296 //fill in Organization name
297 $this->click("organization_name");
298 $this->type("organization_name", substr(sha1(rand()), 0, 7) . "syntel tech");
299
300 //fill in legal name
301 $this->type("legal_name", "syntel tech Ltd");
302
303 //fill in nick name
304 $this->type("nick_name", "syntel");
305
306 //fill in email
307 $this->type("email_1_email", substr(sha1(rand()), 0, 7) . "info@syntel.com");
308
309 //fill in phone
310 $this->type("phone_1_phone", "222-7777");
311 $this->select("phone_1_phone_type_id", "value=2");
312
313 //fill in IM
314 $this->type("im_1_name", "testGtalk");
315 $this->select("im_1_location_type_id", "value=4");
316 $this->select("im_1_provider_id", "value=4");
317
318 //fill in openID
319 $this->select("openid_1_location_type_id", "value=5");
320 $this->type("openid_1_openid", "http://" . substr(sha1(rand()), 0, 7) . "Openid.com");
321
322 //fill in website url
323 $this->type("website_1_url", "http://syntelglobal.com");
324
325 //fill in contact source
326 $this->type("contact_source", "syntel's source");
327
328 //fill in external identifier
329 $orgExternalId = substr(sha1(rand()), 0, 4);
330 $this->type("external_identifier", $orgExternalId);
331
332 //check for duplicate contact
333 $this->click("_qf_Contact_refresh_dedupe");
334 $this->waitForPageToLoad($this->getTimeoutMsec());
335
336 //address section
337 $this->click("addressBlock");
338 $this->waitForElementPresent("address_1_street_address");
339 $this->type("address_1_street_address", "928A Lincoln Way W");
340 $this->type("address_1_city", "Madison");
341 $this->type("address_1_postal_code", "68748");
342
343 $this->click("address_1_country_id");
344 $this->select("address_1_country_id", "value=" . $this->webtestGetValidCountryID());
345
346 if ($this->assertElementContainsText('address_1', "Latitude")) {
347 $this->type("address_1_geo_code_1", "1234");
348 $this->type("address_1_geo_code_2", "5678");
349 }
350
351 //Communication Preferences section
352 $this->click("commPrefs");
353
354 //Select preferred method(s) of communication
355 $this->click("preferred_communication_method[2]");
356 $this->click("preferred_communication_method[5]");
357
358 //Select preferred method for Privacy
359 $this->click("privacy[do_not_sms]");
360 $this->click("privacy[do_not_mail]");
361 //select preferred language
362 $this->waitForElementPresent("preferred_language");
363 $this->select("preferred_language", "value=de_DE");
364
365 //Notes section
366 $this->click("notesBlock");
367 $this->waitForElementPresent("subject");
368 $this->type("subject", "syntel global note");
369 $this->type("note", "This is a note for syntel global's contact webtest.");
370
371 //Tags and Groups section
372 $this->click("tagGroup");
373
374 // select group
375 $this->select("group", "label=$groupName");
376
377 $this->click("tag[{$this->webtestGetValidEntityID('Tag')}]");
378
379 // Clicking save.
380 $this->click("_qf_Contact_upload_view");
381 $this->waitForPageToLoad($this->getTimeoutMsec());
382
383 $this->waitForText('crm-notification-container', "Contact Saved");
384 }
385
386 function testIndividualAddWithSharedAddress() {
387 $this->webtestLogin();
388
389 $this->openCiviPage('contact/add', "reset=1&ct=Individual");
390
391 //contact details section
392 //select prefix
393 $this->click("prefix_id");
394 $this->select("prefix_id", "value=" . $this->webtestGetFirstValueForOptionGroup('individual_prefix'));
395
396 //fill in first name
397 $this->type("first_name", substr(sha1(rand()), 0, 7) . "John");
398
399 //fill in middle name
400 $this->type("middle_name", "Bruce");
401
402 $lastName = substr(sha1(rand()), 0, 7) . "Smith";
403 //fill in last name
404 $this->type("last_name", $lastName);
405
406 //create new current employer
407 $currentEmployer = substr(sha1(rand()), 0, 7) . "Web Access";
408
409 $this->type('current_employer', $currentEmployer);
410
411 //fill in email
412 $this->type("email_1_email", substr(sha1(rand()), 0, 7) . "john@gmail.com");
413
414 //fill in phone
415 $this->type("phone_1_phone", "2222-4444");
416
417 //fill in source
418 $this->type("contact_source", "johnSource");
419
420 //address section
421 $this->click("addressBlock");
422 $this->waitForElementPresent("address_1_street_address");
423
424 $this->select('address_1_location_type_id', 'value=2');
425
426 $this->click('address[1][use_shared_address]');
427
428 // create new organization with dialog
429 $this->select("profiles_1", "label=New Organization");
430
431 // create new contact using dialog
432 $this->waitForElementPresent("css=div#contact-dialog-1");
433 $this->waitForElementPresent("_qf_Edit_next");
434
435 $this->type('organization_name', $currentEmployer);
436 $this->type('street_address-1', '902C El Camino Way SW');
437 $this->type("email-Primary", "john@gmail.com" . substr(sha1(rand()), 0, 7));
438 $this->type('city-1', 'Dumfries');
439 $this->type('postal_code-1', '1234');
440
441 $this->click("_qf_Edit_next");
442
443 // Is new contact created?
444 $this->waitForText('crm-notification-container', "$currentEmployer has been created.");
445
446 //make sure shared address is selected
447 $this->waitForElementPresent('selected_shared_address-1');
448
449 //fill in address 2
450 $this->click("//div[@id='addMoreAddress1']/a/span");
451 $this->waitForElementPresent("address_2_street_address");
452
453 $this->select('address_2_location_type_id', 'value=1');
454
455 $this->click('address[2][use_shared_address]');
456
457 // create new household with dialog
458 $this->select('profiles_2', "label=New Household");
459
460 // create new contact using dialog
461 $this->waitForElementPresent("css=div#contact-dialog-2");
462 $this->waitForElementPresent("_qf_Edit_next");
463
464 $sharedHousehold = substr(sha1(rand()), 0, 7) . 'Smith Household';
465 $this->type('household_name', $sharedHousehold);
466 $this->type('street_address-1', '2782Y Dowlen Path W');
467 $this->type("email-Primary", substr(sha1(rand()), 0, 7) . "john@gmail.com");
468 $this->type('city-1', 'Birmingham');
469 $this->type('postal_code-1', '3456');
470
471 $this->click("_qf_Edit_next");
472
473 // Is new contact created?
474 $this->waitForText('crm-notification-container', "$sharedHousehold has been created.");
475
476 //make sure shared address is selected
477 $this->waitForElementPresent('selected_shared_address-2');
478
479 // Clicking save.
480 $this->click("_qf_Contact_upload_view");
481 $this->waitForPageToLoad($this->getTimeoutMsec());
482 $name = $this->getText("xpath=//div[@class='crm-summary-display_name']");
483 $this->waitForText('crm-notification-container', "$name has been created.");
484
485 //make sure current employer is set
486 $this->verifyText("xpath=id('contactinfo-block')/div/div/div[2]/div", 'Employer');
487 $this->verifyText("xpath=id('contactinfo-block')/div/div/div[2]/div[2]/a[text()]", $currentEmployer);
488
489 //make sure both shared address are set.
490 $this->assertElementContainsText('address-block-1', "Address belongs to $currentEmployer");
491 $this->assertElementContainsText('address-block-2', "Address belongs to $sharedHousehold");
492
493 // make sure relationships are created
494 $this->click("xpath=id('tab_rel')/a");
495 $this->waitForElementPresent('permission-legend');
496 $this->assertElementContainsText('option11', 'Employee of');
497 $this->assertElementContainsText('option11', 'Household Member of');
498 }
499 }
500