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