fix header
[civicrm-core.git] / tests / phpunit / WebTest / Contact / AddressParsingTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 25 */
6a488035 26
6a488035 27require_once 'CiviTest/CiviSeleniumTestCase.php';
e9479dcf
EM
28
29/**
30 * Class WebTest_Contact_AddressParsingTest
31 */
6a488035
TO
32class WebTest_Contact_AddressParsingTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
00be9182 38 public function teststreetAddressParsing() {
6a488035
TO
39 // Logging in.
40 $this->webtestLogin();
41
42 //Go to the URL of Address Setting to enable street address parsing option
43 $this->openCiviPage('admin/setting/preferences/address', 'reset=1');
44
45 //check the street address parsing is already enabled
46 if (!$this->isChecked("address_options[13]")) {
47 $this->click("address_options[13]");
2cd85795 48 $this->clickLink("_qf_Address_next");
6a488035
TO
49 }
50
51 // Go to the URL to create an Individual contact.
52 $this->openCiviPage('contact/add', array('reset' => 1, 'ct' => "Individual"));
53
54 //contact details section
55 $firstName = "John" . substr(sha1(rand()), 0, 7);
56 $lastName = "Smith" . substr(sha1(rand()), 0, 7);
57
2cd85795 58 //fill in name
6a488035 59 $this->type("first_name", $firstName);
6a488035
TO
60 $this->type("last_name", $lastName);
61
62 //address section
63 $this->click("addressBlock");
64 $this->waitForElementPresent("address_1_street_address");
65
66 //fill in address 1
67 $this->click("//div[@id='addressBlockId']/div[1]");
68 $this->type("address_1_street_address", "121A Sherman St. Apt. 12");
69 $this->type("address_1_city", "Dumfries");
70 $this->type("address_1_postal_code", "1234");
71 $this->select("address_1_state_province_id", "value=1019");
72 $this->type("address_1_geo_code_1", "1234");
73 $this->type("address_1_geo_code_2", "5678");
74
75 //fill in address 2
76 $this->click("//div[@id='addMoreAddress1']/a/span");
77 $this->waitForElementPresent("address_2_street_address");
78 $this->type("address_2_street_address", "121 Sherman Street #15");
fb93fc39 79 $this->waitForElementPresent("address_2_city");
6a488035
TO
80 $this->type("address_2_city", "Birmingham");
81 $this->type("address_2_postal_code", "3456");
82 $this->select("address_2_state_province_id", "value=1002");
83 $this->type("address_2_geo_code_1", "2678");
84 $this->type("address_2_geo_code_2", "1456");
85
86 //fill in address 3
87 $this->click("//div[@id='addMoreAddress2']/a/span");
88 $this->waitForElementPresent("address_3_street_address");
89 $this->type("address_3_street_address", "121 Sherman Rd Unit 155");
90 $this->type("address_3_city", "Birmingham");
91 $this->type("address_3_postal_code", "3456");
92 $this->select("address_3_state_province_id", "value=1002");
93
94 //fill in address 4
95 $this->click("//div[@id='addMoreAddress3']/a/span");
96 $this->waitForElementPresent("address_4_street_address");
97 $this->type("address_4_street_address", "121 SW Sherman Way Suite 15");
fb93fc39 98 $this->waitForElementPresent("address_4_city");
6a488035
TO
99 $this->type("address_4_city", "Birmingham");
100 $this->type("address_4_postal_code", "5491");
86797006 101 $this->assertSelected('address_4_country_id', "UNITED STATES");
6a488035
TO
102 $this->select("address_4_state_province_id", "value=1002");
103
104 // Store location type of each address
105 for ($i = 1; $i <= 4; ++$i) {
106 $location[$this->getSelectedLabel("address_{$i}_location_type_id")] = $i;
107 }
108
2cd85795
CW
109 // Submit form
110 $this->clickLink("_qf_Contact_upload_view");
111 $this->waitForText('crm-notification-container', "{$firstName} {$lastName}");
6a488035 112
2cd85795
CW
113 //Get the ids of newly created contact
114 $contactId = $this->urlArg('cid');
6a488035
TO
115
116 //Go to the url of edit contact
117 $this->openCiviPage('contact/add', array('reset' => 1, 'action' => 'update', 'cid' => $contactId), 'addressBlock');
118 $this->click("addressBlock");
119 $this->click("//div[@id='addressBlockId']/div[1]");
6a488035
TO
120
121 // Match addresses by location type since the order may have changed
122 for ($i = 1; $i <= 4; ++$i) {
2cd85795 123 $this->waitForElementPresent("address_{$i}_street_address");
6a488035
TO
124 $address[$i] = $location[$this->getSelectedLabel("address_{$i}_location_type_id")];
125 // Open "Edit Address Elements"
cfa3419f
RK
126 $this->waitForElementPresent('addressBlockId');
127 $this->click('addressBlockId');
128 $this->click("//table[@id='address_table_{$i}']//a[text()='Edit Address Elements']");
6a488035
TO
129 }
130
2cd85795 131 //verify all the address fields were parsed correctly
6a488035
TO
132 $verifyData = array(
133 1 => array(
134 'street_number' => '121A',
135 'street_name' => 'Sherman St.',
136 'street_unit' => 'Apt. 12',
137 ),
138 2 => array(
139 'street_number' => '121',
3df62fb8 140 'street_name' => 'Sherman Street',
141 'street_unit' => '#15',
6a488035
TO
142 ),
143 3 => array(
144 'street_number' => '121',
145 'street_name' => 'Sherman Rd',
146 'street_unit' => 'Unit 155',
147 ),
148 4 => array(
149 'street_number' => '121',
3df62fb8 150 'street_name' => 'SW Sherman Way',
151 'street_unit' => 'Suite 15',
21dfd5f5 152 ),
6a488035
TO
153 );
154 foreach ($verifyData as $loc => $values) {
155 $num = $address[$loc];
156 foreach ($values as $key => $expectedvalue) {
2cd85795 157 $this->waitForValue("address_{$num}_$key", $expectedvalue);
6a488035
TO
158 }
159 }
160 }
96025800 161
6a488035 162}