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