CRM-18454: webtest fixes
[civicrm-core.git] / tests / phpunit / WebTest / Contribute / UpdateBatchPendingContributionTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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 +--------------------------------------------------------------------+
d25dd0ee 25 */
6a488035 26
6a488035 27require_once 'CiviTest/CiviSeleniumTestCase.php';
e9479dcf
EM
28
29/**
30 * Class WebTest_Contribute_UpdateBatchPendingContributionTest
31 */
6a488035
TO
32class WebTest_Contribute_UpdateBatchPendingContributionTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
00be9182 38 public function testBatchUpdatePendingContribution() {
6a488035
TO
39 $this->webtestLogin();
40 $this->_testOfflineContribution();
41 $this->_testOfflineContribution();
42 $this->_testOfflineContribution();
43
42daf119 44 $this->openCiviPage("contribute/search", "reset=1", "contribution_date_low");
6a488035 45
5b520af7 46 $this->type("sort_name", "Individual");
195986f2 47 $this->multiselect2('contribution_status_id', array("Pending"));
80f3b91d 48 $this->clickLink("_qf_Search_refresh");
6a488035 49
6a488035 50 $this->click('radio_ts', 'ts_all');
52b7da1c 51 $this->waitForAjaxContent();
7051f2e5 52 $this->select('task', "label=Update pending contribution status");
52b7da1c 53 $this->waitForAjaxContent();
6a488035 54 $this->select('contribution_status_id', 'label=Completed');
52b7da1c 55 $this->waitForAjaxContent();
6a488035
TO
56 $this->click('_qf_Status_next');
57 $this->waitForElementPresent("_qf_Result_done");
58 $this->click("_qf_Result_done");
59
60 $this->waitForElementPresent("contribution_date_low");
61
5b520af7 62 $this->type("sort_name", "Individual");
195986f2 63 $this->multiselect2('contribution_status_id', array("Completed"));
6a488035
TO
64 $this->click("_qf_Search_refresh");
65
66 $this->waitForPageToLoad($this->getTimeoutMsec());
c543dff8 67 $this->click("xpath=//table[@class='selector row-highlight']/tbody/tr[1]/td[10]/span//a[text()='View']");
f1690d4a 68 $this->waitForElementPresent("_qf_ContributionView_cancel-bottom");
6a488035
TO
69 $expected = array(
70 'Received Into' => "Deposit Bank Account",
71 'Contribution Status' => "Completed",
76e86fd8
CW
72 );
73
6a488035
TO
74 $this->webtestVerifyTabularData($expected);
75 }
76
00be9182 77 public function testParticipationAdd() {
6a488035
TO
78 // Log in using webtestLogin() method
79 $this->webtestLogin();
80
81 // Adding contact with randomized first name (so we can then select that contact when creating event registration)
82 // We're using Quick Add block on the main page for this.
83 $firstName1 = substr(sha1(rand()), 0, 7);
84 $this->webtestAddContact($firstName1, 'Anderson', TRUE);
85 $sortName1 = "Anderson, $firstName1";
86 $this->_addParticipant($firstName1);
87
88 $firstName2 = substr(sha1(rand()), 0, 7);
89 $this->webtestAddContact($firstName2, 'Anderson', TRUE);
90 $sortName2 = "Anderson, $firstName2";
91 $this->_addParticipant($firstName2);
92
93 // Search the participants
42daf119 94 $this->openCiviPage("event/search", "reset=1", '_qf_Search_refresh');
6a488035 95
24f591b0 96 $eventName = 'Rain-forest Cup Youth Soccer Tournament';
97 $this->select2("event_id", $eventName, TRUE);
6a488035
TO
98 $this->click('_qf_Search_refresh');
99
42daf119 100 $this->openCiviPage("contribute/search", "reset=1", "contribution_date_low");
6a488035
TO
101
102 $this->type("sort_name", "Anderson");
080e1bbd 103 $this->multiselect2('contribution_status_id', array("Pending"));
6a488035
TO
104 $this->click("_qf_Search_refresh");
105
106 $this->waitForPageToLoad($this->getTimeoutMsec());
107 $this->click('radio_ts', 'ts_all');
108
7051f2e5 109 $this->select('task', "label=Update pending contribution status");
080e1bbd 110 $this->waitForElementPresent("_qf_Search_next_action");
6a488035
TO
111 $this->click("_qf_Search_next_action");
112 $this->waitForPageToLoad($this->getTimeoutMsec());
113 $this->select('contribution_status_id', 'label=Completed');
114 $this->click('_qf_Status_next');
115 $this->waitForElementPresent("_qf_Result_done");
116 $this->click("_qf_Result_done");
117
118 $this->waitForElementPresent("contribution_date_low");
119
120 $this->type("sort_name", "Anderson");
ea83a78e 121 $this->multiselect2('contribution_status_id', array("Completed"));
6a488035
TO
122 $this->click("_qf_Search_refresh");
123
124 $this->waitForPageToLoad($this->getTimeoutMsec());
c543dff8 125 $this->click("xpath=//table[@class='selector row-highlight']/tbody/tr[1]/td[10]/span//a[text()='View']");
c51f8adb 126 $this->waitForElementPresent("_qf_ContributionView_cancel-bottom");
6a488035 127 $expected = array(
92915c55 128 'Received Into' => "Deposit Bank Account",
6a488035 129 'Contribution Status' => "Completed",
76e86fd8
CW
130 );
131
6a488035
TO
132 $this->webtestVerifyTabularData($expected);
133 }
134
4cbe18b8 135 /**
100fef9d 136 * @param string $firstName
4cbe18b8 137 */
00be9182 138 public function _addParticipant($firstName) {
6a488035 139
42daf119 140 $this->openCiviPage("participant/add", "reset=1&action=add&context=standalone", '_qf_Participant_upload-bottom');
6a488035 141
6a488035
TO
142 // Type contact last name in contact auto-complete, wait for dropdown and click first result
143 $this->webtestFillAutocomplete($firstName);
144
145 // Select event. Based on label for now.
f1690d4a 146 $this->select2('event_id', "Rain-forest Cup Youth Soccer Tournament");
6a488035
TO
147
148 // Select role
f1690d4a 149 $this->multiselect2('role_id', array('Volunteer'));
6a488035 150
6a488035
TO
151 // Select participant status
152 $this->select('status_id', 'value=1');
153
154 // Setting registration source
155 $this->type('source', 'Event StandaloneAddTest Webtest');
156
157 // Since we're here, let's check of screen help is being displayed properly
158 $this->assertTrue($this->isTextPresent('Source for this registration (if applicable).'));
159
160 // Select an event fee
161 $this->waitForElementPresent('priceset');
162
f1690d4a 163 $this->click("xpath=//input[@class='crm-form-radio']");
6a488035
TO
164
165 // Enter amount to be paid (note: this should default to selected fee level amount, s/b fixed during 3.2 cycle)
166 $this->type('total_amount', '800');
167
168 $this->select('contribution_status_id', "label=Pending");
169
170 // Clicking save.
171 $this->click('_qf_Participant_upload-bottom');
172 $this->waitForPageToLoad($this->getTimeoutMsec());
173
174 // Is status message correct?
f1690d4a 175 $this->waitForText("crm-notification-container", "Event registration for $firstName Anderson has been added");
6a488035 176
080e1bbd 177 $this->waitForElementPresent("xpath=//form[@class='CRM_Event_Form_Search crm-search-form']/table//tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035 178 //click through to the participant view screen
080e1bbd 179 $this->click("xpath=//form[@class='CRM_Event_Form_Search crm-search-form']/table//tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035
TO
180 $this->waitForElementPresent('_qf_ParticipantView_cancel-bottom');
181
182 $this->webtestVerifyTabularData(
183 array(
184 'Event' => 'Rain-forest Cup Youth Soccer Tournament',
185 'Participant Role' => 'Attendee',
186 'Status' => 'Registered',
187 'Event Source' => 'Event StandaloneAddTest Webtest',
f1690d4a 188 'Fees' => '$ 800.00',
6a488035
TO
189 )
190 );
191 }
192
00be9182 193 public function _testOfflineContribution() {
42daf119 194 $this->openCiviPage("contribute/add", "reset=1&context=standalone", "_qf_Contribution_upload");
6a488035 195
6a488035 196 // create new contact using dialog
80f3b91d 197 $this->createDialogContact();
6a488035
TO
198
199 // select financial type
481a74f4 200 $this->select("financial_type_id", "value=1");
6a488035
TO
201
202 //Contribution status
203 $this->select("contribution_status_id", "label=Pending");
204
205 // total amount
206 $this->type("total_amount", "100");
207
208 // Clicking save.
209 $this->click("_qf_Contribution_upload");
210 $this->waitForPageToLoad($this->getTimeoutMsec());
211
212 // Is status message correct?
213 $this->assertTrue($this->isTextPresent("The contribution record has been saved."), "Status message didn't show up after saving!");
214
215 // verify if Membership is created
f1690d4a 216 $this->waitForElementPresent("xpath=//div[@class='view-content']//table[2]//tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035
TO
217
218 //click through to the Membership view screen
f1690d4a 219 $this->click("xpath=//div[@class='view-content']//table[2]/tbody/tr[1]/td[8]/span/a[text()='View']");
6a488035
TO
220 $this->waitForElementPresent("_qf_ContributionView_cancel-bottom");
221
222 $expected = array(
223 'Financial Type' => 'Donation',
224 'Total Amount' => '100.00',
225 'Contribution Status' => 'Pending',
226 );
227 foreach ($expected as $label => $value) {
e684c1ae 228 $this->assertElementContainsText("xpath=id('ContributionView')/div[2]/table[1]/tbody//tr/td[1][text()='$label']/../td[2]", $value);
6a488035
TO
229 }
230 }
96025800 231
6a488035 232}