Merge pull request #4764 from rohankatkar/CRM-15615
[civicrm-core.git] / tests / phpunit / api / v3 / ParticipantStatusTypeTest.php
CommitLineData
6a488035 1<?php
6a488035 2
b6708aeb 3/*
4 +--------------------------------------------------------------------+
06a1bc01 5| CiviCRM version 4.5 |
b6708aeb 6+--------------------------------------------------------------------+
06a1bc01 7| Copyright CiviCRM LLC (c) 2004-2014 |
b6708aeb 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*/
6a488035
TO
28
29require_once 'CiviTest/CiviUnitTestCase.php';
e9479dcf
EM
30
31/**
32 * Class api_v3_ParticipantStatusTypeTest
33 */
6a488035
TO
34class api_v3_ParticipantStatusTypeTest extends CiviUnitTestCase {
35 protected $_apiversion;
36 protected $params;
37 protected $id;
b7c9bc4c 38
6a488035 39
430ae6dd
TO
40 public $DBResetRequired = FALSE;
41
42 function setUp() {
6a488035
TO
43 $this->_apiversion = 3;
44 $this->params = array(
6a488035
TO
45 'name' => 'test status',
46 'label' => 'I am a test',
47 'class' => 'Positive',
48 'is_reserved' => 0,
49 'is_active' => 1,
50 'is_counted' => 1,
51 'visibility_id' => 1,
52 'weight' => 10,
53 );
54 parent::setUp();
55 }
56
57 function tearDown() {}
58
59 public function testCreateParticipantStatusType() {
0505d9d2 60 $result = $this->callAPIAndDocument('participant_status_type', 'create', $this->params, __FUNCTION__, __FILE__);
6a488035
TO
61 $this->assertEquals(1, $result['count'], 'In line ' . __LINE__);
62 $this->assertNotNull($result['values'][$result['id']]['id'], 'In line ' . __LINE__);
63 }
64
65 public function testGetParticipantStatusType() {
0505d9d2 66 $result = $this->callAPIAndDocument('participant_status_type', 'get', $this->params, __FUNCTION__, __FILE__);
6a488035
TO
67 $this->assertEquals(1, $result['count'], 'In line ' . __LINE__);
68 $this->assertNotNull($result['values'][$result['id']]['id'], 'In line ' . __LINE__);
69 $this->id = $result['id'];
70 }
71
72 public function testDeleteParticipantStatusType() {
73
0505d9d2 74 $ParticipantStatusType = $this->callAPISuccess('ParticipantStatusType', 'Create', $this->params);
75 $entity = $this->callAPISuccess('participant_status_type', 'get', array());
76 $result = $this->callAPIAndDocument('participant_status_type', 'delete', array('id' => $ParticipantStatusType['id']), __FUNCTION__, __FILE__);
77 $getCheck = $this->callAPISuccess('ParticipantStatusType', 'GET', array('id' => $ParticipantStatusType['id']));
78 $checkDeleted = $this->callAPISuccess('ParticipantStatusType', 'Get', array(
79 ));
6a488035
TO
80 $this->assertEquals($entity['count'] - 1, $checkDeleted['count'], 'In line ' . __LINE__);
81 }
82}
83