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

BaseTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 22
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A fixupIncludePathData() 0 12 1
A testFixupIncludePath() 0 4 1
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