Fixed tests
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
9fa49c7f24
commit
1ae126a781
|
@ -319,7 +319,7 @@ class SCSSCacher {
|
||||||
*/
|
*/
|
||||||
private function getWebDir($path, $appName, $serverRoot, $webRoot) {
|
private function getWebDir($path, $appName, $serverRoot, $webRoot) {
|
||||||
// Detect if path is within server root AND if path is within an app path
|
// Detect if path is within server root AND if path is within an app path
|
||||||
if ( !strpos($path, $serverRoot) && $appWebPath = \OC_App::getAppWebPath($appName) ) {
|
if ( strpos($path, $serverRoot) === false && $appWebPath = \OC_App::getAppWebPath($appName)) {
|
||||||
// Get the file path within the app directory
|
// Get the file path within the app directory
|
||||||
$appDirectoryPath = explode($appName, $path)[1];
|
$appDirectoryPath = explode($appName, $path)[1];
|
||||||
// Remove the webroot
|
// Remove the webroot
|
||||||
|
|
|
@ -12,6 +12,17 @@ use OC\Files\View;
|
||||||
use OC_Helper;
|
use OC_Helper;
|
||||||
|
|
||||||
class LegacyHelperTest extends \Test\TestCase {
|
class LegacyHelperTest extends \Test\TestCase {
|
||||||
|
/** @var string */
|
||||||
|
private $originalWebRoot;
|
||||||
|
|
||||||
|
public function setUp() {
|
||||||
|
$this->originalWebRoot = \OC::$WEBROOT;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function tearDown() {
|
||||||
|
// Reset webRoot
|
||||||
|
\OC::$WEBROOT = $this->originalWebRoot;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider humanFileSizeProvider
|
* @dataProvider humanFileSizeProvider
|
||||||
|
|
|
@ -384,17 +384,6 @@ class SCSSCacherTest extends \Test\TestCase {
|
||||||
$this->assertEquals(substr($result, 1), $actual);
|
$this->assertEquals(substr($result, 1), $actual);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function dataGetWebDir() {
|
|
||||||
return [
|
|
||||||
['/http/core/css', 'core', '', '/http', '/core/css'],
|
|
||||||
['/http/apps/test/css', 'test', '', '/http', '/apps/test/css'],
|
|
||||||
['/http/nextcloud/core/css', 'core', '/nextcloud', '/http/nextcloud', '/nextcloud/core/css'],
|
|
||||||
['/http/nextcloud/apps/test/css', 'test', '/nextcloud', '/http/nextcloud', '/nextcloud/apps/test/css'],
|
|
||||||
['/srv/apps2/test/css', 'test', '', '/http', '/apps2/test/css'],
|
|
||||||
['/srv/apps2/test/css', 'test', '/nextcloud', '/http/nextcloud', '/apps2/test/css']
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
private function randomString() {
|
private function randomString() {
|
||||||
return sha1(uniqid(mt_rand(), true));
|
return sha1(uniqid(mt_rand(), true));
|
||||||
}
|
}
|
||||||
|
@ -411,6 +400,19 @@ class SCSSCacherTest extends \Test\TestCase {
|
||||||
return rmdir($directory);
|
return rmdir($directory);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function dataGetWebDir() {
|
||||||
|
return [
|
||||||
|
// Root installation
|
||||||
|
['/http/core/css', 'core', '', '/http', '/core/css'],
|
||||||
|
['/http/apps/scss/css', 'scss', '', '/http', '/apps/scss/css'],
|
||||||
|
['/srv/apps2/scss/css', 'scss', '', '/http', '/apps2/scss/css'],
|
||||||
|
// Sub directory install
|
||||||
|
['/http/nextcloud/core/css', 'core', '/nextcloud', '/http/nextcloud', '/nextcloud/core/css'],
|
||||||
|
['/http/nextcloud/apps/scss/css', 'scss', '/nextcloud', '/http/nextcloud', '/nextcloud/apps/scss/css'],
|
||||||
|
['/srv/apps2/scss/css', 'scss', '/nextcloud', '/http/nextcloud', '/apps2/scss/css']
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $path
|
* @param $path
|
||||||
* @param $appName
|
* @param $appName
|
||||||
|
|
|
@ -27,6 +27,8 @@ class UrlGeneratorTest extends \Test\TestCase {
|
||||||
private $request;
|
private $request;
|
||||||
/** @var IURLGenerator */
|
/** @var IURLGenerator */
|
||||||
private $urlGenerator;
|
private $urlGenerator;
|
||||||
|
/** @var string */
|
||||||
|
private $originalWebRoot;
|
||||||
|
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
@ -38,6 +40,12 @@ class UrlGeneratorTest extends \Test\TestCase {
|
||||||
$this->cacheFactory,
|
$this->cacheFactory,
|
||||||
$this->request
|
$this->request
|
||||||
);
|
);
|
||||||
|
$this->originalWebRoot = \OC::$WEBROOT;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function tearDown() {
|
||||||
|
// Reset webRoot
|
||||||
|
\OC::$WEBROOT = $this->originalWebRoot;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function mockBaseUrl() {
|
private function mockBaseUrl() {
|
||||||
|
@ -47,7 +55,6 @@ class UrlGeneratorTest extends \Test\TestCase {
|
||||||
$this->request->expects($this->once())
|
$this->request->expects($this->once())
|
||||||
->method('getServerHost')
|
->method('getServerHost')
|
||||||
->willReturn('localhost');
|
->willReturn('localhost');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -156,4 +163,3 @@ class UrlGeneratorTest extends \Test\TestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue