version fixes
[civicrm-core.git] / tests / phpunit / WebTest / Member / OnlineAutoRenewMembershipGCTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
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 'CiviTest/CiviSeleniumTestCase.php';
28
29 /**
30 * Class WebTest_Member_OnlineAutoRenewMembershipGCTest
31 */
32 class WebTest_Member_OnlineAutoRenewMembershipGCTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testOnlineAutoRenewMembershipAnonymous() {
39 //configure membership signup page.
40 $pageId = $this->_configureMembershipPage();
41
42 //now do the test membership signup.
43 $this->openCiviPage('contribute/transact', "reset=1&action=preview&id={$pageId}", "_qf_Main_upload-bottom");
44
45 $this->click("xpath=//div[@class='crm-section membership_amount-section']/div[2]/div[2]/span/label/span[1][contains(text(),'Student')]");
46 $this->click("auto_renew");
47
48 $firstName = 'John';
49 $lastName = 'Smith_' . substr(sha1(rand()), 0, 7);
50 $this->type('email-5', "{$lastName}@example.com");
51
52 $this->clickLink("_qf_Main_upload-bottom", "_qf_Confirm_next_checkout");
53
54 $text = 'I want this membership to be renewed automatically every 1 year(s).';
55 $this->assertElementContainsText('css=div.display-block', $text, 'Missing text: ' . $text);
56
57 $this->click("_qf_Confirm_next_checkout");
58 // Because it tends to cause problems, all uses of sleep() must be justified in comments
59 // Sleep should never be used for wait for anything to load from the server
60 // Justification for this instance: FIXME
61 sleep(5);
62
63 // FIXME: By this time pending records has already been created. Formatting for external page (google checkout in this case)
64
65 // has changed a bit. No point in adding test for external page as we 'll test with fake transactions.
66 }
67
68 public function testOnlineAutoRenewMembershipAuthenticated() {
69 //configure membership signup page.
70 $pageId = $this->_configureMembershipPage();
71
72 $this->webtestLogin();
73 $this->waitForPageToLoad($this->getTimeoutMsec());
74
75 //now do the test membership signup.
76 $this->openCiviPage('contribute/transact', "reset=1&action=preview&id={$pageId}", "_qf_Main_upload-bottom");
77 $this->click("xpath=//div[@class='crm-section membership_amount-section']/div[2]/div[2]/span/label/span[1][contains(text(),'Student')]");
78
79 $this->click("auto_renew");
80
81 $firstName = 'John';
82 $lastName = 'Smith_' . substr(sha1(rand()), 0, 7);
83 $this->type('email-5', "{$lastName}@example.com");
84
85 $this->clickLink("_qf_Main_upload-bottom", "_qf_Confirm_next_checkout");
86
87 $text = 'I want this membership to be renewed automatically every 1 year(s).';
88 $this->assertElementContainsText('css=div.display-block', $text, 'Missing text: ' . $text);
89
90 $this->click("_qf_Confirm_next_checkout");
91 // Because it tends to cause problems, all uses of sleep() must be justified in comments
92 // Sleep should never be used for wait for anything to load from the server
93 // Justification for this instance: FIXME
94 sleep(5);
95
96 // FIXME: By this time pending records has already been created. Formatting for external page (google checkout in this case)
97
98 // has changed a bit. No point in adding test for external page as we 'll test with fake transactions.
99 }
100
101 /**
102 * @return null
103 */
104 public function _configureMembershipPage() {
105 static $pageId = NULL;
106
107 if (!$pageId) {
108 $this->webtestLogin();
109
110 //add payment processor.
111 $hash = substr(sha1(rand()), 0, 7);
112 $rand = 2 * rand(2, 50);
113 $processorName = "Webtest Auto Renew Google Checkout" . $hash;
114 $this->webtestAddPaymentProcessor($processorName, 'Google_Checkout');
115
116 // -- start updating membership types
117 $this->openCiviPage('admin/member/membershipType/add', 'action=update&id=1&reset=1');
118
119 $this->waitForElementPresent("xpath=//div[@id='membership_type_form']//table/tbody/tr[6]/td/label[contains(text(), 'Auto-renew Option')]/../../td[2]/label[contains(text(), 'Give option, but not required')]");
120 $this->click("xpath=//div[@id='membership_type_form']//table/tbody/tr[6]/td/label[contains(text(), 'Auto-renew Option')]/../../td[2]/label[contains(text(), 'Give option, but not required')]");
121
122 $this->type("duration_interval", "1");
123 $this->select("duration_unit", "label=year");
124
125 $this->click("_qf_MembershipType_upload-bottom");
126 $this->waitForPageToLoad($this->getTimeoutMsec());
127
128 $this->openCiviPage('admin/member/membershipType/add', 'action=update&id=2&reset=1');
129
130 $this->waitForElementPresent("xpath=//div[@id='membership_type_form']//table/tbody/tr[6]/td/label[contains(text(), 'Auto-renew Option')]/../../td[2]/label[contains(text(), 'Give option, but not required')]");
131 $this->click("xpath=//div[@id='membership_type_form']//table/tbody/tr[6]/td/label[contains(text(), 'Auto-renew Option')]/../../td[2]/label[contains(text(), 'Give option, but not required')]");
132
133 $this->type("duration_interval", "1");
134 $this->select("duration_unit", "label=year");
135
136 $this->click("_qf_MembershipType_upload-bottom");
137 $this->waitForPageToLoad($this->getTimeoutMsec());
138
139 // create contribution page with randomized title and default params
140 $amountSection = FALSE;
141 $payLater = TRUE;
142 $onBehalf = FALSE;
143 $pledges = FALSE;
144 $recurring = TRUE;
145 $membershipTypes = array(
146 array('id' => 1, 'auto_renew' => 1),
147 array('id' => 2, 'auto_renew' => 1),
148 );
149 $memPriceSetId = NULL;
150 $friend = TRUE;
151 $profilePreId = NULL;
152 $profilePostId = NULL;
153 $premiums = TRUE;
154 $widget = TRUE;
155 $pcp = TRUE;
156
157 $contributionTitle = "Title $hash";
158 $pageId = $this->webtestAddContributionPage($hash,
159 $rand,
160 $contributionTitle,
161 array($processorName => 'Google_Checkout'),
162 $amountSection,
163 $payLater,
164 $onBehalf,
165 $pledges,
166 $recurring,
167 $membershipTypes,
168 $memPriceSetId,
169 $friend,
170 $profilePreId,
171 $profilePostId,
172 $premiums,
173 $widget,
174 $pcp,
175 FALSE
176 );
177
178 //make sure we do have required permissions.
179 $permissions = array("edit-1-make-online-contributions", "edit-1-profile-listings-and-forms");
180 $this->changePermissions($permissions);
181
182 // now logout and do membership test that way
183 $this->webtestLogout();
184 }
185
186 return $pageId;
187 }
188
189 }