Merge pull request #5220 from totten/master-recip-grptype
[civicrm-core.git] / tests / phpunit / WebTest / Event / AdditionalPaymentTest.php
CommitLineData
c5bb67f1
PJ
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
c5bb67f1 5 +--------------------------------------------------------------------+
06a1bc01 6 | Copyright CiviCRM LLC (c) 2004-2014 |
c5bb67f1
PJ
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 +--------------------------------------------------------------------+
d25dd0ee 25 */
c5bb67f1
PJ
26
27require_once 'CiviTest/CiviSeleniumTestCase.php';
e9479dcf
EM
28
29/**
30 * Class WebTest_Event_AdditionalPaymentTest
31 */
c5bb67f1
PJ
32class WebTest_Event_AdditionalPaymentTest extends CiviSeleniumTestCase {
33 protected function setUp() {
34 parent::setUp();
35 }
36
546b78fa
CW
37 /**
38 * CRM-13964 and CRM-13965
39 */
00be9182 40 public function testParticipantParitalPaymentInitiation() {
c5bb67f1
PJ
41 // Log in using webtestLogin() method
42 $this->webtestLogin();
43
44 $firstName = substr(sha1(rand()), 0, 7);
45 $this->webtestAddContact($firstName, 'Anderson', TRUE);
46 $contactName = "Anderson, $firstName";
47 $displayName = "$firstName Anderson";
48
49 $this->openCiviPage("participant/add", "reset=1&action=add&context=standalone", "_qf_Participant_upload-bottom");
50
c5bb67f1
PJ
51 $this->webtestFillAutocomplete($firstName);
52
53 // Select event. Based on label for now.
ed174dea 54 $this->select2('event_id', "Rain-forest Cup Youth Soccer Tournament");
c5bb67f1
PJ
55
56 // Select role
60709d21 57 $this->multiselect2('role_id', array('Volunteer'));
c5bb67f1
PJ
58
59 // Choose Registration Date.
60 // Using helper webtestFillDate function.
61 $this->webtestFillDate('register_date', 'now');
62 $today = date('F jS, Y', strtotime('now'));
c5bb67f1
PJ
63
64 // Select participant status
65 $this->select('status_id', 'value=1');
66
67 // Setting registration source
68 $this->type('source', 'Event Partially Paid Webtest');
69
70 // Since we're here, let's check of screen help is being displayed properly
71 $this->assertTrue($this->isTextPresent('Source for this registration (if applicable).'));
72
73 // Select an event fee
74 $this->waitForElementPresent('priceset');
75
ed174dea 76 $this->click("xpath=//input[@class='crm-form-radio']");
c5bb67f1
PJ
77 sleep(1);
78 // record payment total amount
79 // amount populated after fee selection
80 $amtTotalOwed = (int) $this->getValue('id=total_amount');
81 $this->assertEquals($amtTotalOwed, 800, 'The amount owed doesn\'t match to fee amount selected');
82
83 // now change the amount to lesser amount value
84 $this->type('total_amount', '400');
85
86 // Select payment method = Check and enter chk number
87 $this->select('payment_instrument_id', 'value=4');
88 $this->waitForElementPresent('check_number');
89 $this->type('check_number', '1044');
90
91 // give some time for js to process
e42c089b 92 $this->waitForAjaxContent();
c5bb67f1
PJ
93 $this->verifySelectedLabel("status_id", 'Partially paid');
94
95 // later on change the status
96 $this->select('status_id', 'value=1');
97
98 // Clicking save.
99 // check for proper info message displayed regarding status
100 $this->chooseCancelOnNextConfirmation();
101 $this->click('_qf_Participant_upload-bottom');
6c6e6187 102 $this->assertTrue((bool) preg_match("/Payment amount is less than the amount owed. Expected participant status is 'Partially paid'. Are you sure you want to set the participant status to Registered/", $this->getConfirmation()));
c5bb67f1
PJ
103
104 // select partially paid status again and click on save
105 $this->select('status_id', 'label=Partially paid');
106
107 // Clicking save.
e42c089b 108 $this->clickLink('_qf_Participant_upload-bottom');
c5bb67f1
PJ
109
110 // Is status message correct?
111 $this->waitForText('crm-notification-container', "Event registration for $displayName has been added");
112 $this->waitForElementPresent("xpath=//form[@id='Search']//table//tbody/tr[1]/td[8]/span/a[text()='View']");
113 //click through to the participant view screen
114 $this->click("xpath=//form[@id='Search']//table//tbody/tr[1]/td[8]/span/a[text()='View']");
115 $this->waitForElementPresent('_qf_ParticipantView_cancel-bottom');
116
117 $this->webtestVerifyTabularData(
118 array(
119 'Event' => 'Rain-forest Cup Youth Soccer Tournament',
44a0d8ea 120 'Participant Role' => 'Volunteer',
c5bb67f1
PJ
121 'Status' => 'Partially paid',
122 'Event Source' => 'Event Partially Paid Webtest',
123 )
124 );
125
dfbeebc5
PJ
126 // check the fee amount and contribution amount
127 $this->_checkPaymentInfoTable(800.00, 400.00);
128 $balance = 800.00 - 400.00;
c5bb67f1 129 //click through to the contribution view screen
ed174dea 130 $this->click("xpath=id('ParticipantView')/div[2]/table[@class='selector row-highlight']/tbody/tr[1]/td[8]/span/a[text()='View']");
c5bb67f1
PJ
131 $this->waitForElementPresent('_qf_ContributionView_cancel-bottom');
132
133 $this->webtestVerifyTabularData(
134 array(
135 'From' => $displayName,
136 'Financial Type' => 'Event Fee',
137 'Total Amount' => '$ 800.00',
138 'Contribution Status' => 'Partially paid',
139 'Paid By' => 'Check',
140 'Check Number' => '1044',
141 )
142 );
dfbeebc5 143
e42c089b 144 $this->clickAjaxLink('_qf_ContributionView_cancel-top');
ed174dea 145 $this->waitForElementPresent("xpath=id('ParticipantView')/div[2]/table[@class='selector row-highlight']/tbody/tr[1]/td[8]/span/a[text()='View']");
dfbeebc5
PJ
146 // make additional payment
147 // 1 - check for links presence on participant view and edit page
ed174dea 148 $this->assertElementPresent("xpath=id('Search')/table[@class='selector row-highlight']/tbody/tr[1]/td[8]/span[2]/ul/li[2]/a[text()='Record Payment']");
149 $this->click("xpath=id('Search')/table[@class='selector row-highlight']/tbody/tr[1]/td[8]/span/a[text()='View']");
dfbeebc5 150 $this->waitForElementPresent("xpath=id('ParticipantView')");
e42c089b 151 $this->waitForElementPresent("xpath=id('ParticipantView')//td[@id='payment-info']/a/span[contains(text(), 'Record Payment')]");
dfbeebc5
PJ
152
153 $this->click("xpath=id('ParticipantView')//div[@class='action-link']/div/a/span[contains(text(), 'Edit')]");
154 $this->waitForElementPresent("xpath=id('Participant')");
e42c089b
CW
155 $this->waitForElementPresent("xpath=id('Participant')//td[@id='payment-info']//a/span[contains(text(), 'Record Payment')]");
156 $this->clickLinkSuppressPopup("xpath=id('Participant')//td[@id='payment-info']/a/span[contains(text(), 'Record Payment')]/../", 'AdditionalPayment');
dfbeebc5 157
dfbeebc5 158 // verify balance
44a0d8ea 159 $text = $this->getText("xpath=id('AdditionalPayment')/div[2]//table/tbody/tr[3]/td[2]");
6c6e6187 160 $this->assertTrue((bool) preg_match("/{$balance}/", $text));
dfbeebc5
PJ
161
162 // check form rule error
163 $errorBalance = $balance + 1;
164 $this->type('total_amount', $errorBalance);
165 $this->select('payment_instrument_id', 'label=Cash');
166 $this->click('_qf_AdditionalPayment_upload-bottom');
167 $this->waitForText("xpath=//span[@id='totalAmount']/span", 'Payment amount cannot be greater than owed amount');
168 $this->type('total_amount', $balance);
169 $this->click('_qf_AdditionalPayment_upload-bottom');
e42c089b 170 $this->checkCRMAlert('The payment record has been processed.');
dfbeebc5 171
ed174dea 172 $this->waitForElementPresent("xpath=id('Search')/table[@class='selector row-highlight']/tbody/tr[1]/td[8]/span/a[text()='View']");
173 $this->click("xpath=id('Search')/table[@class='selector row-highlight']/tbody/tr[1]/td[8]/span/a[text()='View']");
dfbeebc5
PJ
174 $this->waitForElementPresent("_qf_ParticipantView_cancel-top");
175
176 $this->webtestVerifyTabularData(
177 array(
178 'Event' => 'Rain-forest Cup Youth Soccer Tournament',
44a0d8ea 179 'Participant Role' => 'Volunteer',
dfbeebc5
PJ
180 'Status' => 'Registered',
181 'Event Source' => 'Event Partially Paid Webtest',
182 )
183 );
184 // check the fee amount and contribution amount
185 $this->_checkPaymentInfoTable(800.00, 800.00);
186
e42c089b 187 // check for absence of record payment button
44a0d8ea 188 $this->assertFalse($this->isElementPresent("xpath=id('ParticipantView')//td[@id='payment-info']//a/span[contains(text(), 'Record Payment')]"));
dfbeebc5 189
e42c089b 190 $this->clickAjaxLink("xpath=id('ParticipantView')/div[2]/table[@class='selector row-highlight']/tbody/tr[1]/td[8]/span/a[text()='View']");
dfbeebc5
PJ
191
192 $this->webtestVerifyTabularData(
193 array(
194 'From' => $displayName,
195 'Financial Type' => 'Event Fee',
196 'Total Amount' => '$ 800.00',
197 'Contribution Status' => 'Completed',
198 'Paid By' => 'Check',
199 'Check Number' => '1044',
200 )
201 );
794abb2e
PJ
202 $this->click('_qf_ContributionView_cancel-bottom');
203
204 // view transaction popup info check
205 $this->waitForElementPresent("xpath=//td[@id='payment-info']/table[@id='info']/tbody/tr[2]/td[2]/a");
e42c089b 206 $this->clickAjaxLink("xpath=//td[@id='payment-info']/table[@id='info']/tbody/tr[2]/td[2]/a");
794abb2e
PJ
207 $this->waitForElementPresent("xpath=//table[@id='info']/tbody/tr/th[contains(text(), 'Amount')]/../../tr[2]/td[contains(text(), '$ 400.00')]/../../tr[3]/td[contains(text(), '$ 400.00')]");
208 $this->waitForElementPresent("xpath=//table[@id='info']/tbody/tr/th[3][contains(text(), 'Paid By')]/../../tr[2]/td[3][contains(text(), 'Check')]/../../tr[3]/td[3][contains(text(), 'Cash')]");
209 $this->waitForElementPresent("xpath=//table[@id='info']/tbody/tr/th[6][contains(text(), 'Status')]/../../tr[2]/td[6][contains(text(), 'Completed')]/../../tr[3]/td[6][contains(text(), 'Completed')]");
dfbeebc5
PJ
210 }
211
4cbe18b8
EM
212 /**
213 * @param $feeAmt
100fef9d 214 * @param int $amtPaid
4cbe18b8 215 */
00be9182 216 public function _checkPaymentInfoTable($feeAmt, $amtPaid) {
dfbeebc5 217 $this->assertElementContainsText("xpath=//td[@id='payment-info']/table[@id='info']/tbody/tr[2]/td", "$ {$feeAmt}", 'Missing text: appropriate fee amount');
ed174dea 218 $this->assertElementContainsText("xpath=//td[@id='payment-info']/table[@id='info']/tbody/tr[2]/td[2]", "$ {$amtPaid}", 'Missing text: appropriate fee amount');
c5bb67f1 219 }
96025800 220
44a0d8ea 221}