Merge pull request #4809 from totten/master-cs2
[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][text()='{$financialAccountTitle}']/../td[9]/span/a[text()='Edit']");
72
73 $this->clickLink("xpath=//table/tbody//tr/td[1][text()='{$financialAccountTitle}']/../td[9]/span/a[text()='Edit']", '_qf_FinancialAccount_cancel-botttom', FALSE);
74 //Varify Data after Adding new Financial Account
75 $verifyData = array('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][text()='{$financialAccountTitle}']/../td[9]/span/a[text()='Edit']");
120 $this->clickLink("xpath=//table/tbody//tr/td[1][text()='{$financialAccountTitle}']/../td[9]/span/a[text()='Edit']", '_qf_FinancialAccount_cancel-botttom', FALSE);
121
122 $verifyData = array( 'name' => $financialAccountTitle,
123 'description' => $financialAccountDescription,
124 'accounting_code' => $accountingCode,
125 'tax_rate' => $taxRate,
126 'is_tax' => 'on',
127 'is_deductible' => 'off',
128 'is_default' => 'off',
129 );
130
131 $this->assertEquals($orgName, $this->getText("xpath=//*[@id='s2id_contact_id']/a/span[1]"));
132
133 $this->_assertFinancialAccount($verifyData);
134 $verifySelectFieldData = array('financial_account_type_id' => $financialAccountType);
135 $this->_assertSelectVerify($verifySelectFieldData);
136 $this->click('_qf_FinancialAccount_cancel-botttom');
137 $this->waitForElementPresent("xpath=//table/tbody//tr/td[1][text()='{$financialAccountTitle}']/../td[9]/span/a[text()='Delete']");
138
139 //Delete Financial Account
140 $this->_testDeleteFinancialAccount($financialAccountTitle);
141 }
142 }