Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2014-12-22-22-01-44
[civicrm-core.git] / tests / phpunit / api / v3 / ParticipantStatusTypeTest.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 4.5 |
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
40 public $DBResetRequired = FALSE;
41
42 function setUp() {
43 $this->_apiversion = 3;
44 $this->params = array(
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() {
60 $result = $this->callAPIAndDocument('participant_status_type', 'create', $this->params, __FUNCTION__, __FILE__);
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() {
66 $result = $this->callAPIAndDocument('participant_status_type', 'get', $this->params, __FUNCTION__, __FILE__);
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
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 ));
80 $this->assertEquals($entity['count'] - 1, $checkDeleted['count'], 'In line ' . __LINE__);
81 }
82 }
83