Merge pull request #9187 from sqweets/ExportHeadersRelationships
[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 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
5f1108c8 148 /**
149 * Test update.
150 */
00be9182 151 public function testUpdate() {
75638074 152 $id = $this->membershipTypeCreate(array('member_of_contact_id' => $this->_contactID, 'financial_type_id' => 2));
5f1108c8 153 $newMemberOrgParams = array(
6a488035
TO
154 'organization_name' => 'New membership organisation',
155 'contact_type' => 'Organization',
92915c55
TO
156 'visibility' => 1,
157 );
6a488035 158
6a488035
TO
159 $params = array(
160 'id' => $id,
161 'name' => 'Updated General',
5f1108c8 162 'member_of_contact_id' => $this->organizationCreate($newMemberOrgParams),
6a488035
TO
163 'duration_unit' => 'month',
164 'duration_interval' => '10',
165 'period_type' => 'fixed',
92915c55
TO
166 'domain_id' => 1,
167 );
3d6a42e8 168
d63167fc 169 $this->callAPISuccess('membership_type', 'update', $params);
6a488035
TO
170
171 $this->getAndCheck($params, $id, $this->_entity);
172 }
173
5f1108c8 174 /**
175 * Test successful delete.
176 */
00be9182 177 public function testDelete() {
5f1108c8 178 $membershipTypeID = $this->membershipTypeCreate(array('member_of_contact_id' => $this->organizationCreate()));
3d6a42e8 179 $params = array(
6a488035 180 'id' => $membershipTypeID,
6a488035
TO
181 );
182
edc9b94e 183 $this->callAPIAndDocument('membership_type', 'delete', $params, __FUNCTION__, __FILE__);
6a488035 184 }
96025800 185
5f1108c8 186 /**
187 * Delete test that could do with a decent comment block.
188 *
189 * I can't skim this & understand it so if anyone does explain it here.
190 */
baccd59e
CW
191 public function testDeleteRelationshipTypesUsedByMembershipType() {
192 $rel1 = $this->relationshipTypeCreate(array(
193 'name_a_b' => 'abcde',
194 'name_b_a' => 'abcde',
195 ));
196 $rel2 = $this->relationshipTypeCreate(array(
197 'name_a_b' => 'fghij',
198 'name_b_a' => 'fghij',
199 ));
200 $rel3 = $this->relationshipTypeCreate(array(
201 'name_a_b' => 'lkmno',
202 'name_b_a' => 'lkmno',
203 ));
204 $id = $this->membershipTypeCreate(array(
205 'member_of_contact_id' => $this->_contactID,
206 'relationship_type_id' => array($rel1, $rel2, $rel3),
207 'relationship_direction' => array('a_b', 'a_b', 'b_a'),
208 ));
209
210 $this->callAPISuccess('RelationshipType', 'delete', array('id' => $rel2));
211 $newValues = $this->callAPISuccess('MembershipType', 'getsingle', array('id' => $id));
212 $this->assertEquals(array($rel1, $rel3), $newValues['relationship_type_id']);
213 $this->assertEquals(array('a_b', 'b_a'), $newValues['relationship_direction']);
214
215 $this->callAPISuccess('RelationshipType', 'delete', array('id' => $rel1));
216 $newValues = $this->callAPISuccess('MembershipType', 'getsingle', array('id' => $id));
217 $this->assertEquals(array($rel3), $newValues['relationship_type_id']);
218 $this->assertEquals(array('b_a'), $newValues['relationship_direction']);
219
220 $this->callAPISuccess('RelationshipType', 'delete', array('id' => $rel3));
221 $newValues = $this->callAPISuccess('MembershipType', 'getsingle', array('id' => $id));
222 $this->assertTrue(empty($newValues['relationship_type_id']));
223 $this->assertTrue(empty($newValues['relationship_direction']));
224 }
225
35dfd73b 226 /**
227 * Test that membership type getlist returns an array of enabled membership types.
228 */
229 public function testMembershipTypeGetList() {
230 $this->membershipTypeCreate();
231 $this->membershipTypeCreate(array('name' => 'cheap-skates'));
232 $this->membershipTypeCreate(array('name' => 'disabled cheap-skates', 'is_active' => 0));
233 $result = $this->callAPISuccess('MembershipType', 'getlist', array());
234 $this->assertEquals(2, $result['count']);
235 $this->assertEquals('cheap-skates', $result['values'][0]['label']);
236 $this->assertEquals('General', $result['values'][1]['label']);
237 }
238
6a488035 239}