test break fixes
[civicrm-core.git] / tests / phpunit / api / v3 / ParticipantStatusTypeTest.php
CommitLineData
6a488035 1<?php
6a488035 2
b6708aeb 3/*
4 +--------------------------------------------------------------------+
39de6fd5 5| CiviCRM version 4.6 |
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
430ae6dd
TO
39 public $DBResetRequired = FALSE;
40
00be9182 41 public function setUp() {
6a488035
TO
42 $this->_apiversion = 3;
43 $this->params = array(
6a488035
TO
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();
7ef5ded0 54 $this->useTransaction(TRUE);
6a488035
TO
55 }
56
6a488035 57 public function testCreateParticipantStatusType() {
0505d9d2 58 $result = $this->callAPIAndDocument('participant_status_type', 'create', $this->params, __FUNCTION__, __FILE__);
6a488035
TO
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() {
7ef5ded0
TO
64 $result = $this->callAPIAndDocument('participant_status_type', 'create', $this->params, __FUNCTION__, __FILE__);
65 $this->assertEquals(1, $result['count'], 'In line ' . __LINE__);
66
0505d9d2 67 $result = $this->callAPIAndDocument('participant_status_type', 'get', $this->params, __FUNCTION__, __FILE__);
6a488035
TO
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
0505d9d2 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']));
6c6e6187 79 $checkDeleted = $this->callAPISuccess('ParticipantStatusType', 'Get', array());
6a488035
TO
80 $this->assertEquals($entity['count'] - 1, $checkDeleted['count'], 'In line ' . __LINE__);
81 }
82}