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