Merge pull request #12003 from vinuvarshith/dev/core/69-fix-state-province-name-token...
[civicrm-core.git] / tests / phpunit / WebTest / Pledge / AddCancelPaymentTest.php
CommitLineData
b879962e
DG
1<?php
2/*
3 +--------------------------------------------------------------------+
2fe49090 4 | CiviCRM version 5 |
b879962e 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
b879962e
DG
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 */
b879962e
DG
26
27require_once 'CiviTest/CiviSeleniumTestCase.php';
e9479dcf
EM
28
29/**
30 * Class WebTest_Pledge_AddCancelPaymentTest
31 */
b879962e
DG
32class WebTest_Pledge_AddCancelPaymentTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
00be9182 38 public function testAddCancelPayment() {
b879962e
DG
39 $this->webtestLogin();
40
41 $this->openCiviPage('pledge/add', 'reset=1&context=standalone', '_qf_Pledge_upload');
42
43 // create new contact using dialog
80f3b91d 44 $contact = $this->createDialogContact();
b879962e
DG
45
46 $this->type('amount', '1200');
47 $this->type('installments', '12');
48 $this->select('frequency_unit', 'value=month');
49 $this->type('frequency_day', '1');
50 $this->webtestFillDate('acknowledge_date', 'now');
51 $this->select('contribution_page_id', 'value=3');
52 $this->click('_qf_Pledge_upload-bottom');
53 $this->waitForPageToLoad("30000");
54
55 $this->waitForText('crm-notification-container', "Pledge has been recorded and the payment schedule has been created.");
56
57 // verify if Pledge is created
45fabf8e 58 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
b879962e
DG
59
60 //click through to the Pledge view screen
45fabf8e 61 $this->click("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
b879962e
DG
62 $this->waitForElementPresent('_qf_PledgeView_next-bottom');
63 $pledgeDate = date('F jS, Y', strtotime('now'));
64
65 $this->webtestVerifyTabularData(array(
80f3b91d 66 'Pledge By' => $contact['display_name'],
b879962e
DG
67 'Total Pledge Amount' => '$ 1,200.00',
68 'To be paid in' => '12 installments of $ 100.00 every 1 month(s)',
69 'Payments are due on the' => '1 day of the period',
70 'Pledge Made' => $pledgeDate,
71 'Financial Type' => 'Donation',
72 'Pledge Status' => 'Pending',
73 )
74 );
b879962e 75 //Edit and add the first payment for 300.00
23c608b0 76 $this->click('_qf_PledgeView_next-bottom');
2913f26f 77 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
78 $this->waitForAjaxContent();
e2414672 79 $this->click("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[1]/a");
80 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody//tr//td/div/table/tbody/tr[2]/td[8]/a[text()='Record Payment']");
81 $this->click("xpath=//div[@class='view-content']//table//tbody//tr//td/div/table/tbody/tr[2]/td[8]/a");
b879962e
DG
82 $this->waitForElementPresent("xpath=//form[@id='Contribution']//div[2]/table/tbody/tr[3]/td[2]/a");
83 $this->click("xpath=//form[@id='Contribution']//div[2]/table/tbody/tr[3]/td[2]/a");
84 $this->type('total_amount', '300.00');
85 $this->click('_qf_Contribution_upload-bottom');
b879962e
DG
86 $this->waitForText('crm-notification-container', "The contribution record has been saved.");
87
45fabf8e 88 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
b879962e 89
e9479dcf 90 //Check whether the next two payments are done or not
38653166 91 $this->waitForAjaxContent();
e2414672 92 $this->waitForElementPresent("xpath=//form[@class='CRM_Pledge_Form_Search crm-search-form']//div/table/tbody//tr//td/div/table/tbody/tr[2]/td[8]/a[text()='View Payment']");
93 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr/td/div/table/tbody/tr[3]/td[7]", "Completed");
94 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr/td/div/table/tbody/tr[4]/td[7]", "Completed");
b879962e 95
b879962e 96 //Cancel the contribution made for amount of 300.00
e2414672 97 $this->waitForElementPresent("xpath=//form[@class='CRM_Pledge_Form_Search crm-search-form']//div/table/tbody//tr//td/div/table/tbody/tr[2]/td[8]/a[text()='View Payment']");
98 $this->click("xpath=//div[@class='view-content']//table/tbody/tr/td/div/table/tbody/tr[2]/td[8]/a");
b879962e
DG
99 $this->waitForElementPresent("xpath=//form[@id='ContributionView']//div[2]/div/div/a");
100 $this->click("xpath=//form[@id='ContributionView']//div[2]/div/div/a");
e9479dcf 101 $this->waitForElementPresent("_qf_Contribution_upload-bottom");
b879962e 102 $this->select('contribution_status_id', 'value=3');
e9479dcf 103 $this->click("_qf_Contribution_upload-bottom");
4a058f26 104 $this->waitForAjaxContent();
c51f8adb
JP
105 $this->waitForElementPresent("_qf_ContributionView_cancel-bottom");
106 $this->click("_qf_ContributionView_cancel-bottom");
b879962e 107
45fabf8e 108 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
2913f26f 109 $this->waitForAjaxContent();
e2414672 110 $this->waitForElementPresent("xpath=//div[@class='view-content']//table/tbody/tr/td/div/table/tbody/tr[3]/td[7]");
e9479dcf 111
b879962e 112 // verify that first paayment is cancelled and the rest two payments are revert back to the pending status
e2414672 113 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr/td/div/table/tbody/tr[2]/td[7]", "Cancelled");
114 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr/td/div/table/tbody/tr[3]/td[7]", "Pending");
115 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr/td/div/table/tbody/tr[4]/td[7]", "Pending");
b879962e
DG
116
117 // Check whether a new payment with pending status is added at the last or not
e2414672 118 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr/td/div/table/tbody/tr[14]/td[7]", "Pending");
b879962e
DG
119
120 // verify that Balance sum is correct
f6dd1ca6 121 $this->verifyText("xpath=//form[@class='CRM_Pledge_Form_Search crm-search-form']//div[@class='view-content']//table//tbody/tr[1]/td[4]", "1,200.00");
b879962e
DG
122
123 }
96025800 124
b879962e 125}