whitespace cleanup
[civicrm-core.git] / tests / phpunit / WebTest / Member / OfflineAutoRenewMembershipTest.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_Member_OfflineAutoRenewMembershipTest extends CiviSeleniumTestCase {
29
30 protected function setUp() {
31 parent::setUp();
32 }
33
34 function testOfflineAutoRenewMembership() {
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 membership type to use for this test
42 $periodType = 'rolling';
43 $duration_interval = 1;
44 $duration_unit = 'year';
45 $auto_renew = "optional";
46
47 $memTypeParams = $this->webtestAddMembershipType($periodType, $duration_interval, $duration_unit, $auto_renew);
48
49 // create a new contact for whom membership is to be created
50 $firstName = 'Apt' . substr(sha1(rand()), 0, 4);
51 $lastName = 'Mem' . substr(sha1(rand()), 0, 7);
52 $this->webtestAddContact($firstName, $lastName, "{$firstName}@example.com");
53 $contactName = "$firstName $lastName";
54
55 $this->click('css=li#tab_member a');
56
57 $this->waitForElementPresent('link=Submit Credit Card Membership');
58 $this->click('link=Submit Credit Card Membership');
59 $this->waitForPageToLoad($this->getTimeoutMsec());
60
61 // since we don't have live credentials we will switch to test mode
62 $url = $this->getLocation();
63 $url = str_replace('mode=live', 'mode=test', $url);
64 $this->open($url);
65
66 // start filling membership form
67 $this->waitForElementPresent('payment_processor_id');
68 $this->select("payment_processor_id", "label={$processorName}");
69
70 // fill in Membership Organization and Type
71 $this->select("membership_type_id[0]", "label={$memTypeParams['member_of_contact']}");
72 // Wait for membership type select to reload
73 $this->waitForTextPresent($memTypeParams['membership_type']);
74 $this->select("membership_type_id[1]", "label={$memTypeParams['membership_type']}");
75
76 $this->click("source");
77 $this->type("source", "Online Membership: Admin Interface");
78
79 $this->waitForElementPresent('auto_renew');
80 $this->click("auto_renew");
81
82 $this->webtestAddCreditCardDetails();
83
84 // since country is not pre-selected for offline mode
85 $this->select("billing_country_id-5", "label=United States");
86 //wait for states to populate the select box
87 // Because it tends to cause problems, all uses of sleep() must be justified in comments
88 // Sleep should never be used for wait for anything to load from the server
89 // Justification for this instance: FIXME
90 sleep(2);
91 $this->click('billing_state_province_id-5');
92 $this->webtestAddBillingDetails($firstName, NULL, $lastName);
93
94 $this->click("_qf_Membership_upload-bottom");
95 $this->waitForPageToLoad($this->getTimeoutMsec());
96
97 // Use Find Members to make sure membership exists
98 $this->openCiviPage("member/search", "reset=1", "member_end_date_high");
99
100 $this->type("sort_name", "$firstName $lastName");
101 $this->click("member_test");
102 $this->clickLink("_qf_Search_refresh", "xpath=//div[@id='memberSearch']/table/tbody/tr[1]/td[11]/span/a[text()='View']");
103 $this->click("xpath=//div[@id='memberSearch']/table/tbody/tr[1]/td[11]/span/a[text()='View']");
104 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
105
106 // View Membership Record
107 $verifyData = array(
108 'Member' => "$firstName $lastName",
109 'Membership Type' => $memTypeParams['membership_type'],
110 'Source' => 'Online Membership: Admin Interface',
111 'Status' => 'Pending',
112 'Auto-renew' => 'Yes',
113 );
114 foreach ($verifyData as $label => $value) {
115 $this->verifyText("xpath=//form[@id='MembershipView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td",
116 preg_quote($value)
117 );
118 }
119 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
120 }
121 }
122