Merge pull request #10030 from eileenmcnaughton/test
[civicrm-core.git] / tests / phpunit / api / v3 / MembershipTypeTest.php
CommitLineData
6a488035 1<?php
6a488035 2/*
8d7a9d07 3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
8d7a9d07 5 +--------------------------------------------------------------------+
15a4309a 6 | Copyright CiviCRM LLC (c) 2004-2017 |
8d7a9d07
CB
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 and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
e70a7fc0 26 */
6a488035 27
e9479dcf
EM
28/**
29 * Class api_v3_MembershipTypeTest
acb109b7 30 * @group headless
e9479dcf 31 */
6a488035
TO
32class api_v3_MembershipTypeTest extends CiviUnitTestCase {
33 protected $_contactID;
34 protected $_contributionTypeID;
35 protected $_apiversion;
36 protected $_entity = 'MembershipType';
b7c9bc4c 37
80d714d2 38 /**
39 * Set up for tests.
40 */
00be9182 41 public function setUp() {
6a488035 42 parent::setUp();
31c45547 43 $this->useTransaction(TRUE);
6a488035 44 $this->_apiversion = 3;
baccd59e 45 $this->_contactID = $this->organizationCreate();
6a488035
TO
46 }
47
80d714d2 48 /**
49 * Get the membership without providing an ID.
50 *
51 * This should return an empty array but not an error.
52 */
00be9182 53 public function testGetWithoutId() {
6a488035
TO
54 $params = array(
55 'name' => '60+ Membership',
56 'description' => 'people above 60 are given health instructions',
3d6a42e8 57 'financial_type_id' => 1,
6a488035
TO
58 'minimum_fee' => '200',
59 'duration_unit' => 'month',
60 'duration_interval' => '10',
61 'visibility' => 'public',
6a488035
TO
62 );
63
80d714d2 64 $membershipType = $this->callAPISuccess('membership_type', 'get', $params);
65 $this->assertEquals($membershipType['count'], 0);
6a488035
TO
66 }
67
80d714d2 68 /**
69 * Test get works.
70 */
00be9182 71 public function testGet() {
75638074 72 $id = $this->membershipTypeCreate(array('member_of_contact_id' => $this->_contactID));
6a488035
TO
73
74 $params = array(
75 'id' => $id,
6a488035 76 );
80d714d2 77 $membershipType = $this->callAPIAndDocument('membership_type', 'get', $params, __FUNCTION__, __FILE__);
78 $this->assertEquals($membershipType['values'][$id]['name'], 'General');
79 $this->assertEquals($membershipType['values'][$id]['member_of_contact_id'], $this->_contactID);
8484a5f0 80 $this->assertEquals($membershipType['values'][$id]['financial_type_id'], $this->getFinancialTypeId('Member Dues'));
80d714d2 81 $this->assertEquals($membershipType['values'][$id]['duration_unit'], 'year');
82 $this->assertEquals($membershipType['values'][$id]['duration_interval'], '1');
83 $this->assertEquals($membershipType['values'][$id]['period_type'], 'rolling');
6a488035
TO
84 $this->membershipTypeDelete($params);
85 }
86
5f1108c8 87 /**
88 * Test create with missing mandatory field.
89 */
00be9182 90 public function testCreateWithoutMemberOfContactId() {
6a488035
TO
91 $params = array(
92 'name' => '60+ Membership',
93 'description' => 'people above 60 are given health instructions',
3d6a42e8 94 'financial_type_id' => 1,
6a488035
TO
95 'domain_id' => '1',
96 'minimum_fee' => '200',
97 'duration_unit' => 'month',
98 'duration_interval' => '10',
99 'period_type' => 'rolling',
100 'visibility' => 'public',
6a488035
TO
101 );
102
80d714d2 103 $this->callAPIFailure('membership_type', 'create', $params, 'Mandatory key(s) missing from params array: member_of_contact_id');
6a488035
TO
104 }
105
5f1108c8 106 /**
107 * Test successful create.
108 */
00be9182 109 public function testCreate() {
6a488035
TO
110 $params = array(
111 'name' => '40+ Membership',
112 'description' => 'people above 40 are given health instructions',
113 'member_of_contact_id' => $this->_contactID,
3d6a42e8 114 'financial_type_id' => 1,
6a488035
TO
115 'domain_id' => '1',
116 'minimum_fee' => '200',
117 'duration_unit' => 'month',
118 'duration_interval' => '10',
119 'period_type' => 'rolling',
120 'visibility' => 'public',
6a488035
TO
121 );
122
edc9b94e
EM
123 $membershipType = $this->callAPIAndDocument('membership_type', 'create', $params, __FUNCTION__, __FILE__);
124 $this->assertNotNull($membershipType['values']);
125 $this->membershipTypeDelete(array('id' => $membershipType['id']));
6a488035
TO
126 }
127
edc9b94e
EM
128 /**
129 * Test update fails with no ID.
130 */
00be9182 131 public function testUpdateWithoutId() {
6a488035
TO
132 $params = array(
133 'name' => '60+ Membership',
134 'description' => 'people above 60 are given health instructions',
135 'member_of_contact_id' => $this->_contactID,
3d6a42e8 136 'financial_type_id' => 1,
6a488035
TO
137 'minimum_fee' => '1200',
138 'duration_unit' => 'month',
139 'duration_interval' => '10',
140 'period_type' => 'rolling',
92915c55
TO
141 'visibility' => 'public',
142 );
6a488035 143
edc9b94e
EM
144 $membershipType = $this->callAPIFailure('membership_type', 'create', $params);
145 $this->assertEquals($membershipType['error_message'], 'Mandatory key(s) missing from params array: domain_id');
6a488035
TO
146 }
147
5b1b8db2
PH
148 /**
149 * CRM-20010 Tests period_type is required for MemberType create
150 */
151 public function testMemberTypePeriodiTypeRequired() {
152 $this->callAPIFailure('MembershipType', 'create', array(
153 'domain_id' => "Default Domain Name",
154 'member_of_contact_id' => 1,
155 'financial_type_id' => "Member Dues",
156 'duration_unit' => "month",
157 'duration_interval' => 1,
158 'name' => "Standard Member",
159 'minimum_fee' => 100,
160 ));
161 }
162
5f1108c8 163 /**
164 * Test update.
165 */
00be9182 166 public function testUpdate() {
75638074 167 $id = $this->membershipTypeCreate(array('member_of_contact_id' => $this->_contactID, 'financial_type_id' => 2));
5f1108c8 168 $newMemberOrgParams = array(
6a488035
TO
169 'organization_name' => 'New membership organisation',
170 'contact_type' => 'Organization',
92915c55
TO
171 'visibility' => 1,
172 );
6a488035 173
6a488035
TO
174 $params = array(
175 'id' => $id,
176 'name' => 'Updated General',
5f1108c8 177 'member_of_contact_id' => $this->organizationCreate($newMemberOrgParams),
6a488035
TO
178 'duration_unit' => 'month',
179 'duration_interval' => '10',
180 'period_type' => 'fixed',
92915c55
TO
181 'domain_id' => 1,
182 );
3d6a42e8 183
d63167fc 184 $this->callAPISuccess('membership_type', 'update', $params);
6a488035
TO
185
186 $this->getAndCheck($params, $id, $this->_entity);
187 }
188
5f1108c8 189 /**
190 * Test successful delete.
191 */
00be9182 192 public function testDelete() {
5f1108c8 193 $membershipTypeID = $this->membershipTypeCreate(array('member_of_contact_id' => $this->organizationCreate()));
3d6a42e8 194 $params = array(
6a488035 195 'id' => $membershipTypeID,
6a488035
TO
196 );
197
edc9b94e 198 $this->callAPIAndDocument('membership_type', 'delete', $params, __FUNCTION__, __FILE__);
6a488035 199 }
96025800 200
5f1108c8 201 /**
202 * Delete test that could do with a decent comment block.
203 *
204 * I can't skim this & understand it so if anyone does explain it here.
205 */
baccd59e
CW
206 public function testDeleteRelationshipTypesUsedByMembershipType() {
207 $rel1 = $this->relationshipTypeCreate(array(
208 'name_a_b' => 'abcde',
209 'name_b_a' => 'abcde',
210 ));
211 $rel2 = $this->relationshipTypeCreate(array(
212 'name_a_b' => 'fghij',
213 'name_b_a' => 'fghij',
214 ));
215 $rel3 = $this->relationshipTypeCreate(array(
216 'name_a_b' => 'lkmno',
217 'name_b_a' => 'lkmno',
218 ));
219 $id = $this->membershipTypeCreate(array(
220 'member_of_contact_id' => $this->_contactID,
221 'relationship_type_id' => array($rel1, $rel2, $rel3),
222 'relationship_direction' => array('a_b', 'a_b', 'b_a'),
223 ));
224
225 $this->callAPISuccess('RelationshipType', 'delete', array('id' => $rel2));
226 $newValues = $this->callAPISuccess('MembershipType', 'getsingle', array('id' => $id));
227 $this->assertEquals(array($rel1, $rel3), $newValues['relationship_type_id']);
228 $this->assertEquals(array('a_b', 'b_a'), $newValues['relationship_direction']);
229
230 $this->callAPISuccess('RelationshipType', 'delete', array('id' => $rel1));
231 $newValues = $this->callAPISuccess('MembershipType', 'getsingle', array('id' => $id));
232 $this->assertEquals(array($rel3), $newValues['relationship_type_id']);
233 $this->assertEquals(array('b_a'), $newValues['relationship_direction']);
234
235 $this->callAPISuccess('RelationshipType', 'delete', array('id' => $rel3));
236 $newValues = $this->callAPISuccess('MembershipType', 'getsingle', array('id' => $id));
237 $this->assertTrue(empty($newValues['relationship_type_id']));
238 $this->assertTrue(empty($newValues['relationship_direction']));
239 }
240
35dfd73b 241 /**
242 * Test that membership type getlist returns an array of enabled membership types.
243 */
244 public function testMembershipTypeGetList() {
245 $this->membershipTypeCreate();
246 $this->membershipTypeCreate(array('name' => 'cheap-skates'));
247 $this->membershipTypeCreate(array('name' => 'disabled cheap-skates', 'is_active' => 0));
248 $result = $this->callAPISuccess('MembershipType', 'getlist', array());
249 $this->assertEquals(2, $result['count']);
250 $this->assertEquals('cheap-skates', $result['values'][0]['label']);
251 $this->assertEquals('General', $result['values'][1]['label']);
252 }
253
6a488035 254}