whitespace cleanup
[civicrm-core.git] / tests / phpunit / WebTest / Contribute / OfflineRecurContributionTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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_Contribute_OfflineRecurContributionTest extends CiviSeleniumTestCase {
29
30 protected function setUp() {
31 parent::setUp();
32 }
33
34 function testOfflineRecurContribution() {
35 $this->webtestLogin();
36
37 // We need a payment processor
38 $processorName = 'Webtest AuthNet' . substr(sha1(rand()), 0, 7);
39 $this->webtestAddPaymentProcessor($processorName, 'AuthNet');
40
41 // create a new contact for whom recurring contribution is to be created
42 $firstName = 'Jane' . substr(sha1(rand()), 0, 7);
43 $middleName = 'Middle';
44 $lastName = 'Recuroff_' . substr(sha1(rand()), 0, 7);
45 $this->webtestAddContact($firstName, $lastName, "{$firstName}@example.com");
46 $contactName = "$firstName $lastName";
47
48 $this->click('css=li#tab_contribute a');
49
50 $this->waitForElementPresent('link=Submit Credit Card Contribution');
51 $this->click('link=Submit Credit Card Contribution');
52 $this->waitForPageToLoad($this->getTimeoutMsec());
53
54 // since we don't have live credentials we will switch to test mode
55 $url = $this->getLocation();
56 $url = str_replace('mode=live', 'mode=test', $url);
57 $this->open($url);
58
59 // start filling out contribution form
60 $this->waitForElementPresent('payment_processor_id');
61 $this->select('payment_processor_id', "label={$processorName}");
62
63 $this->click('financial_type_id');
64 $this->select('financial_type_id', 'label=Donation');
65 $this->type('total_amount', '10');
66
67 // recurring contribution fields
68 $this->click('is_recur');
69 $this->type('frequency_interval', '1');
70 $this->select('frequency_unit', 'label=month(s)');
71 $this->type('installments', '12');
72
73 $this->click('is_email_receipt');
74 $this->waitForElementPresent('credit_card_type');
75
76 // enter credit card info on form
77 $this->webtestAddCreditCardDetails();
78
79 // billing address
80 $this->webtestAddBillingDetails($firstName, $middleName, $lastName);
81
82 $this->click('_qf_Contribution_upload-bottom');
83 $this->waitForPageToLoad($this->getTimeoutMsec());
84
85 // Use Find Contributions to make sure test recurring contribution exists
86 $this->openCiviPage("contribute/search", "reset=1", 'contribution_currency_type');
87
88 $this->type('sort_name', "$lastName, $firstName");
89 $this->click('contribution_test');
90 $this->click('_qf_Search_refresh');
91
92 $this->waitForElementPresent('css=#contributionSearch table tbody tr td span a.action-item-first');
93 $this->click('css=#contributionSearch table tbody tr td span a.action-item-first');
94 $this->waitForElementPresent('_qf_ContributionView_cancel-bottom');
95
96 // View Recurring Contribution Record
97 $verifyData = array(
98 'From' => "$contactName",
99 'Financial Type' => 'Donation (test)',
100 'Total Amount' => 'Installments: 12, Interval: 1 month(s)',
101 'Contribution Status' => 'Pending : Incomplete Transaction',
102 'Paid By' => 'Credit Card',
103 );
104
105 foreach ($verifyData as $label => $value) {
106 $this->verifyText("xpath=//form[@id='ContributionView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td",
107 preg_quote($value)
108 );
109 }
110 }
111 }
112