INFRA-132 - tests/ - phpcbf
[civicrm-core.git] / tests / phpunit / api / v3 / ParticipantStatusTypeTest.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 4.6 |
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2014 |
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
31 /**
32 * Class api_v3_ParticipantStatusTypeTest
33 */
34 class api_v3_ParticipantStatusTypeTest extends CiviUnitTestCase {
35 protected $_apiversion;
36 protected $params;
37 protected $id;
38
39 public $DBResetRequired = FALSE;
40
41 public function setUp() {
42 $this->_apiversion = 3;
43 $this->params = array(
44 'name' => 'test status',
45 'label' => 'I am a test',
46 'class' => 'Positive',
47 'is_reserved' => 0,
48 'is_active' => 1,
49 'is_counted' => 1,
50 'visibility_id' => 1,
51 'weight' => 10,
52 );
53 parent::setUp();
54 $this->useTransaction(TRUE);
55 }
56
57 public function testCreateParticipantStatusType() {
58 $result = $this->callAPIAndDocument('participant_status_type', 'create', $this->params, __FUNCTION__, __FILE__);
59 $this->assertEquals(1, $result['count'], 'In line ' . __LINE__);
60 $this->assertNotNull($result['values'][$result['id']]['id'], 'In line ' . __LINE__);
61 }
62
63 public function testGetParticipantStatusType() {
64 $result = $this->callAPIAndDocument('participant_status_type', 'create', $this->params, __FUNCTION__, __FILE__);
65 $this->assertEquals(1, $result['count'], 'In line ' . __LINE__);
66
67 $result = $this->callAPIAndDocument('participant_status_type', 'get', $this->params, __FUNCTION__, __FILE__);
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 = $this->callAPISuccess('ParticipantStatusType', 'Create', $this->params);
76 $entity = $this->callAPISuccess('participant_status_type', 'get', array());
77 $result = $this->callAPIAndDocument('participant_status_type', 'delete', array('id' => $ParticipantStatusType['id']), __FUNCTION__, __FILE__);
78 $getCheck = $this->callAPISuccess('ParticipantStatusType', 'GET', array('id' => $ParticipantStatusType['id']));
79 $checkDeleted = $this->callAPISuccess('ParticipantStatusType', 'Get', array());
80 $this->assertEquals($entity['count'] - 1, $checkDeleted['count'], 'In line ' . __LINE__);
81 }
82 }