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