Merge pull request #10379 from seanmadsen/CRM-20301
[civicrm-core.git] / tests / phpunit / WebTest / Contact / AddCmsUserTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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_AddCmsUserTest
31 */
32 class WebTest_Contact_AddCmsUserTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testAuthenticAddUser() {
39
40 $this->webtestLogin('admin');
41
42 $this->open($this->sboxPath . 'admin/people/create');
43
44 $this->waitForElementPresent('edit-submit');
45
46 $name = 'TestUserAuthenticated' . substr(sha1(rand()), 0, 4);
47 $this->type('edit-name', $name);
48
49 $emailId = substr(sha1(rand()), 0, 7) . '@web.com';
50 $this->type('edit-mail', $emailId);
51 $this->type('edit-pass-pass1', 'Test12345');
52 $this->type('edit-pass-pass2', 'Test12345');
53
54 //Add profile Details
55 $firstName = 'Ma' . substr(sha1(rand()), 0, 4);
56 $lastName = 'An' . substr(sha1(rand()), 0, 7);
57 $this->waitForElementPresent('first_name');
58 $this->type('first_name', $firstName);
59 $this->type('last_name', $lastName);
60
61 //Address Details
62 $this->type('street_address-1', '902C El Camino Way SW');
63 $this->type('city-1', 'Dumfries');
64 $this->type('postal_code-1', '1234');
65 $this->select('state_province-1', 'value=1019');
66
67 $this->click('edit-submit');
68 $this->waitForPageToLoad($this->getTimeoutMsec());
69 }
70
71 public function testAnonymousAddUser() {
72 // Make sure Drupal account settings allow visitors to register for account w/o admin approval
73 // login as admin
74 $this->webtestLogin('admin');
75 $this->open($this->sboxPath . 'admin/config/people/accounts');
76 $this->waitForElementPresent('edit-submit');
77
78 $this->click('edit-user-register-1');
79 $this->check('edit-user-email-verification');
80 $this->click('edit-submit');
81 $this->waitForPageToLoad($this->getTimeoutMsec());
82 // logout
83 $this->webtestLogout();
84
85 $this->open($this->sboxPath . 'user/register');
86
87 $this->waitForElementPresent('edit-submit');
88 $name = 'TestUserAnonymous' . substr(sha1(rand()), 0, 7);
89 $this->type('edit-name', $name);
90 $emailId = substr(sha1(rand()), 0, 7) . '@web.com';
91 $this->type('edit-mail', $emailId);
92
93 //Add profile Details
94 $firstName = 'Ma' . substr(sha1(rand()), 0, 4);
95 $lastName = 'An' . substr(sha1(rand()), 0, 7);
96 $this->waitForElementPresent('first_name');
97 $this->type('first_name', $firstName);
98 $this->type('last_name', $lastName);
99
100 //Address Details
101 $this->type('street_address-1', '902C El Camino Way SW');
102 $this->type('city-1', 'Dumfries');
103 $this->type('postal_code-1', '1234');
104 $this->assertTrue($this->isTextPresent('UNITED STATES'));
105 $this->select('state_province-1', 'value=1019');
106
107 $this->click('edit-submit');
108 $this->waitForPageToLoad($this->getTimeoutMsec());
109
110 // In case the site is set up to login immediately upon registration
111 $this->webtestLogout();
112
113 $this->webtestLogin();
114
115 $this->openCiviPage('contact/search', 'reset=1', '_qf_Basic_refresh');
116 $this->type('sort_name', $emailId);
117 $this->click('_qf_Basic_refresh');
118 $this->waitForPageToLoad($this->getTimeoutMsec());
119
120 $this->assertElementContainsText('css=.crm-search-results', $emailId);
121 $this->assertElementContainsText('css=.crm-search-results', $lastName . ', ' . $firstName);
122 $this->assertElementContainsText('css=.crm-search-results', '902C El Camino Way SW');
123 $this->assertElementContainsText('css=.crm-search-results', 'Dumfries');
124 $this->assertElementContainsText('css=.crm-search-results', '1234');
125 }
126
127 }