commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / tests / phpunit / WebTest / Import / AddressImportTest.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 'WebTest/Import/ImportCiviSeleniumTestCase.php';
28
29 /**
30 * Class WebTest_Import_AddressImportTest
31 */
32 class WebTest_Import_AddressImportTest extends ImportCiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testCustomAddressDataImport() {
39 $this->webtestLogin();
40
41 $firstName1 = 'Ma_' . substr(sha1(rand()), 0, 7);
42 // Add a custom group and custom field
43 $customDataParams = $this->_addCustomData();
44
45 // Get sample import data.
46 list($headers, $rows) = $this->_individualCustomCSVData($customDataParams, $firstName1);
47
48 $this->importContacts($headers, $rows, 'Individual', 'Skip', array());
49
50 // Type search name in autocomplete.
51 $this->click('sort_name_navigation');
52 $this->type('css=input#sort_name_navigation', $firstName1);
53 $this->typeKeys('css=input#sort_name_navigation', $firstName1);
54
55 // Wait for result list.
56 $this->waitForElementPresent("css=ul.ui-autocomplete li");
57
58 // Visit contact summary page.
59 $this->click("css=ul.ui-autocomplete li");
60 $this->waitForPageToLoad($this->getTimeoutMsec());
61
62 foreach ($customDataParams['customFields'] as $key => $value) {
63 $this->assertTrue($this->isElementPresent("xpath=//div[@class='crm-summary-row']/div[@class='crm-label'][contains(text(), '$key')]"));
64 $this->assertElementContainsText('address-block-1', "$value");
65 }
66 }
67
68 /**
69 * Helper function to provide data for custom data import.
70 *
71 * @param array $customDataParams
72 * @param string $firstName1
73 *
74 * @return array
75 */
76 public function _individualCustomCSVData($customDataParams, $firstName1) {
77
78 $headers = array(
79 'first_name' => 'First Name',
80 'last_name' => 'Last Name',
81 'address_1' => 'Additional Address 1',
82 'address_2' => 'Additional Address 2',
83 'city' => 'City',
84 'state' => 'State',
85 'country' => 'Country',
86 );
87 foreach ($customDataParams['headers'] as $key => $value) {
88 $headers[$key] = $value;
89 }
90
91 $rows = array(
92 0 => array(
93 'first_name' => $firstName1,
94 'last_name' => 'Anderson',
95 'address_1' => 'Add 1',
96 'address_2' => 'Add 2',
97 'city' => 'Watson',
98 'state' => 'NY',
99 'country' => 'United States',
100 ),
101 );
102 foreach ($customDataParams['rows'][0] as $key => $values) {
103 $rows[0][$key] = $values;
104 }
105 return array($headers, $rows);
106 }
107
108 /**
109 * @return array
110 */
111 public function _addCustomData() {
112
113 $this->openCiviPage('admin/custom/group', 'reset=1');
114
115 //add new custom data
116 $this->click("//a[@id='newCustomDataGroup']/span");
117 $this->waitForPageToLoad($this->getTimeoutMsec());
118
119 //fill custom group title
120 $customGroupTitle = 'Custom ' . substr(sha1(rand()), 0, 7);
121 $this->click('title');
122 $this->type('title', $customGroupTitle);
123
124 //custom group extends
125 $this->click('extends[0]');
126 $this->select('extends[0]', "value=Address");
127 $this->click("//option[@value='Address']");
128 $this->clickLink('_qf_Group_next-bottom');
129
130 //Is custom group created?
131 $this->waitForText('crm-notification-container', "Your custom field set '{$customGroupTitle}' has been added. You can add custom fields now.");
132 $gid = $this->urlArg('gid');
133 $this->waitForElementPresent('_qf_Field_cancel-bottom');
134
135 // create custom field "alphanumeric text"
136 $customField = 'Custom field ' . substr(sha1(rand()), 0, 4);
137 $this->type('label', $customField);
138
139 // clicking save
140 $this->click('_qf_Field_done-bottom');
141
142 $this->waitForText('crm-notification-container', "Custom field '{$customField}' has been saved.");
143 $this->assertTrue($this->isTextPresent($customField), 'Missing text: ' . $customField);
144 $this->waitForAjaxContent();
145 $customFieldId = explode('&id=', $this->getAttribute("xpath=//div[@id='field_page']//table/tbody//tr/td/div[text()='$customField']/../../td[8]/span/a@href"));
146 $customFieldId = $customFieldId[1];
147
148 // create custom field - Integer
149 $this->click("newCustomField");
150 $this->waitForElementPresent('_qf_Field_done-bottom');
151 $customField1 = 'Customfield_int ' . substr(sha1(rand()), 0, 4);
152 $this->type('label', $customField1);
153 $this->select("data_type[0]", "value=1");
154
155 // clicking save
156 $this->click('_qf_Field_done-bottom');
157 $this->waitForElementPresent('newCustomField');
158 $this->waitForText('crm-notification-container', "Custom field '{$customField1}' has been saved.");
159 $this->assertTrue($this->isTextPresent($customField1), 'Missing text: ' . $customField1);
160 $this->waitForAjaxContent();
161 $customFieldId1 = explode('&id=', $this->getAttribute("xpath=//div[@id='field_page']//table/tbody//tr/td/div[text()='$customField1']/../../td[8]/span/a@href"));
162 $customFieldId1 = $customFieldId1[1];
163
164 // create custom field - Number
165 $this->click("newCustomField");
166 $this->waitForElementPresent('_qf_Field_done-bottom');
167 $customField2 = 'Customfield_Number ' . substr(sha1(rand()), 0, 4);
168 $this->type('label', $customField2);
169 $this->select("data_type[0]", "value=2");
170
171 // clicking save
172 $this->click('_qf_Field_done-bottom');
173 $this->waitForElementPresent('newCustomField');
174 $this->waitForText('crm-notification-container', "Custom field '{$customField2}' has been saved.");
175 $this->assertTrue($this->isTextPresent($customField2), 'Missing text: ' . $customField2);
176 $this->waitForAjaxContent();
177 $customFieldId2 = explode('&id=', $this->getAttribute("xpath=//div[@id='field_page']//table/tbody//tr/td/div[text()='$customField2']/../../td[8]/span/a@href"));
178 $customFieldId2 = $customFieldId2[1];
179
180 // create custom field - "alphanumeric select"
181 $this->click("newCustomField");
182 $this->waitForElementPresent('_qf_Field_done-bottom');
183 $customField3 = 'Customfield_alp_select' . substr(sha1(rand()), 0, 4);
184 $customFieldId3 = $this->_createMultipleValueCustomField($customField3, 'Select');
185
186 // create custom field - "alphanumeric radio"
187 $this->click("newCustomField");
188 $this->waitForElementPresent('_qf_Field_done-bottom');
189 $customField4 = 'Customfield_alp_radio' . substr(sha1(rand()), 0, 4);
190 $customFieldId4 = $this->_createMultipleValueCustomField($customField4, 'Radio');
191
192 // create custom field - "alphanumeric checkbox"
193 $this->click("newCustomField");
194 $this->waitForElementPresent('_qf_Field_done-bottom');
195 $customField5 = 'Customfield_alp_checkbox' . substr(sha1(rand()), 0, 4);
196 $customFieldId5 = $this->_createMultipleValueCustomField($customField5, 'CheckBox');
197
198 // create custom field - "alphanumeric multiselect"
199 $this->click("newCustomField");
200 $this->waitForElementPresent('_qf_Field_done-bottom');
201 $customField6 = 'Customfield_alp_multiselect' . substr(sha1(rand()), 0, 4);
202 $customFieldId6 = $this->_createMultipleValueCustomField($customField6, 'Multi-Select');
203
204 // create custom field - "alphanumeric advmultiselect"
205 $this->click("newCustomField");
206 $this->waitForElementPresent('_qf_Field_done-bottom');
207 $customField7 = 'Customfield_alp_advmultiselect' . substr(sha1(rand()), 0, 4);
208 $customFieldId7 = $this->_createMultipleValueCustomField($customField7, 'AdvMulti-Select');
209
210 // create custom field - "alphanumeric autocompleteselect"
211 $this->click("newCustomField");
212 $this->waitForElementPresent('_qf_Field_done-bottom');
213 $customField8 = 'Customfield_alp_autocompleteselect' . substr(sha1(rand()), 0, 4);
214 $customFieldId8 = $this->_createMultipleValueCustomField($customField8, 'Autocomplete-Select');
215
216 // create custom field - Money
217 $this->click("newCustomField");
218 $this->waitForElementPresent('_qf_Field_done-bottom');
219 $customField9 = 'Customfield_Money' . substr(sha1(rand()), 0, 4);
220 $this->type('label', $customField9);
221 $this->select("data_type[0]", "value=3");
222
223 // clicking save
224 $this->click('_qf_Field_done-bottom');
225 $this->waitForElementPresent('newCustomField');
226 $this->waitForText('crm-notification-container', "Custom field '{$customField9}' has been saved.");
227 $this->assertTrue($this->isTextPresent($customField9), 'Missing text: ' . $customField9);
228 $this->waitForAjaxContent();
229 $customFieldId9 = explode('&id=', $this->getAttribute("xpath=//div[@id='field_page']//table/tbody//tr/td/div[text()='$customField9']/../../td[8]/span/a@href"));
230 $customFieldId9 = $customFieldId9[1];
231
232 // create custom field - Date
233 $this->click("newCustomField");
234 $this->waitForElementPresent('_qf_Field_done-bottom');
235 $customField10 = 'Customfield_Date' . substr(sha1(rand()), 0, 4);
236 $this->type('label', $customField10);
237 $this->select("data_type[0]", "value=5");
238 $this->select("date_format", "value=yy-mm-dd");
239
240 // clicking save
241 $this->click('_qf_Field_done-bottom');
242 $this->waitForElementPresent('newCustomField');
243 $this->waitForText('crm-notification-container', "Custom field '{$customField10}' has been saved.");
244 $this->assertTrue($this->isTextPresent($customField9), 'Missing text: ' . $customField9);
245 $this->waitForAjaxContent();
246 $customFieldId10 = explode('&id=', $this->getAttribute("xpath=//div[@id='field_page']//table/tbody//tr/td/div[text()='$customField10']/../../td[8]/span/a@href"));
247 $customFieldId10 = $customFieldId10[1];
248
249 return array(
250 'headers' => array(
251 "custom_{$customFieldId}" => "$customField :: $customGroupTitle",
252 "custom_{$customFieldId3}" => "$customField3 :: $customGroupTitle",
253 "custom_{$customFieldId4}" => "$customField4 :: $customGroupTitle",
254 "custom_{$customFieldId5}" => "$customField5 :: $customGroupTitle",
255 "custom_{$customFieldId6}" => "$customField6 :: $customGroupTitle",
256 "custom_{$customFieldId7}" => "$customField7 :: $customGroupTitle",
257 "custom_{$customFieldId8}" => "$customField8 :: $customGroupTitle",
258 "custom_{$customFieldId1}" => "$customField1 :: $customGroupTitle",
259 "custom_{$customFieldId2}" => "$customField2 :: $customGroupTitle",
260 "custom_{$customFieldId9}" => "$customField9 :: $customGroupTitle",
261 "custom_{$customFieldId10}" => "$customField10 :: $customGroupTitle",
262 ),
263 'rows' => array(
264 0 => array(
265 "custom_{$customFieldId}" => "This is a test field",
266 "custom_{$customFieldId3}" => "label1",
267 "custom_{$customFieldId4}" => "label1",
268 "custom_{$customFieldId5}" => "label1",
269 "custom_{$customFieldId6}" => "label1",
270 "custom_{$customFieldId7}" => "label1",
271 "custom_{$customFieldId8}" => "label1",
272 "custom_{$customFieldId1}" => 1,
273 "custom_{$customFieldId2}" => 12345,
274 "custom_{$customFieldId9}" => 123456,
275 "custom_{$customFieldId10}" => "2009-12-31",
276 ),
277 ),
278 'customFields' => array(
279 $customField => 'This is a test field',
280 $customField3 => 'label1',
281 $customField4 => 'label1',
282 $customField5 => 'label1',
283 $customField6 => 'label1',
284 $customField7 => 'label1',
285 $customField8 => 'label1',
286 $customField1 => '1',
287 $customField2 => '12345',
288 $customField9 => '123,456.00',
289 //CRM-16068 -- changing assertion to match the date format selected during custom field creation.
290 $customField10 => '2009-12-31',
291 ),
292 );
293 }
294
295 /**
296 * @param string $customFieldName
297 * @param $type
298 *
299 * @return array
300 */
301 public function _createMultipleValueCustomField($customFieldName, $type) {
302 $this->type('label', $customFieldName);
303 $this->select("data_type[0]", "value=0");
304 $this->select("data_type[1]", "value=" . $type);
305 $this->type("option_label_1", "label1");
306 $this->type("option_value_1", "label1");
307 $this->type("option_label_2", "label2");
308 $this->type("option_value_2", "label2");
309
310 // clicking save
311 $this->click('_qf_Field_done-bottom');
312 $this->waitForElementPresent('newCustomField');
313 $this->waitForText('crm-notification-container', "Custom field '{$customFieldName}' has been saved.");
314 $this->assertTrue($this->isTextPresent($customFieldName), 'Missing text: ' . $customFieldName);
315 $this->waitForAjaxContent();
316 $customFieldId = explode('&id=', $this->getAttribute("xpath=//div[@id='field_page']//table/tbody//tr/td/div[text()='$customFieldName']/../../td[8]/span/a@href"));
317 $customFieldId = $customFieldId[1];
318 return $customFieldId;
319 }
320
321 }