commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / tests / phpunit / WebTest / Pledge / AddCancelPaymentTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 public 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 $contact = $this->createDialogContact();
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
58 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
59
60 //click through to the Pledge view screen
61 $this->click("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
62 $this->waitForElementPresent('_qf_PledgeView_next-bottom');
63 $pledgeDate = date('F jS, Y', strtotime('now'));
64
65 $this->webtestVerifyTabularData(array(
66 'Pledge By' => $contact['display_name'],
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 );
75 //Edit and add the first payment for 300.00
76 $this->click('_qf_PledgeView_next-bottom');
77 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
78 $this->waitForAjaxContent();
79 $this->click("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[1]/span/a");
80 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody//tr//td/table/tbody/tr[2]/td[8]/a[text()='Record Payment']");
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->waitForText('crm-notification-container', "The contribution record has been saved.");
87
88 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
89 $this->click("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[1]/span/a");
90
91 //Check whether the next two payments are done or not
92 $this->waitForAjaxContent();
93 $this->waitForElementPresent("xpath=//form[@id='Search']//div/table/tbody//tr//td/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 //Cancel the contribution made for amount of 300.00
98 $this->waitForElementPresent("xpath=//form[@id='Search']//div/table/tbody//tr//td/table/tbody/tr[2]/td[8]/a[text()='View Payment']");
99 $this->click("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[2]/td[8]/a");
100 $this->waitForElementPresent("xpath=//form[@id='ContributionView']//div[2]/div/div/a");
101 $this->click("xpath=//form[@id='ContributionView']//div[2]/div/div/a");
102 $this->waitForElementPresent("_qf_Contribution_upload-bottom");
103 $this->select('contribution_status_id', 'value=3');
104 $this->click("_qf_Contribution_upload-bottom");
105 $this->waitForAjaxContent();
106 $this->waitForElementPresent("_qf_ContributionView_cancel-bottom");
107 $this->click("_qf_ContributionView_cancel-bottom");
108
109 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
110 $this->waitForAjaxContent();
111 $this->click("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[1]/span/a");
112 $this->waitForElementPresent("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[3]/td[7]");
113
114 // verify that first paayment is cancelled and the rest two payments are revert back to the pending status
115 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[2]/td[7]", "Cancelled");
116 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[3]/td[7]", "Pending");
117 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[4]/td[7]", "Pending");
118
119 // Check whether a new payment with pending status is added at the last or not
120 $this->verifyText("xpath=//div[@class='view-content']//table/tbody/tr[2]/td[2]/table/tbody/tr[14]/td[7]", "Pending");
121
122 // verify that Balance sum is correct
123 $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");
124
125 }
126
127 }