Merge pull request #11772 from michaelmcandrew/CRM-21821-respect-nav-item-weight
[civicrm-core.git] / tests / phpunit / WebTest / Contribute / OnlineMultiplePaymentProcessorTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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_Contribute_OnlineMultiplePaymentProcessorTest
31 */
32 class WebTest_Contribute_OnlineMultiplePaymentProcessorTest extends CiviSeleniumTestCase {
33 protected function setUp() {
34 parent::setUp();
35 }
36
37 public function testOnlineMultpiplePaymentProcessor() {
38
39 // Log in using webtestLogin() method
40 $this->webtestLogin();
41
42 $proProcessorName = "Pro " . substr(sha1(rand()), 0, 7);
43 $standardProcessorName = "Standard " . substr(sha1(rand()), 0, 7);
44 $donationPageTitle = "Donation" . substr(sha1(rand()), 0, 7);
45 $pageId = $this->webtestAddContributionPage($hash = NULL,
46 $rand = NULL,
47 $pageTitle = $donationPageTitle,
48 $processor = array($proProcessorName => 'Dummy', $standardProcessorName => 'PayPal_Standard'),
49 $amountSection = TRUE,
50 $payLater = TRUE,
51 $onBehalf = FALSE,
52 $pledges = TRUE,
53 $recurring = FALSE,
54 $membershipTypes = FALSE,
55 $memPriceSetId = NULL,
56 $friend = FALSE,
57 $profilePreId = 1,
58 $profilePostId = NULL,
59 $premiums = FALSE,
60 $widget = FALSE,
61 $pcp = FALSE,
62 $isAddPaymentProcessor = TRUE,
63 $isPcpApprovalNeeded = FALSE,
64 $isSeparatePayment = FALSE,
65 $honoreeSection = FALSE,
66 $allowOtherAmmount = TRUE
67 );
68
69 $this->openCiviPage("contribute/transact", "reset=1&action=preview&id=$pageId", NULL);
70 $this->waitForTextPresent($donationPageTitle);
71
72 $firstName = 'Ma' . substr(sha1(rand()), 0, 4);
73 $lastName = 'An' . substr(sha1(rand()), 0, 7);
74
75 $this->type("email-5", $firstName . "@example.com");
76
77 $this->type("first_name", $firstName);
78 $this->type("last_name", $lastName);
79
80 $this->type("xpath=//div[@class='crm-section other_amount-section']//div/input", 100);
81
82 $streetAddress = "100 Main Street";
83 $this->type("street_address-1", $streetAddress);
84 $this->type("city-1", "San Francisco");
85 $this->type("postal_code-1", "94117");
86 $this->select("country-1", "value=1228");
87 $this->waitForElementPresent("state_province-1");
88 $this->select("state_province-1", "value=1001");
89
90 $this->assertTrue($this->isTextPresent("Payment Method"));
91 $this->waitForElementPresent("xpath=//label[text() = '{$proProcessorName}']/preceding-sibling::input[1]");
92 $this->click("xpath=//label[text() = '{$proProcessorName}']/preceding-sibling::input[1]");
93
94 $this->waitForElementPresent("credit_card_type");
95
96 //Credit Card Info
97 $this->select("credit_card_type", "value=Visa");
98 $this->type("credit_card_number", "4111111111111111");
99 $this->type("cvv2", "000");
100 $this->select("credit_card_exp_date[M]", "value=1");
101 $this->select("credit_card_exp_date[Y]", "value=2020");
102
103 //Billing Info
104 $this->type("billing_first_name", $firstName . "billing");
105 $this->type("billing_last_name", $lastName . "billing");
106 $this->type("billing_street_address-5", "15 Main St.");
107 $this->type(" billing_city-5", "San Jose");
108 $this->select("billing_country_id-5", "value=1228");
109 $this->select("billing_state_province_id-5", "value=1004");
110 $this->type("billing_postal_code-5", "94129");
111 $this->clickLink("_qf_Main_upload-bottom", "_qf_Confirm_next-bottom");
112
113 $this->click("_qf_Confirm_next-bottom");
114 $this->waitForPageToLoad($this->getTimeoutMsec());
115
116 //login to check contribution
117
118 }
119
120 public function testOnlineMultiplePaymentProcessorWithPayLater() {
121
122 // Log in using webtestLogin() method
123 $this->webtestLogin();
124
125 $proProcessorName = "Pro " . substr(sha1(rand()), 0, 7);
126 $standardProcessorName = "Standard " . substr(sha1(rand()), 0, 7);
127 $donationPageTitle = "Donation" . substr(sha1(rand()), 0, 7);
128 $hash = substr(sha1(rand()), 0, 7);
129 $pageId = $this->webtestAddContributionPage($hash,
130 $rand = NULL,
131 $pageTitle = $donationPageTitle,
132 $processor = array($proProcessorName => 'Dummy'),
133 $amountSection = TRUE,
134 $payLater = TRUE,
135 $onBehalf = FALSE,
136 $pledges = TRUE,
137 $recurring = FALSE,
138 $membershipTypes = FALSE,
139 $memPriceSetId = NULL,
140 $friend = FALSE,
141 $profilePreId = 1,
142 $profilePostId = NULL,
143 $premiums = FALSE,
144 $widget = FALSE,
145 $pcp = FALSE,
146 $isAddPaymentProcessor = TRUE,
147 $isPcpApprovalNeeded = FALSE,
148 $isSeparatePayment = FALSE,
149 $honoreeSection = FALSE,
150 $allowOtherAmount = TRUE
151 );
152
153 $this->openCiviPage("contribute/transact", "reset=1&action=preview&id=$pageId", NULL);
154 $this->waitForTextPresent($donationPageTitle);
155
156 $firstName = 'Ma' . substr(sha1(rand()), 0, 4);
157 $lastName = 'An' . substr(sha1(rand()), 0, 7);
158
159 $this->type("email-5", $firstName . "@example.com");
160
161 $this->type("first_name", $firstName);
162 $this->type("last_name", $lastName);
163
164 $this->type("xpath=//div[@class='crm-section other_amount-section']//div/input", 100);
165
166 $streetAddress = "100 Main Street";
167 $this->type("street_address-1", $streetAddress);
168 $this->type("city-1", "San Francisco");
169 $this->type("postal_code-1", "94117");
170 $this->select("country-1", "value=1228");
171 $this->waitForElementPresent("state_province-1");
172 $this->select("state_province-1", "value=1001");
173
174 $this->assertTrue($this->isTextPresent("Payment Method"));
175 $payLaterText = "Pay later label $hash";
176 $xpath = "xpath=//label[text() = '{$payLaterText}']/preceding-sibling::input[1]";
177 $this->click($xpath);
178
179 $this->waitForAjaxContent();
180 $this->click("_qf_Main_upload-bottom");
181 $this->waitForElementPresent("xpath=//div[@class='bold pay_later_receipt-section']");
182
183 $payLaterInstructionsText = "Pay later instructions $hash";
184 $this->assertElementContainsText("xpath=//div[@class='bold pay_later_receipt-section']/p", $payLaterInstructionsText);
185 $this->click("_qf_Confirm_next-bottom");
186
187 $this->waitForElementPresent("xpath=//div[@class='help']/div/p");
188 $this->assertElementContainsText("xpath=//div[@class='help']/div/p", $payLaterInstructionsText);
189
190 //login to check contribution
191 $this->openCiviPage("contribute/search", "reset=1", 'contribution_date_low');
192 $this->waitForAjaxContent();
193 $this->type('sort_name', "$lastName $firstName");
194 $this->check('contribution_test');
195 $this->click('_qf_Search_refresh');
196 $this->waitForElementPresent("xpath=//table[@class='selector row-highlight']/tbody/tr[1]/td[10]/span//a[text()='View']");
197 $this->click("xpath=//table[@class='selector row-highlight']/tbody/tr[1]/td[10]/span//a[text()='View']");
198 $this->waitForElementPresent("_qf_ContributionView_cancel-bottom");
199 $expected = array(
200 'From' => "{$firstName} {$lastName}",
201 'Financial Type' => 'Donation',
202 'Contribution Status' => 'Pending : Pay Later',
203 );
204 $this->webtestVerifyTabularData($expected);
205 $this->click('_qf_ContributionView_cancel-bottom');
206 }
207
208 }