Merge pull request #3614 from eileenmcnaughton/CRM-14951
[civicrm-core.git] / tests / phpunit / WebTest / Pledge / AddCancelPaymentTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
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_Pledge_AddCancelPaymentTest
31 */
32 class WebTest_Pledge_AddCancelPaymentTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 function testAddCancelPayment() {
39 $this->webtestLogin();
40
41 $this->openCiviPage('pledge/add', 'reset=1&context=standalone', '_qf_Pledge_upload');
42
43 // create new contact using dialog
44 $firstName = 'Ma' . substr(sha1(rand()), 0, 4);
45 $lastName = 'Za' . substr(sha1(rand()), 0, 7);
46 $this->webtestNewDialogContact($firstName, $lastName, $firstName . '@example.com');
47
48 $this->type('amount', '1200');
49 $this->type('installments', '12');
50 $this->select('frequency_unit', 'value=month');
51 $this->type('frequency_day', '1');
52 $this->webtestFillDate('acknowledge_date', 'now');
53 $this->select('contribution_page_id', 'value=3');
54 $this->click('_qf_Pledge_upload-bottom');
55 $this->waitForPageToLoad("30000");
56
57 $this->waitForText('crm-notification-container', "Pledge has been recorded and the payment schedule has been created.");
58
59 // verify if Pledge is created
60 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
61
62 //click through to the Pledge view screen
63 $this->click("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
64 $this->waitForElementPresent('_qf_PledgeView_next-bottom');
65 $pledgeDate = date('F jS, Y', strtotime('now'));
66
67 $this->webtestVerifyTabularData(array(
68 'Pledge By' => $firstName . ' ' . $lastName,
69 'Total Pledge Amount' => '$ 1,200.00',
70 'To be paid in' => '12 installments of $ 100.00 every 1 month(s)',
71 'Payments are due on the' => '1 day of the period',
72 'Pledge Made' => $pledgeDate,
73 'Financial Type' => 'Donation',
74 'Pledge Status' => 'Pending',
75 )
76 );
77 $this->clickLink('_qf_PledgeView_next-bottom', "xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']", FALSE);
78 $this->click("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[1]/span/a");
79 //Edit and add the first payment for 300.00
80 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody//tr//td/table/tbody/tr[2]/td[8]/a[text()='Record Payment (Check, Cash, EFT ...)']");
81 $this->click("xpath=//div[@class='view-content']//table//tbody//tr//td/table/tbody/tr[2]/td[8]/a");
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');
86 $this->waitForPageToLoad("30000");
87 $this->waitForText('crm-notification-container', "The contribution record has been saved.");
88
89 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
90 $this->click("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[1]/span/a");
91
92 //Check whether the next two payments are done or not
93 $this->waitForElementPresent("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[2]/td[8]/a[text()='View Payment']");
94 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[3]/td[7]","Completed");
95 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[4]/td[7]","Completed");
96
97
98 //Cancel the contribution made for amount of 300.00
99 $this->waitForElementPresent("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[2]/td[8]/a[text()='View Payment']");
100 $this->click("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[2]/td[8]/a");
101 $this->waitForElementPresent("xpath=//form[@id='ContributionView']//div[2]/div/div/a");
102 $this->click("xpath=//form[@id='ContributionView']//div[2]/div/div/a");
103 $this->waitForElementPresent("_qf_Contribution_upload-bottom");
104 $this->select('contribution_status_id', 'value=3');
105 $this->click("_qf_Contribution_upload-bottom");
106
107 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
108 $this->click("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[1]/span/a");
109 $this->waitForElementPresent("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[3]/td[7]");
110
111 // verify that first paayment is cancelled and the rest two payments are revert back to the pending status
112 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[2]/td[7]","Cancelled");
113 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[3]/td[7]","Pending");
114 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[4]/td[7]","Pending");
115
116 // Check whether a new payment with pending status is added at the last or not
117 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[14]/td[7]","Pending");
118
119 // verify that Balance sum is correct
120 $this->verifyText("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[4]","1,200.00");
121
122 }
123 }
124