Merge pull request #199 from colemanw/webtest
[civicrm-core.git] / tests / phpunit / WebTest / Profile / DedupeTest.php
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
28 require_once 'CiviTest/CiviSeleniumTestCase.php';
29 class WebTest_Profile_DedupeTest extends CiviSeleniumTestCase {
30
31 protected function setUp() {
32 parent::setUp();
33 }
34
35 function testProfileCreateDupeStrictDefault() {
36 // lets give profile related permision to anonymous user.
37 $permission = array('edit-1-profile-create', 'edit-1-profile-edit', 'edit-1-profile-listings', 'edit-1-profile-view');
38 $this->changePermissions($permission);
39
40 // Log in as normal user
41 $this->webtestLogin();
42
43 $this->openCiviPage('contact/add', 'reset=1&ct=Individual');
44
45 $firstName = "John" . substr(sha1(rand()), 0, 7);
46 $lastName = "Smith" . substr(sha1(rand()), 0, 7);
47 $email = $firstName . "@" . $lastName . ".com";
48 // fill in first name
49 $this->type("first_name", $firstName);
50
51 // fill in last name
52 $this->type("last_name", $lastName);
53
54 // fill in email
55 $this->type("email_1_email", $email);
56
57 // Clicking save.
58 $this->click("_qf_Contact_upload_view");
59 $this->waitForPageToLoad($this->getTimeoutMsec());
60 $individualName = $this->getText("xpath=//div[@class='crm-summary-display_name']");
61 $this->assertElementContainsText('crm-notification-container', "$individualName has been created.");
62
63 // submit dupe using profile/create as anonymous
64 $this->openCiviPage('profile/create', 'gid=4&reset=1', '_qf_Edit_next');
65
66 $firstName = "John" . substr(sha1(rand()), 0, 7);
67 $lastName = "Smith" . substr(sha1(rand()), 0, 7);
68
69 // fill in first name
70 $this->type("first_name", $firstName);
71
72 // fill in last name
73 $this->type("last_name", $lastName);
74
75 // fill in email
76 $this->type("email-Primary", $email);
77
78 // click save
79 $this->click("_qf_Edit_next");
80 $this->waitForTextPresent("A record already exists with the same information.");
81 }
82 }