]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/ValidDBNameTest.php
Release 6.2.2
[Github/sugarcrm.git] / tests / include / ValidDBNameTest.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37  
38 require_once("include/utils.php");
39
40 class ValidDBNameTest extends Sugar_PHPUnit_Framework_TestCase
41 {
42     public function testShortNameUneffected()
43     {
44         $this->assertEquals(
45             'idx_test_123_id',
46             getValidDBName('idx_test_123_id')
47         );
48     }
49     
50     public function testLongNameEffected()
51     {
52         $this->assertNotEquals(
53             getValidDBName('eeeee_eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee_opportunities'),
54             getValidDBName('eeeee_eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1_opportunities')
55         );
56     }
57
58     public function testmaxLengthParam()
59     {
60         $this->assertEquals(
61             'idx_test_123_456_789_foo_bar_id',
62             getValidDBName('idx_test_123_456_789_foo_bar_id', false, 40)
63         );
64     }
65
66     public function testEnsureUnique()
67     {
68         $this->assertEquals(
69             getValidDBName('idx_test_123_456_789_foo_bar_id', true),
70             getValidDBName('idx_test_123_456_789_foo_bar_id', true)
71         );
72
73         $this->assertNotEquals(
74             getValidDBName('idx_test_123_456_789_foo_bar_id', true),
75             getValidDBName('idx_test_123_446_789_foo_bar_id', true)
76         );
77     }
78
79     public function testValidMySQLNameReturnsTrue()
80     {
81         $this->assertTrue(isValidDBName('sugarCRM', 'mysql'));
82         $this->assertTrue(isValidDBName('sugar-crm', 'mysql'));
83         $this->assertTrue(isValidDBName('sugar_crm', 'mysql'));
84         $this->assertTrue(isValidDBName('sugar-crm', 'mysql'));
85         $this->assertTrue(isValidDBName('sugar-CRM_ver6', 'mysql'));
86     }
87
88     public function testInvalidMySQLNameReturnsFalse()
89     {
90         $this->assertFalse(isValidDBName('sugar/crm', 'mysql'));
91         $this->assertFalse(isValidDBName('sugar\crm', 'mysql'));
92         $this->assertFalse(isValidDBName('sugar.crm', 'mysql'));
93     }
94
95     public function testValidOracleNameReturnsTrue()
96     {
97         $this->assertTrue(isValidDBName('sugarCRM', 'oci8'));
98         $this->assertTrue(isValidDBName('sugar_crm', 'oci8'));
99         $this->assertTrue(isValidDBName('sugarCRM_ver6', 'oci8'));
100     }
101
102     public function testInvalidOracleNameReturnsFalse()
103     {
104         $this->assertFalse(isValidDBName('sugar\CRM', 'oci8'));
105         $this->assertFalse(isValidDBName('sugar crm', 'oci8'));
106         $this->assertFalse(isValidDBName('sugarCRM_ver#63', 'oci8'));
107     }
108
109     public function testValidMSSQLNameReturnsTrue()
110     {
111         $this->assertTrue(isValidDBName('sugarCRM', 'mssql'));
112         $this->assertTrue(isValidDBName('sugar_crm', 'mssql'));
113         $this->assertTrue(isValidDBName('sugarCRM_ver6', 'mssql'));
114     }
115
116     public function testInvalidMSSQLNameReturnsFalse()
117     {
118         $this->assertFalse(isValidDBName('622sugarCRM', 'mssql'));
119         $this->assertFalse(isValidDBName('sugar crm', 'mssql'));
120         $this->assertFalse(isValidDBName('#sugarCRM_ver6', 'mssql'));
121     }
122 }