Merge pull request #3339 from yashodha/CRM-14664
[civicrm-core.git] / tests / phpunit / WebTest / Contact / ProfileChecksumTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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_ProfileChecksumTest
31 */
32 class WebTest_Contact_ProfileChecksumTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 function testProfileChecksum() {
39 $this->webtestLogin('admin');
40
41 // Profile fields.
42 $fields = array(
43 'first_name' => array(
44 'type' => 'Individual',
45 'label' => 'First Name',
46 'default_value' => substr(sha1(rand()), 0, 7),
47 'update_value' => substr(sha1(rand()), 0, 7),
48 'element_name' => 'first_name',
49 ),
50 'last_name' => array(
51 'type' => 'Individual',
52 'label' => 'Last Name',
53 'default_value' => substr(sha1(rand()), 0, 7),
54 'update_value' => substr(sha1(rand()), 0, 7),
55 'element_name' => 'last_name',
56 ),
57 'email' => array(
58 'type' => 'Contact',
59 'label' => 'Email',
60 'location' => 0,
61 'default_value' => substr(sha1(rand()), 0, 5) . '@example.com',
62 'update_value' => substr(sha1(rand()), 0, 7) . '@example.com',
63 'element_name' => 'email-Primary',
64 ),
65 'city' => array(
66 'type' => 'Contact',
67 'label' => 'City',
68 'location' => 0,
69 'default_value' => substr(sha1(rand()), 0, 7),
70 'update_value' => substr(sha1(rand()), 0, 7),
71 'element_name' => 'city-Primary',
72 ),
73 'state_province' => array(
74 'type' => 'Contact',
75 'label' => 'State',
76 'location' => 0,
77 'default_value' => '1004',
78 'update_value' => '1031',
79 'update_value_label' => 'NY',
80 'element_name' => 'state_province-Primary',
81 'html_type' => 'select',
82 ),
83 'country' => array(
84 'type' => 'Contact',
85 'label' => 'Country',
86 'location' => 0,
87 'default_value' => '1228',
88 'update_value' => '1228',
89 'update_value_label' => 'United States',
90 'element_name' => 'country-Primary',
91 'html_type' => 'select',
92 ),
93 );
94
95 // Create a contact.
96 $this->webtestAddContact($fields['first_name']['default_value'], $fields['last_name']['default_value'], $fields['email']['default_value']);
97
98 // Get contact id from url.
99 $contactId = $this->urlArg('cid');
100
101 // Create profile for contact
102 $profileName = "Profile_" . substr(sha1(rand()), 0, 7);
103 $profileId = $this->_testCreateContactProfile($fields, $profileName);
104
105 // Check for profile create/edit permissions.
106 $permission = array('edit-1-profile-edit', 'edit-1-profile-create', 'edit-1-access-all-custom-data', 'edit-1-edit-all-contacts');
107 $this->changePermissions($permission);
108
109 // Get checksum of the newly created contact.
110 $cs = CRM_Contact_BAO_Contact_Utils::generateChecksum($contactId);
111
112 // logout.
113 $this->webtestLogout();
114
115 // Go to edit profile page of the created contact.
116 $this->openCiviPage("profile/edit", "id={$contactId}&gid={$profileId}&reset=1&cs={$cs}", NULL);
117 $this->waitForTextPresent($profileName);
118
119 // Check all profile fields, update their values.
120 foreach ($fields as $field) {
121 $this->assertTrue($this->isElementPresent($field['element_name']), "Missing Field: {$field['label']}.");
122 if (isset($field['html_type']) && $field['html_type'] == 'select') {
123 $this->select($field['element_name'], "value={$field['update_value']}");
124 }
125 else {
126 $this->type($field['element_name'], $field['update_value']);
127 }
128 }
129 // Save profile.
130 $this->click("_qf_Edit_next");
131 $this->waitForPageToLoad(2 * $this->getTimeoutMsec());
132
133 // Check profile view page.
134 $this->waitForTextPresent($profileName);
135
136 // Check updated values of all fields.
137 $checkFieldValues = array();
138 foreach ($fields as $field) {
139 $checkFieldValues[] = isset($field['update_value_label']) ? $field['update_value_label'] : $field['update_value'];
140 }
141 $this->assertStringsPresent($checkFieldValues);
142 }
143
144 /**
145 * @param $fields
146 * @param $profileName
147 *
148 * @return null
149 */
150 function _testCreateContactProfile($fields, $profileName) {
151 // Add new profile.
152 $this->openCiviPage("admin/uf/group", "reset=1");
153 $this->click('newCiviCRMProfile-top');
154 $this->waitForElementPresent('_qf_Group_next-top');
155
156 // Name of the profile.
157 $this->type('title', $profileName);
158 $this->click('uf_group_type_Profile');
159 $this->click('_qf_Group_next-top');
160 $this->waitForPageToLoad($this->getTimeoutMsec());
161 $profileId = $this->urlArg('gid');
162
163 // Add field to the profile.
164 foreach ($fields as $key => $values) {
165 $this->openCiviPage("admin/uf/group/field/add", "reset=1&action=add&gid=$profileId");
166
167 $this->select("field_name[0]", "value={$values['type']}");
168 // Because it tends to cause problems, all uses of sleep() must be justified in comments
169 // Sleep should never be used for wait for anything to load from the server
170 // Justification for this instance: FIXME
171 sleep(1);
172 $this->select("field_name[1]", "value={$key}");
173 if (isset($values['location'])) {
174 // Because it tends to cause problems, all uses of sleep() must be justified in comments
175 // Sleep should never be used for wait for anything to load from the server
176 // Justification for this instance: FIXME
177 sleep(1);
178 $this->select("field_name[2]", "value={$values['location']}");
179 }
180 $this->type("label", $values['label']);
181 $this->click('_qf_Field_next-top');
182 $this->waitForPageToLoad($this->getTimeoutMsec());
183 }
184 return $profileId;
185 }
186 }
187