Refactor webtestNewDialogContact and other webtest cleanup
[civicrm-core.git] / tests / phpunit / WebTest / Contribute / StandaloneAddTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06a1bc01 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06a1bc01 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
6a488035 27require_once 'CiviTest/CiviSeleniumTestCase.php';
e9479dcf
EM
28
29/**
30 * Class WebTest_Contribute_StandaloneAddTest
31 */
6a488035
TO
32class WebTest_Contribute_StandaloneAddTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 function testStandaloneContributeAdd() {
6a488035
TO
39 $this->webtestLogin();
40
41 // Create a contact to be used as soft creditor
42 $softCreditFname = substr(sha1(rand()), 0, 7);
43 $softCreditLname = substr(sha1(rand()), 0, 7);
44 $this->webtestAddContact($softCreditFname, $softCreditLname, FALSE);
45
46 // Add new Financial Account
47 $orgName = 'Alberta '.substr(sha1(rand()), 0, 7);
48 $financialAccountTitle = 'Financial Account '.substr(sha1(rand()), 0, 4);
49 $financialAccountDescription = "{$financialAccountTitle} Description";
50 $accountingCode = 1033;
51 $financialAccountType = 'Asset';
52 $taxDeductible = FALSE;
53 $isActive = FALSE;
54 $isTax = TRUE;
55 $taxRate = 9.9999999;
56 $isDefault = FALSE;
76e86fd8 57
6a488035
TO
58 //Add new organisation
59 if($orgName) {
60 $this->webtestAddOrganization($orgName);
61 }
76e86fd8 62
6a488035
TO
63 $this->_testAddFinancialAccount($financialAccountTitle,
64 $financialAccountDescription,
65 $accountingCode,
66 $orgName,
67 $financialAccountType,
68 $taxDeductible,
69 $isActive,
70 $isTax,
71 $taxRate,
72 $isDefault
73 );
74
42daf119 75 $this->openCiviPage("contribute/add", "reset=1&context=standalone", "_qf_Contribution_upload");
6a488035 76
6a488035 77 // create new contact using dialog
80f3b91d 78 $contact = $this->createDialogContact();
76e86fd8 79
6a488035
TO
80 // select financial type
81 $this->select("financial_type_id", "value=1");
76e86fd8 82
6a488035
TO
83 // fill in Received Date
84 $this->webtestFillDate('receive_date');
85
86 // source
87 $this->type("source", "Mailer 1");
88
89 // total amount
90 $this->type("total_amount", "100");
91
92 // select payment instrument type = Check and enter chk number
93 $this->select("payment_instrument_id", "value=4");
94 $this->waitForElementPresent("check_number");
95 $this->type("check_number", "check #1041");
ba797227 96 $this->click("is_email_receipt");
16a9c6d8 97 $this->assertTrue($this->isChecked("is_email_receipt"), 'Send Receipt checkbox should be checked.');
6a488035
TO
98 $this->type("trxn_id", "P20901X1" . rand(100, 10000));
99
100 // soft credit
fc2fa8f8 101 $this->webtestFillAutocomplete("{$softCreditLname}, {$softCreditFname}", 's2id_soft_credit_contact_id_1');
102 $this->type("soft_credit_amount_1", "100");
6a488035
TO
103
104 //Custom Data
105 //$this->click('CIVICRM_QFID_3_6');
106
107 //Additional Detail section
108 $this->click("AdditionalDetail");
109 $this->waitForElementPresent("thankyou_date");
110
111 $this->type("note", "This is a test note.");
112 $this->type("non_deductible_amount", "10");
113 $this->type("fee_amount", "0");
114 $this->type("net_amount", "0");
115 $this->type("invoice_id", time());
116 $this->webtestFillDate('thankyou_date');
117
6a488035
TO
118
119 //Premium section
120 $this->click("Premium");
121 $this->waitForElementPresent("fulfilled_date");
122 $this->select("product_name[0]", "label=Coffee Mug ( MUG-101 )");
123 $this->select("product_name[1]", "label=Black");
124 $this->webtestFillDate('fulfilled_date');
125
126 // Clicking save.
127 $this->click("_qf_Contribution_upload");
87fd4550
RK
128 // Ask for confirmation to send a receipt to the contributor on 'is_email_reciept' check
129 $this->assertTrue((bool)preg_match("/^Click OK to save this contribution record AND send a receipt to the contributor now./",$this->getConfirmation()));
130 $this->chooseOkOnNextConfirmation();
6a488035
TO
131 $this->waitForPageToLoad($this->getTimeoutMsec());
132
133 // Is status message correct?
fc2fa8f8 134 $this->waitForText("crm-notification-container", "The contribution record has been saved.");
6a488035
TO
135
136 // verify if Membership is created
fc2fa8f8 137 $this->waitForElementPresent("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035
TO
138
139 //click through to the Membership view screen
fc2fa8f8 140 $this->click("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035
TO
141 $this->waitForElementPresent("_qf_ContributionView_cancel-bottom");
142
143 $expected = array(
144 'Financial Type' => 'Donation',
145 'Total Amount' => '$ 100.00',
146 'Contribution Status' => 'Completed',
147 'Paid By' => 'Check',
148 'Check Number' => 'check #1041',
6a488035
TO
149 );
150
151 foreach ($expected as $label => $value) {
152 $this->verifyText("xpath=id('ContributionView')/div[2]/table[1]/tbody//tr/td[1][text()='$label']/../td[2]", preg_quote($value));
153 }
154
73ec6821 155 // verify if soft credit was created successfully
156 $expected = array(
157 'Soft Credit To' => "{$softCreditFname} {$softCreditLname}",
158 'Amount' => '100.00',
159 );
160
161 foreach ($expected as $value) {
162 $this->verifyText("css=table.crm-soft-credit-listing", preg_quote($value));
163 }
164
165 // go to first soft creditor contact view page
166 $this->click("css=table.crm-soft-credit-listing tbody tr td a");
76e86fd8 167
6a488035
TO
168 // go to contribution tab
169 $this->waitForElementPresent("css=li#tab_contribute a");
170 $this->click("css=li#tab_contribute a");
171 $this->waitForElementPresent("link=Record Contribution (Check, Cash, EFT ...)");
172
173 // verify soft credit details
174 $expected = array(
80f3b91d 175 1 => $contact['display_name'],
fc2fa8f8 176 2 => 'Donation',
177 1 => '100.00',
178 6 => 'Completed',
6a488035
TO
179 );
180 foreach ($expected as $value => $label) {
fc2fa8f8 181 $this->verifyText("xpath=id('Search')/div[2]/table[2]/tbody/tr[1]/td[$value]", preg_quote($label));
6a488035
TO
182 }
183 }
6a488035 184
1f0d8c92
PN
185 function testfinancialTypeSearch() {
186 $this->webtestLogin();
187
188 $financialType = array(
189 'name' => 'Financial type' . substr(sha1(rand()), 0, 7),
190 'is_reserved' => FALSE,
191 'is_deductible' => FALSE,
192 );
4cbe18b8 193
1f0d8c92
PN
194 $this->addeditFinancialType($financialType);
195 $this->addStandaloneContribution($financialType);
196 $this->addStandaloneContribution($financialType);
197
198 $this->openCiviPage("contribute/search", "reset=1", "_qf_Search_refresh");
199 // select group
fc2fa8f8 200 $this->select("financial_type_id", "label={$financialType['name']}");
1f0d8c92
PN
201 $this->clickLink("_qf_Search_refresh");
202 $this->assertElementContainsText("xpath=//div[@id='search-status']/table/tbody/tr[1]/td[1]", "2 Result");
203 $this->assertElementContainsText("xpath=//div[@id='search-status']/table/tbody/tr[1]/td[2]", "Financial Type IN {$financialType['name']}");
4cbe18b8 204
1f0d8c92 205 $this->openCiviPage("contact/search/advanced", "reset=1", "_qf_Advanced_refresh-top");
80f3b91d 206 $this->clickAjaxLink('CiviContribute', "financial_type_id");
4cbe18b8 207
1f0d8c92 208 // select group
fc2fa8f8 209 $this->select("financial_type_id", "label={$financialType['name']}");
1f0d8c92
PN
210 $this->clickLink("_qf_Advanced_refresh-top");
211 $this->assertElementContainsText("xpath=//div[@id='search-status']//table/tbody/tr[1]/td[1]", "2 Contacts");
212 $this->assertElementContainsText("xpath=//div[@id='search-status']//table/tbody/tr[1]/td[2]", "Financial Type IN {$financialType['name']}");
213 }
214
4cbe18b8
EM
215 /**
216 * @param $financialType
217 */
1f0d8c92 218 function addStandaloneContribution($financialType) {
4cbe18b8 219
1f0d8c92
PN
220 $this->openCiviPage("contribute/add", "reset=1&context=standalone", "_qf_Contribution_upload");
221
222 // create new contact using dialog
80f3b91d 223 $this->createDialogContact();
1f0d8c92
PN
224
225 // select financial type
226 $this->select("financial_type_id", "label={$financialType['name']}");
227
228 // fill in Received Date
229 $this->webtestFillDate('receive_date');
230
231 // source
232 $this->type("source", "Mailer 1");
233
234 // total amount
235 $this->type("total_amount", "100");
236
237 // select payment instrument type = Check and enter chk number
238 $this->select("payment_instrument_id", "value=4");
239 $this->waitForElementPresent("check_number");
240 $this->type("check_number", "check #1041");
241
242 $this->type("trxn_id", "P20901X1" . rand(100, 10000));
243
244 //Additional Detail section
245 $this->click("AdditionalDetail");
246 $this->waitForElementPresent("thankyou_date");
247
248 $this->type("note", "This is a test note.");
249 $this->type("non_deductible_amount", "10");
250 $this->type("fee_amount", "0");
251 $this->type("net_amount", "0");
252 $this->type("invoice_id", time());
253 $this->webtestFillDate('thankyou_date');
254
255 // Clicking save.
80f3b91d 256 $this->clickLink("_qf_Contribution_upload");
1f0d8c92
PN
257
258 // Is status message correct?
80f3b91d 259 $this->checkCRMAlert("The contribution record has been saved.");
1f0d8c92
PN
260
261 // verify if Membership is created
fc2fa8f8 262 $this->waitForElementPresent("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[8]/span/a[text()='View']");
1f0d8c92
PN
263
264 //click through to the Membership view screen
fc2fa8f8 265 $this->click("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[8]/span/a[text()='View']");
1f0d8c92
PN
266 $this->waitForElementPresent("_qf_ContributionView_cancel-bottom");
267
268 $expected = array(
269 'Financial Type' => $financialType['name'],
270 'Total Amount' => '$ 100.00',
271 'Contribution Status' => 'Completed',
272 'Paid By' => 'Check',
273 'Check Number' => 'check #1041',
274 );
275
276 foreach ($expected as $label => $value) {
277 $this->verifyText("xpath=id('ContributionView')/div[2]/table[1]/tbody//tr/td[1][text()='$label']/../td[2]", preg_quote($value));
278 }
279 }
280
c4e6d4e8
PJ
281 function testAjaxCustomGroupLoad() {
282 $this->webtestLogin();
283 $triggerElement = array('name' => 'financial_type_id', 'type' => 'select');
284 $customSets = array(
285 array('entity' => 'Contribution', 'subEntity' => 'Donation', 'triggerElement' => $triggerElement),
286 array('entity' => 'Contribution', 'subEntity' => 'Member Dues', 'triggerElement' => $triggerElement)
287 );
288
289 $pageUrl = array('url' => 'contribute/add', 'args' => 'reset=1&action=add&context=standalone');
290 $this->customFieldSetLoadOnTheFlyCheck($customSets, $pageUrl);
291 }
232624b1 292}