Merge pull request #2834 from pratik-joshi/CRM-14421
[civicrm-core.git] / tests / phpunit / WebTest / Pledge / StandaloneAddTest.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 class WebTest_Pledge_StandaloneAddTest extends CiviSeleniumTestCase {
29
30 protected function setUp() {
31 parent::setUp();
32 }
33
34 function testStandalonePledgeAdd() {
35 $this->webtestLogin();
36
37 $this->openCiviPage('pledge/add', 'reset=1&context=standalone', '_qf_Pledge_upload');
38
39 // create new contact using dialog
40 $firstName = 'Ma' . substr(sha1(rand()), 0, 4);
41 $lastName = 'An' . substr(sha1(rand()), 0, 7);
42 $this->webtestNewDialogContact($firstName, $lastName, $firstName . '@example.com');
43
44 $this->type('amount', '100');
45 $this->type('installments', '10');
46 $this->select('frequency_unit', 'value=week');
47 $this->type('frequency_day', '2');
48
49 $this->webtestFillDate('acknowledge_date', 'now');
50
51 $this->select('contribution_page_id', 'value=3');
52
53
54 //PaymentReminders
55 $this->click('PaymentReminders');
56 $this->waitForElementPresent('additional_reminder_day');
57 $this->type('initial_reminder_day', '4');
58 $this->type('max_reminders', '2');
59 $this->type('additional_reminder_day', '4');
60
61 $this->click('_qf_Pledge_upload-bottom');
62
63 $this->waitForText('crm-notification-container', "Pledge has been recorded and the payment schedule has been created.");
64
65 // verify if Pledge is created
66 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
67
68 //click through to the Pledge view screen
69 $this->click("xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']");
70 $this->waitForElementPresent('_qf_PledgeView_next-bottom');
71 $pledgeDate = date('F jS, Y', strtotime('now'));
72
73 $this->webtestVerifyTabularData(array(
74 'Pledge By' => $firstName . ' ' . $lastName,
75 'Total Pledge Amount' => '$ 100.00',
76 'To be paid in' => '10 installments of $ 10.00 every 1 week(s)',
77 'Payments are due on the' => '2 day of the period',
78 'Pledge Made' => $pledgeDate,
79 'Financial Type' => 'Donation',
80 'Pledge Status' => 'Pending',
81 'Initial Reminder Day' => '4 days prior to schedule date',
82 'Maximum Reminders Send' => 2,
83 'Send additional reminders' => '4 days after the last one sent',
84 )
85 );
86 $this->clickLink('_qf_PledgeView_next-bottom', "xpath=//div[@class='view-content']//table//tbody/tr[1]/td[10]/span/a[text()='View']", FALSE);
87 $this->click("xpath=//div[@class='view-content']//table[@class='selector row-highlight']//tbody/tr[1]/td[1]/span/a");
88 $this->waitForElementPresent("xpath=//div[@class='view-content']//table//tbody/tr[2]/td[2]/table/tbody/tr[2]/td[8]/a[text()='Record Payment (Check, Cash, EFT ...)']");
89 }
90 }
91