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