Merge branch 4.5 into master
[civicrm-core.git] / tests / phpunit / WebTest / Financial / FinancialAccountTest.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 4.6 |
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 along 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/CiviSeleniumTestCase.php';
29
30 /**
31 * Class WebTest_Financial_FinancialAccountTest
32 */
33 class WebTest_Financial_FinancialAccountTest extends CiviSeleniumTestCase {
34
35 /**
36 * Test To Add Financial Account class attributes.
37 */
38 public function testFinancialAccount() {
39 $this->webtestLogin();
40
41 // Add new Financial Account
42 $orgName = 'Alberta ' . substr(sha1(rand()), 0, 7);
43 $uniqueName = explode(" ", $orgName);
44 $financialAccountTitle = 'Financial Account ' . substr(sha1(rand()), 0, 4);
45 $financialAccountDescription = "{$financialAccountTitle} Description";
46 $accountingCode = 1033;
47 $financialAccountType = 'Liability';
48 $taxDeductible = FALSE;
49 $isActive = TRUE;
50 $isTax = TRUE;
51 $taxRate = 9.99999999;
52 $isDefault = FALSE;
53
54 //Add new organisation
55 if ($orgName) {
56 $this->webtestAddOrganization($orgName);
57 }
58
59 $this->_testAddFinancialAccount($financialAccountTitle,
60 $financialAccountDescription,
61 $accountingCode,
62 $uniqueName[1],
63 $financialAccountType,
64 $taxDeductible,
65 $isActive,
66 $isTax,
67 $taxRate,
68 $isDefault
69 );
70
71 $this->waitForElementPresent("xpath=//table/tbody//tr/td[1]/div[text()='{$financialAccountTitle}']/../../td[9]/span/a[text()='Edit']");
72
73 $this->clickLink("xpath=//table/tbody//tr/td[1]/div[text()='{$financialAccountTitle}']/../../td[9]/span/a[text()='Edit']", '_qf_FinancialAccount_cancel-botttom', FALSE);
74 //Varify Data after Adding new Financial Account
75 $verifyData = array(
76 'name' => $financialAccountTitle,
77 'description' => $financialAccountDescription,
78 'accounting_code' => $accountingCode,
79 'tax_rate' => $taxRate,
80 'is_tax' => 'on',
81 'is_deductible' => 'off',
82 'is_default' => 'off',
83 );
84
85 $this->assertEquals($orgName, $this->getText("xpath=//*[@id='s2id_contact_id']/a/span[1]"));
86
87 $this->_assertFinancialAccount($verifyData);
88 $verifySelectFieldData = array('financial_account_type_id' => $financialAccountType);
89 $this->_assertSelectVerify($verifySelectFieldData);
90 $this->click('_qf_FinancialAccount_cancel-botttom');
91
92 //Edit Financial Account
93 $editfinancialAccount = $financialAccountTitle;
94 $financialAccountTitle .= ' Edited';
95 $orgNameEdit = FALSE;
96 $financialAccountType = 'Liability';
97
98 if ($orgNameEdit) {
99 $orgNameEdit = 'NGO ' . substr(sha1(rand()), 0, 7);
100 $this->webtestAddOrganization($orgNameEdit);
101 $uniqueName = explode(" ", $orgNameEdit);
102 }
103
104 $this->_testEditFinancialAccount($editfinancialAccount,
105 $financialAccountTitle,
106 $financialAccountDescription,
107 $accountingCode,
108 $uniqueName[1],
109 $financialAccountType,
110 $taxDeductible,
111 $isActive,
112 $isTax,
113 $taxRate,
114 $isDefault
115 );
116
117 if ($orgNameEdit) {
118 $orgName = $orgNameEdit;
119 }
120 $this->waitForElementPresent("xpath=//table/tbody//tr/td[1]/div[text()='{$financialAccountTitle}']/../../td[9]/span/a[text()='Edit']");
121 $this->clickLink("xpath=//table/tbody//tr/td[1]/div[text()='{$financialAccountTitle}']/../../td[9]/span/a[text()='Edit']", '_qf_FinancialAccount_cancel-botttom', FALSE);
122
123 $verifyData = array(
124 'name' => $financialAccountTitle,
125 'description' => $financialAccountDescription,
126 'accounting_code' => $accountingCode,
127 'tax_rate' => $taxRate,
128 'is_tax' => 'on',
129 'is_deductible' => 'off',
130 'is_default' => 'off',
131 );
132
133 $this->assertEquals($orgName, $this->getText("xpath=//*[@id='s2id_contact_id']/a/span[1]"));
134
135 $this->_assertFinancialAccount($verifyData);
136 $verifySelectFieldData = array('financial_account_type_id' => $financialAccountType);
137 $this->_assertSelectVerify($verifySelectFieldData);
138 $this->click('_qf_FinancialAccount_cancel-botttom');
139 $this->waitForElementPresent("xpath=//table/tbody//tr/td[1]/div[text()='{$financialAccountTitle}']/../../td[9]/span/a[text()='Delete']");
140
141 //Delete Financial Account
142 $this->_testDeleteFinancialAccount($financialAccountTitle);
143 }
144 }