CRM-13072 upgrade Paritipant Payment test classes to pass
[civicrm-core.git] / tests / phpunit / api / v3 / ParticipantStatusTypeTest.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 4.3 |
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2013 |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27 */
28
29 require_once 'CiviTest/CiviUnitTestCase.php';
30 class api_v3_ParticipantStatusTypeTest extends CiviUnitTestCase {
31 protected $_apiversion;
32 protected $params;
33 protected $id;
34 public $_eNoticeCompliant = TRUE;
35
36 public $DBResetRequired = FALSE;
37
38 function setUp() {
39 $this->_apiversion = 3;
40 $this->params = array(
41 'version' => 3,
42 'name' => 'test status',
43 'label' => 'I am a test',
44 'class' => 'Positive',
45 'is_reserved' => 0,
46 'is_active' => 1,
47 'is_counted' => 1,
48 'visibility_id' => 1,
49 'weight' => 10,
50 );
51 parent::setUp();
52 }
53
54 function tearDown() {}
55
56 public function testCreateParticipantStatusType() {
57 $result = civicrm_api('participant_status_type', 'create', $this->params);
58 $this->documentMe($this->params, $result, __FUNCTION__, __FILE__);
59 $this->assertEquals(0, $result['is_error'], 'In line ' . __LINE__);
60 $this->assertEquals(1, $result['count'], 'In line ' . __LINE__);
61 $this->assertNotNull($result['values'][$result['id']]['id'], 'In line ' . __LINE__);
62 }
63
64 public function testGetParticipantStatusType() {
65 $result = civicrm_api('participant_status_type', 'get', $this->params);
66 $this->documentMe($this->params, $result, __FUNCTION__, __FILE__);
67 $this->assertEquals(0, $result['is_error'], 'In line ' . __LINE__);
68 $this->assertEquals(1, $result['count'], 'In line ' . __LINE__);
69 $this->assertNotNull($result['values'][$result['id']]['id'], 'In line ' . __LINE__);
70 $this->id = $result['id'];
71 }
72
73 public function testDeleteParticipantStatusType() {
74
75 $ParticipantStatusType = civicrm_api('ParticipantStatusType', 'Create', $this->params);
76 $entity = civicrm_api('participant_status_type', 'get', array('version' => 3));
77 $result = civicrm_api('participant_status_type', 'delete', array('version' => 3, 'id' => $ParticipantStatusType['id']));
78 $this->documentMe($this->params, $result, __FUNCTION__, __FILE__);
79 $this->assertEquals(0, $result['is_error'], 'In line ' . __LINE__);
80 $getCheck = civicrm_api('ParticipantStatusType', 'GET', array('version' => 3, 'id' => $ParticipantStatusType['id']));
81 $checkDeleted = civicrm_api('ParticipantStatusType', 'Get', array(
82 'version' => 3,
83 ));
84 $this->assertEquals($entity['count'] - 1, $checkDeleted['count'], 'In line ' . __LINE__);
85 }
86 }
87