Completed
Pull Request — stable8.2 (#27092)
by Victor
18:13
created

BaseTest::testFixupIncludePath()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
nc 1
nop 2
dl 0
loc 4
rs 10
c 1
b 0
f 0
1
<?php
2
/**
3
 * @author Victor Dubiniuk <[email protected]>
4
 *
5
 * @copyright Copyright (c) 2017, ownCloud, Inc.
6
 * @license AGPL-3.0
7
 *
8
 * This code is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU Affero General Public License, version 3,
10
 * as published by the Free Software Foundation.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
 * GNU Affero General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Affero General Public License, version 3,
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
19
 *
20
 */
21
22
namespace Test;
23
24
class BaseTest extends \PHPUnit_Framework_TestCase {
25
	public function fixupIncludePathData(){
26
		return [
27
			['', ''],
28
			['.', ''],
29
			['.:', ''],
30
			[':.', ''],
31
			['/usr/share/php7:/usr/share/php7/PEAR', '/usr/share/php7:/usr/share/php7/PEAR'],
32
			['.:/usr/share/php7:/usr/share/php7/PEAR', '/usr/share/php7:/usr/share/php7/PEAR'],
33
			['/usr/share/php7:/usr/share/php7/PEAR:.', '/usr/share/php7:/usr/share/php7/PEAR'],
34
			['/usr/share/php7:.:/usr/share/php7/PEAR', '/usr/share/php7:/usr/share/php7/PEAR'],
35
		];
36
	}
37
38
	/**
39
	 * @dataProvider fixupIncludePathData
40
	 */
41
	public function testFixupIncludePath($includePath, $expectedIncludePath){
42
		$actualIncludePath = \OC::fixupIncludePath($includePath);
43
		$this->assertEquals($expectedIncludePath, $actualIncludePath);
44
	}
45
}
46