commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / tests / phpunit / WebTest / Contact / DupeContactTest.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_DupeContactTest
31 */
32 class WebTest_Contact_DupeContactTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testDuplicateContactAdd() {
39 $this->webtestLogin();
40
41 $this->openCiviPage('contact/add', 'reset=1&ct=Individual');
42
43 $firstName = substr(sha1(rand()), 0, 7);
44 $lastName1 = substr(sha1(rand()), 0, 7);
45 $email = "{$firstName}@example.com";
46 $lastName2 = substr(sha1(rand()), 0, 7);
47
48 //contact details section
49 //select prefix
50 $this->click("prefix_id");
51 $this->select("prefix_id", "value=3");
52
53 //fill in first name
54 $this->type("first_name", "$firstName");
55
56 //fill in last name
57 $this->type("last_name", "$lastName1");
58
59 //fill in email
60 $this->type("email_1_email", "$email");
61
62 //check for matching contact
63 //$this->click("_qf_Contact_refresh_dedupe");
64 //$this->waitForPageToLoad($this->getTimeoutMsec());
65
66 // Clicking save.
67 $this->click("_qf_Contact_upload_view");
68 $this->waitForPageToLoad($this->getTimeoutMsec());
69 $this->waitForText('crm-notification-container', "Contact Saved");
70
71 $this->openCiviPage('contact/add', 'reset=1&ct=Individual');
72
73 //contact details section
74
75 //fill in first name
76 $this->type("first_name", "$firstName");
77
78 //fill in last name
79 $this->type("last_name", "$lastName1");
80
81 //fill in email
82 $this->type("email_1_email", "$email");
83
84 // Clicking save.
85 $this->click("_qf_Contact_upload_view");
86 $this->waitForPageToLoad($this->getTimeoutMsec());
87
88 $this->assertElementContainsText("css=.notify-content", "Please correct the following errors in the form fields below: One matching contact was found. You can View or Edit the existing contact.");
89 }
90
91 /**
92 * Edit Dedupe rule for individual
93 */
94 public function testEditRule() {
95 $this->webtestLogin();
96 $this->openCiviPage('contact/deduperules', 'action=add&contact_type=Individual&reset=1');
97 $ruleName = 'Rule_' . substr(sha1(rand()), 0, 7);
98
99 //Add Rule for individual
100 $this->type("title", "$ruleName");
101 $this->click("xpath=//table[@class='form-layout']/tbody/tr[@class='crm-dedupe-rules-form-block-used']/td[2]/label[text()='General']");
102 $lengthValueFname = $lengthValueLname = 7;
103 $weighthValueFname = 5;
104 $weightValueLname = 8;
105 $lengthValueEmail = 20;
106 $weightValueEmail = 15;
107
108 // Add first name
109 $this->select("xpath=//table[@class='form-layout-compressed']/tbody/tr[2]/td[1]/select", 'label=First Name');
110 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[2]/td[2]/input", 10);
111 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[2]/td[3]/input", 10);
112 // Add last name
113 $this->select("xpath=//table[@class='form-layout-compressed']/tbody/tr[3]/td[1]/select", 'label=Last Name');
114 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[3]/td[2]/input", 10);
115 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[3]/td[3]/input", 10);
116 // Add email
117 $this->select("xpath=//table[@class='form-layout-compressed']/tbody/tr[4]/td[1]/select", 'label=Email');
118 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[4]/td[2]/input", 10);
119 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[4]/td[3]/input", 10);
120 $this->click("_qf_DedupeRules_next-bottom");
121 $this->waitForText("crm-notification-container", "The rule '$ruleName' has been saved.");
122
123 // Edit the rule for individual.
124 $this->click("xpath=//div[@id='browseValues_Individual']/div[1]/div/table/tbody//tr/td[1][text()='$ruleName']/../td[3]/span//a[text()='Edit Rule']");
125 $this->waitForElementPresent("_qf_DedupeRules_cancel-bottom");
126
127 //edit length and weight for First Name
128 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[2]/td[2]/input", $lengthValueFname);
129 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[2]/td[3]/input", $weighthValueFname);
130
131 //edit length and weight for Last Name
132 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[3]/td[2]/input", $lengthValueLname);
133 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[3]/td[3]/input", $weightValueLname);
134
135 //edit length and weight for Email
136 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[4]/td[2]/input", $lengthValueEmail);
137 $this->type("xpath=//table[@class='form-layout-compressed']/tbody/tr[4]/td[3]/input", $weightValueEmail);
138
139 $this->click("_qf_DedupeRules_next-bottom");
140 $this->waitForAjaxContent();
141 $this->click("xpath=//div[@id='browseValues_Individual']/div[1]/div/table/tbody//tr/td[1][text()='$ruleName']/../td[3]/span//a[text()='Edit Rule']");
142 $this->waitForAjaxContent();
143
144 $this->assertTrue($this->isElementPresent("xpath=//table[@class='form-layout-compressed']/tbody/tr[2]/td[2]/input[@value=$lengthValueFname]"));
145 $this->assertTrue($this->isElementPresent("xpath=//table[@class='form-layout-compressed']/tbody/tr[2]/td[3]/input[@value=$weighthValueFname]"));
146 $this->assertTrue($this->isElementPresent("xpath=//table[@class='form-layout-compressed']/tbody/tr[3]/td[2]/input[@value=$lengthValueLname]"));
147 $this->assertTrue($this->isElementPresent("xpath=//table[@class='form-layout-compressed']/tbody/tr[3]/td[3]/input[@value=$weightValueLname]"));
148 $this->assertTrue($this->isElementPresent("xpath=//table[@class='form-layout-compressed']/tbody/tr[4]/td[2]/input[@value=$lengthValueEmail]"));
149 $this->assertTrue($this->isElementPresent("xpath=//table[@class='form-layout-compressed']/tbody/tr[4]/td[3]/input[@value=$weightValueEmail]"));
150 }
151
152 }