tests/ - Remove get_info()
[civicrm-core.git] / tests / phpunit / CRM / Financial / BAO / FinancialTypeTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06a1bc01 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06a1bc01 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27require_once 'CiviTest/CiviUnitTestCase.php';
6a488035 28
e9479dcf
EM
29/**
30 * Class CRM_Financial_BAO_FinancialTypeTest
31 */
6a488035
TO
32class CRM_Financial_BAO_FinancialTypeTest extends CiviUnitTestCase {
33
6a488035
TO
34 function setUp() {
35 parent::setUp();
36 }
37
f17d75bb
PN
38 function teardown() {
39 $this->financialAccountDelete('Donations');
40 }
41
6a488035 42 /**
100fef9d 43 * Check method add()
6a488035
TO
44 */
45 function testAdd() {
46 $params = array(
47 'name' => 'Donations',
48 'is_active' => 1,
49 'is_deductible' => 1,
50 'is_reserved' => 1,
51 );
52 $ids = array();
53 $financialType = CRM_Financial_BAO_FinancialType::add($params, $ids);
54 $result = $this->assertDBNotNull(
55 'CRM_Financial_DAO_FinancialType',
56 $financialType->id ,
57 'name',
58 'id',
59 'Database check on added financial type record.'
60 );
61 $this->assertEquals( $result, 'Donations', 'Verify Name for Financial Type');
62 }
63
64 /**
100fef9d 65 * Check method retrive()
6a488035
TO
66 */
67 function testRetrieve() {
68 $params = array(
69 'name' => 'Donations',
70 'is_active' => 1,
71 'is_deductible' => 1,
72 'is_reserved' => 1,
73 );
74
75 $ids = array();
76 CRM_Financial_BAO_FinancialType::add($params, $ids);
77
78 $defaults = array();
79 $result = CRM_Financial_BAO_FinancialType::retrieve($params, $defaults);
f17d75bb 80 $this->assertEquals($result->name, 'Donations', 'Verify Name for Financial Type');
6a488035
TO
81 }
82
83 /**
100fef9d 84 * Check method setIsActive()
6a488035
TO
85 */
86 function testSetIsActive() {
87 $params = array(
f17d75bb 88 'name' => 'Donations',
6a488035
TO
89 'is_deductible' => 0,
90 'is_active' => 1,
91 );
92 $ids = array();
93 $financialType = CRM_Financial_BAO_FinancialType::add($params, $ids);
94 $result = CRM_Financial_BAO_FinancialType::setIsActive($financialType->id, 0);
f17d75bb 95 $this->assertEquals($result, true , 'Verify financial type record updation for is_active.');
6a488035
TO
96 $isActive = $this->assertDBNotNull(
97 'CRM_Financial_DAO_FinancialType',
98 $financialType->id ,
99 'is_active',
100 'id',
101 'Database check on updated for financial type is_active.'
102 );
f17d75bb 103 $this->assertEquals($isActive, 0, 'Verify financial types is_active.');
6a488035
TO
104 }
105
106 /**
100fef9d 107 * Check method del()
6a488035
TO
108 */
109 function testDel() {
110 $params = array(
f17d75bb 111 'name' => 'Donations',
6a488035
TO
112 'is_deductible' => 0,
113 'is_active' => 1,
114 );
115 $ids = array();
116 $financialType = CRM_Financial_BAO_FinancialType::add($params, $ids);
117
118 CRM_Financial_BAO_FinancialType::del($financialType->id);
f17d75bb 119 $params = array('id' => $financialType->id);
6a488035 120 $result = CRM_Financial_BAO_FinancialType::retrieve($params, $defaults);
f17d75bb 121 $this->assertEquals(empty($result), true, 'Verify financial types record deletion.');
6a488035 122 }
232624b1 123}