Fixed some contribution pages
[civicrm-core.git] / tests / phpunit / WebTest / Member / UpdateMembershipScriptTest.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_Member_UpdateMembershipScriptTest extends CiviSeleniumTestCase {
30
31 protected function setUp() {
32 parent::setUp();
33 }
34
35 function testAddMembership() {
36 // Log in using webtestLogin() method
37 $this->webtestLogin();
38
39 // Add a new membership type
40 $memTypeParams = $this->addMembershipType();
41
42 $firstName = substr(sha1(rand()), 0, 7);
43 $email = "$firstName.Anderson@example.com";
44 $this->webtestAddContact($firstName, 'Anderson', $email);
45
46 $this->waitForElementPresent('css=li#tab_member a');
47 $this->click('css=li#tab_member a');
48 $this->waitForElementPresent('link=Add Membership');
49 $this->click('link=Add Membership');
50
51 $this->waitForElementPresent('_qf_Membership_cancel-bottom');
52 $this->select('membership_type_id[0]', "label={$memTypeParams['member_of_contact']}");
53 $this->select('membership_type_id[1]', "label={$memTypeParams['membership_type']}");
54
55 // Fill join date
56 $this->webtestFillDate('join_date', "1 March 2008");
57
58 // Override status
59 $this->check('is_override');
60 $this->select('status_id', "label=Current");
61
62 // Clicking save.
63 $this->click('_qf_Membership_upload');
64 $this->waitForPageToLoad($this->getTimeoutMsec());
65
66 // Is status message correct?
67 $this->assertElementContainsText('crm-notification-container', "{$memTypeParams['membership_type']} membership for $firstName Anderson has been added.",
68 "Status message didn't show up after saving!"
69 );
70
71 // click through to the membership view screen
72 $this->waitForElementPresent("xpath=//div[@id='memberships']//table//tbody/tr[1]/td[9]");
73 $this->click("xpath=//div[@id='memberships']//table//tbody/tr[1]/td[9]/span/a[text()='View']");
74 $this->waitForElementPresent("_qf_MembershipView_cancel-bottom");
75
76 $this->webtestVerifyTabularData(
77 array(
78 'Membership Type' => "{$memTypeParams['membership_type']}",
79 'Status' => 'Current',
80 'Member Since' => 'March 1st, 2008',
81 'Start date' => 'March 1st, 2008',
82 'End date' => 'February 28th, 2009',
83 )
84 );
85 }
86
87 function addMembershipType() {
88 $membershipTitle = substr(sha1(rand()), 0, 7);
89 $membershipOrg = $membershipTitle . ' memorg';
90 $this->webtestAddOrganization($membershipOrg, TRUE);
91
92 $title = "Membership Type " . substr(sha1(rand()), 0, 7);
93 $memTypeParams = array(
94 'membership_type' => $title,
95 'member_of_contact' => $membershipOrg,
96 'financial_type' => 2,
97 'relationship_type' => '4_b_a',
98 );
99
100 $this->openCiviPage('admin/member/membershipType', 'reset=1&action=browse');
101
102 $this->click("link=Add Membership Type");
103 $this->waitForElementPresent('_qf_MembershipType_cancel-bottom');
104
105 // New membership type
106 $this->type('name', $memTypeParams['membership_type']);
107 $this->type('member_of_contact', $membershipTitle);
108 $this->click('member_of_contact');
109 $this->waitForElementPresent("css=div.ac_results-inner li");
110 $this->click("css=div.ac_results-inner li");
111
112 // Membership fees
113 $this->type('minimum_fee', '100');
114 $this->select( 'financial_type_id', "value={$memTypeParams['financial_type']}" );
115
116 // Duration for which the membership will be active
117 $this->type('duration_interval', 1);
118 $this->select('duration_unit', "label=year");
119
120 // Membership period type
121 $this->select('period_type', "label=rolling");
122 $this->click('relationship_type_id', "value={$memTypeParams['relationship_type']}");
123
124 // Clicking save
125 $this->click('_qf_MembershipType_upload-bottom');
126 $this->waitForElementPresent('link=Add Membership Type');
127 $this->assertElementContainsText('crm-notification-container', "The membership type '$title' has been saved.");
128
129 return $memTypeParams;
130 }
131 }