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