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