tests/phpunit/** - Remove unnecessary "require_once" statements
[civicrm-core.git] / tests / phpunit / CRM / Financial / BAO / FinancialTypeTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 */
27
28 /**
29 * Class CRM_Financial_BAO_FinancialTypeTest
30 */
31 class CRM_Financial_BAO_FinancialTypeTest extends CiviUnitTestCase {
32
33 public function setUp() {
34 parent::setUp();
35 }
36
37 public function teardown() {
38 $this->financialAccountDelete('Donations');
39 }
40
41 /**
42 * Check method add()
43 */
44 public function testAdd() {
45 $params = array(
46 'name' => 'Donations',
47 'is_active' => 1,
48 'is_deductible' => 1,
49 'is_reserved' => 1,
50 );
51 $ids = array();
52 $financialType = CRM_Financial_BAO_FinancialType::add($params, $ids);
53 $result = $this->assertDBNotNull(
54 'CRM_Financial_DAO_FinancialType',
55 $financialType->id,
56 'name',
57 'id',
58 'Database check on added financial type record.'
59 );
60 $this->assertEquals($result, 'Donations', 'Verify Name for Financial Type');
61 }
62
63 /**
64 * Check method retrive()
65 */
66 public function testRetrieve() {
67 $params = array(
68 'name' => 'Donations',
69 'is_active' => 1,
70 'is_deductible' => 1,
71 'is_reserved' => 1,
72 );
73
74 $ids = array();
75 CRM_Financial_BAO_FinancialType::add($params, $ids);
76
77 $defaults = array();
78 $result = CRM_Financial_BAO_FinancialType::retrieve($params, $defaults);
79 $this->assertEquals($result->name, 'Donations', 'Verify Name for Financial Type');
80 }
81
82 /**
83 * Check method setIsActive()
84 */
85 public function testSetIsActive() {
86 $params = array(
87 'name' => 'Donations',
88 'is_deductible' => 0,
89 'is_active' => 1,
90 );
91 $ids = array();
92 $financialType = CRM_Financial_BAO_FinancialType::add($params, $ids);
93 $result = CRM_Financial_BAO_FinancialType::setIsActive($financialType->id, 0);
94 $this->assertEquals($result, TRUE, 'Verify financial type record updation for is_active.');
95 $isActive = $this->assertDBNotNull(
96 'CRM_Financial_DAO_FinancialType',
97 $financialType->id,
98 'is_active',
99 'id',
100 'Database check on updated for financial type is_active.'
101 );
102 $this->assertEquals($isActive, 0, 'Verify financial types is_active.');
103 }
104
105 /**
106 * Check method del()
107 */
108 public function testDel() {
109 $params = array(
110 'name' => 'Donations',
111 'is_deductible' => 0,
112 'is_active' => 1,
113 );
114 $ids = array();
115 $financialType = CRM_Financial_BAO_FinancialType::add($params, $ids);
116
117 CRM_Financial_BAO_FinancialType::del($financialType->id);
118 $params = array('id' => $financialType->id);
119 $result = CRM_Financial_BAO_FinancialType::retrieve($params, $defaults);
120 $this->assertEquals(empty($result), TRUE, 'Verify financial types record deletion.');
121 }
122
123 }