Merge pull request #159 from lcdservices/master
[civicrm-core.git] / tests / phpunit / WebTest / Contact / AddressParsingTest.php
CommitLineData
6a488035
TO
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
28require_once 'CiviTest/CiviSeleniumTestCase.php';
29class WebTest_Contact_AddressParsingTest extends CiviSeleniumTestCase {
30
31 protected function setUp() {
32 parent::setUp();
33 }
34
35 function teststreetAddressParsing() {
36 // Logging in.
37 $this->webtestLogin();
38
39 //Go to the URL of Address Setting to enable street address parsing option
40 $this->openCiviPage('admin/setting/preferences/address', 'reset=1');
41
42 //check the street address parsing is already enabled
43 if (!$this->isChecked("address_options[13]")) {
44 $this->click("address_options[13]");
45 $this->click("_qf_Address_next");
46 $this->waitForPageToLoad($this->getTimeoutMsec());
47 }
48
49 // Go to the URL to create an Individual contact.
50 $this->openCiviPage('contact/add', array('reset' => 1, 'ct' => "Individual"));
51
52 //contact details section
53 $firstName = "John" . substr(sha1(rand()), 0, 7);
54 $lastName = "Smith" . substr(sha1(rand()), 0, 7);
55
56 //fill in first name
57 $this->type("first_name", $firstName);
58
59 //fill in last name
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");
79 $this->type("address_2_city", "Birmingham");
80 $this->type("address_2_postal_code", "3456");
81 $this->select("address_2_state_province_id", "value=1002");
82 $this->type("address_2_geo_code_1", "2678");
83 $this->type("address_2_geo_code_2", "1456");
84
85 //fill in address 3
86 $this->click("//div[@id='addMoreAddress2']/a/span");
87 $this->waitForElementPresent("address_3_street_address");
88 $this->type("address_3_street_address", "121 Sherman Rd Unit 155");
89 $this->type("address_3_city", "Birmingham");
90 $this->type("address_3_postal_code", "3456");
91 $this->select("address_3_state_province_id", "value=1002");
92
93 //fill in address 4
94 $this->click("//div[@id='addMoreAddress3']/a/span");
95 $this->waitForElementPresent("address_4_street_address");
96 $this->type("address_4_street_address", "121 SW Sherman Way Suite 15");
97 $this->type("address_4_city", "Birmingham");
98 $this->type("address_4_postal_code", "5491");
99 $this->assertTrue($this->isTextPresent("- select - United States"));
100 $this->select("address_4_state_province_id", "value=1002");
101
102 // Store location type of each address
103 for ($i = 1; $i <= 4; ++$i) {
104 $location[$this->getSelectedLabel("address_{$i}_location_type_id")] = $i;
105 }
106
107 // Clicking save.
108 $this->click("_qf_Contact_upload_view");
109 $this->waitForPageToLoad($this->getTimeoutMsec());
110 $this->assertTrue($this->isTextPresent("{$firstName} {$lastName} has been created."));
111
112 //Get the is of newly created contact
113 $matches = array();
114 preg_match('/id=([0-9]+)/', $this->getLocation(), $matches);
115 $contactId = $matches[1];
116
117 //Go to the url of edit contact
118 $this->openCiviPage('contact/add', array('reset' => 1, 'action' => 'update', 'cid' => $contactId), 'addressBlock');
119 $this->click("addressBlock");
120 $this->click("//div[@id='addressBlockId']/div[1]");
121 $this->waitForElementPresent("address_1_street_address");
122 $this->waitForElementPresent("address_4_street_address");
123
124 // Match addresses by location type since the order may have changed
125 for ($i = 1; $i <= 4; ++$i) {
126 $address[$i] = $location[$this->getSelectedLabel("address_{$i}_location_type_id")];
127 // Open "Edit Address Elements"
128 $this->click("//table[@id='address_{$i}']//a[@href='#']");
129 }
130
131 //verify all the address fields whether parsed correctly
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',
140 'street_name' => 'Sherman Street',
141 'street_unit' => '#15',
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',
150 'street_name' => 'SW Sherman Way',
151 'street_unit' => 'Suite 15',
152 )
153 );
154 foreach ($verifyData as $loc => $values) {
155 $num = $address[$loc];
156 foreach ($values as $key => $expectedvalue) {
157 $actualvalue = $this->getValue("address_{$num}_$key");
158 $this->assertEquals($expectedvalue, $actualvalue);
159 }
160 }
161 }
162}
163
164