Merge pull request #3614 from eileenmcnaughton/CRM-14951
[civicrm-core.git] / tests / phpunit / CRM / Contribute / BAO / ContributionTypeTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 require_once 'CiviTest/CiviUnitTestCase.php';
29
30 /**
31 * Class CRM_Contribute_BAO_ContributionTypeTest
32 */
33 class CRM_Contribute_BAO_ContributionTypeTest extends CiviUnitTestCase {
34 /**
35 * @return array
36 */
37 function get_info() {
38 return array(
39 'name' => 'FinancialAccount BAOs',
40 'description' => 'Test all Contribute_BAO_Contribution methods.',
41 'group' => 'CiviCRM BAO Tests',
42 );
43 }
44
45 function setUp() {
46 parent::setUp();
47 $this->organizationCreate();
48 }
49
50 function teardown() {
51 $this->financialAccountDelete('Donations');
52 }
53
54 /**
55 * check method add()
56 */
57 function testAdd() {
58 $params = array(
59 'name' => 'Donations',
60 'is_deductible' => 0,
61 'is_active' => 1,
62 );
63 $ids = array();
64 $contributionType = CRM_Financial_BAO_FinancialType::add($params, $ids);
65
66 $result = $this->assertDBNotNull('CRM_Financial_BAO_FinancialType', $contributionType->id,
67 'name', 'id',
68 'Database check on updated financial type record.'
69 );
70
71 $this->assertEquals($result, 'Donations', 'Verify financial type name.');
72 }
73
74 /**
75 * check method retrive()
76 */
77 function testRetrieve() {
78 $params = array(
79 'name' => 'Donations',
80 'is_deductible' => 0,
81 'is_active' => 1,
82 );
83 $ids = array();
84 $contributionType = CRM_Financial_BAO_FinancialType::add($params, $ids);
85
86 $defaults = array();
87 $result = CRM_Financial_BAO_FinancialType::retrieve($params, $defaults);
88
89 $this->assertEquals($result->name, 'Donations', 'Verify financial type name.');
90 }
91
92 /**
93 * check method setIsActive()
94 */
95 function testSetIsActive() {
96 $params = array(
97 'name' => 'Donations',
98 'is_deductible' => 0,
99 'is_active' => 1,
100 );
101 $ids = array();
102 $contributionType = CRM_Financial_BAO_FinancialType::add($params, $ids);
103 $result = CRM_Financial_BAO_FinancialType::setIsActive($contributionType->id, 0);
104 $this->assertEquals($result, TRUE, 'Verify financial type record updation for is_active.');
105
106 $isActive = $this->assertDBNotNull('CRM_Financial_BAO_FinancialType', $contributionType->id,
107 'is_active', 'id',
108 'Database check on updated for financial type is_active.'
109 );
110 $this->assertEquals($isActive, 0, 'Verify financial types is_active.');
111 }
112
113 /**
114 * check method del()
115 */
116 function testdel() {
117 $params = array(
118 'name' => 'Donations',
119 'is_deductible' => 0,
120 'is_active' => 1,
121 );
122 $ids = array();
123 $contributionType = CRM_Financial_BAO_FinancialType::add($params, $ids);
124
125 CRM_Financial_BAO_FinancialType::del($contributionType->id);
126 $params = array('id' => $contributionType->id);
127 $result = CRM_Financial_BAO_FinancialType::retrieve($params, $defaults);
128 $this->assertEquals(empty($result), TRUE, 'Verify financial types record deletion.');
129 }
130 }
131
132