Merge pull request #11965 from colemanw/CRM-21855
[civicrm-core.git] / tests / phpunit / api / v3 / MembershipStatusTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * Class api_v3_MembershipStatusTest
30 * @group headless
31 */
32 class api_v3_MembershipStatusTest extends CiviUnitTestCase {
33
34 protected $_contactID;
35 protected $_contributionTypeID;
36 protected $_membershipTypeID;
37 protected $_membershipStatusID;
38
39 protected $_apiversion = 3;
40
41 public function setUp() {
42 parent::setUp();
43 $this->_contactID = $this->individualCreate();
44 $this->_membershipTypeID = $this->membershipTypeCreate(array('member_of_contact_id' => $this->_contactID));
45 $this->_membershipStatusID = $this->membershipStatusCreate('test status');
46
47 CRM_Member_PseudoConstant::membershipType($this->_membershipTypeID, TRUE);
48 CRM_Member_PseudoConstant::membershipStatus(NULL, NULL, 'name', TRUE);
49 }
50
51 public function tearDown() {
52 $this->membershipStatusDelete($this->_membershipStatusID);
53 $this->membershipTypeDelete(array('id' => $this->_membershipTypeID));
54 $this->contactDelete($this->_contactID);
55 }
56
57 ///////////////// civicrm_membership_status_get methods
58
59
60 /**
61 * Test civicrm_membership_status_get with empty params.
62 */
63 public function testGetEmptyParams() {
64 $result = $this->callAPISuccess('membership_status', 'get', array());
65 // It should be 8 statuses, 7 default from mysql_data
66 // plus one test status added in setUp
67 $this->assertEquals(8, $result['count']);
68 }
69
70 /**
71 * Test civicrm_membership_status_get. Success expected.
72 */
73 public function testGet() {
74 $params = array(
75 'name' => 'test status',
76 );
77 $result = $this->callAPIAndDocument('membership_status', 'get', $params, __FUNCTION__, __FILE__);
78 $this->assertEquals($result['values'][$this->_membershipStatusID]['name'], "test status", "In line " . __LINE__);
79 }
80
81 /**
82 * Test civicrm_membership_status_get. Success expected.
83 */
84 public function testGetLimit() {
85 $result = $this->callAPISuccess('membership_status', 'get', array());
86 $this->assertGreaterThan(1, $result['count'], "Check more than one exists In line " . __LINE__);
87 $params['option.limit'] = 1;
88 $result = $this->callAPISuccess('membership_status', 'get', $params);
89 $this->assertEquals(1, $result['count'], "Check only 1 retrieved " . __LINE__);
90 }
91
92 public function testCreateDuplicateName() {
93 $params = array('name' => 'name');
94 $result = $this->callAPISuccess('membership_status', 'create', $params);
95 $result = $this->callAPIFailure('membership_status', 'create', $params,
96 'A membership status with this name already exists.'
97 );
98 }
99
100 public function testCreateWithMissingRequired() {
101 $params = array('title' => 'Does not make sense');
102 $this->callAPIFailure('membership_status', 'create', $params, 'Mandatory key(s) missing from params array: name');
103 }
104
105 public function testCreate() {
106 $params = array(
107 'name' => 'test membership status',
108 );
109 $result = $this->callAPIAndDocument('membership_status', 'create', $params, __FUNCTION__, __FILE__);
110
111 $this->assertNotNull($result['id']);
112 $this->membershipStatusDelete($result['id']);
113 }
114
115 public function testUpdate() {
116 $params = array(
117 'name' => 'test membership status',
118 );
119 $result = $this->callAPISuccess('membership_status', 'create', $params);
120 $id = $result['id'];
121 $result = $this->callAPISuccess('membership_status', 'get', $params);
122 $this->assertEquals('test membership status', $result['values'][$id]['name']);
123 $newParams = array(
124 'id' => $id,
125 'name' => 'renamed',
126 );
127 $result = $this->callAPISuccess('membership_status', 'create', $newParams);
128 $result = $this->callAPISuccess('membership_status', 'get', array('id' => $id));
129 $this->assertEquals('renamed', $result['values'][$id]['name']);
130 $this->membershipStatusDelete($result['id']);
131 }
132
133
134 ///////////////// civicrm_membership_status_delete methods
135
136 /**
137 * Attempt (and fail) to delete membership status without an parameters.
138 */
139 public function testDeleteEmptyParams() {
140 $result = $this->callAPIFailure('membership_status', 'delete', array());
141 }
142
143 public function testDeleteWithMissingRequired() {
144 $params = array('title' => 'Does not make sense');
145 $result = $this->callAPIFailure('membership_status', 'delete', $params);
146 }
147
148 public function testDelete() {
149 $membershipID = $this->membershipStatusCreate();
150 $params = array(
151 'id' => $membershipID,
152 );
153 $result = $this->callAPISuccess('membership_status', 'delete', $params);
154 }
155
156 /**
157 * Test that trying to delete membership status while membership still exists creates error.
158 */
159 public function testDeleteWithMembershipError() {
160 $membershipStatusID = $this->membershipStatusCreate();
161 $this->_contactID = $this->individualCreate();
162 $this->_entity = 'membership';
163 $params = array(
164 'contact_id' => $this->_contactID,
165 'membership_type_id' => $this->_membershipTypeID,
166 'join_date' => '2009-01-21',
167 'start_date' => '2009-01-21',
168 'end_date' => '2009-12-21',
169 'source' => 'Payment',
170 'is_override' => 1,
171 'status_id' => $membershipStatusID,
172 );
173
174 $result = $this->callAPISuccess('membership', 'create', $params);
175 $membershipID = $result['id'];
176
177 $params = array(
178 'id' => $membershipStatusID,
179 );
180 $result = $this->callAPIFailure('membership_status', 'delete', $params);
181
182 $this->callAPISuccess('Membership', 'Delete', array(
183 'id' => $membershipID,
184 ));
185 $result = $this->callAPISuccess('membership_status', 'delete', $params);
186 }
187
188 }