Server IP : 127.0.0.2 / Your IP : 3.16.10.2 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/vendor/dnoegel/php-xdg-base-dir/tests/ |
Upload File : |
<?php class XdgTest extends PHPUnit_Framework_TestCase { /** * @return \XdgBaseDir\Xdg */ public function getXdg() { return new \XdgBaseDir\Xdg(); } public function testGetHomeDir() { putenv('HOME=/fake-dir'); $this->assertEquals('/fake-dir', $this->getXdg()->getHomeDir()); } public function testGetFallbackHomeDir() { putenv('HOME='); putenv('HOMEDRIVE=C:'); putenv('HOMEPATH=fake-dir'); $this->assertEquals('C:/fake-dir', $this->getXdg()->getHomeDir()); } public function testXdgPutCache() { putenv('XDG_DATA_HOME=tmp/'); putenv('XDG_CONFIG_HOME=tmp/'); putenv('XDG_CACHE_HOME=tmp/'); $this->assertEquals('tmp/', $this->getXdg()->getHomeCacheDir()); } public function testXdgPutData() { putenv('XDG_DATA_HOME=tmp/'); $this->assertEquals('tmp/', $this->getXdg()->getHomeDataDir()); } public function testXdgPutConfig() { putenv('XDG_CONFIG_HOME=tmp/'); $this->assertEquals('tmp/', $this->getXdg()->getHomeConfigDir()); } public function testXdgDataDirsShouldIncludeHomeDataDir() { putenv('XDG_DATA_HOME=tmp/'); putenv('XDG_CONFIG_HOME=tmp/'); $this->assertArrayHasKey('tmp/', array_flip($this->getXdg()->getDataDirs())); } public function testXdgConfigDirsShouldIncludeHomeConfigDir() { putenv('XDG_CONFIG_HOME=tmp/'); $this->assertArrayHasKey('tmp/', array_flip($this->getXdg()->getConfigDirs())); } /** * If XDG_RUNTIME_DIR is set, it should be returned */ public function testGetRuntimeDir() { putenv('XDG_RUNTIME_DIR=/tmp/'); $runtimeDir = $this->getXdg()->getRuntimeDir(); $this->assertEquals(is_dir($runtimeDir), true); } /** * In strict mode, an exception should be shown if XDG_RUNTIME_DIR does not exist * * @expectedException \RuntimeException */ public function testGetRuntimeDirShouldThrowException() { putenv('XDG_RUNTIME_DIR='); $this->getXdg()->getRuntimeDir(true); } /** * In fallback mode a directory should be created */ public function testGetRuntimeDirShouldCreateDirectory() { putenv('XDG_RUNTIME_DIR='); $dir = $this->getXdg()->getRuntimeDir(false); $permission = decoct(fileperms($dir) & 0777); $this->assertEquals(700, $permission); } /** * Ensure, that the fallback directories are created with correct permission */ public function testGetRuntimeShouldDeleteDirsWithWrongPermission() { $runtimeDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . XdgBaseDir\Xdg::RUNTIME_DIR_FALLBACK . getenv('USER'); rmdir($runtimeDir); mkdir($runtimeDir, 0764, true); // Permission should be wrong now $permission = decoct(fileperms($runtimeDir) & 0777); $this->assertEquals(764, $permission); putenv('XDG_RUNTIME_DIR='); $dir = $this->getXdg()->getRuntimeDir(false); // Permission should be fixed $permission = decoct(fileperms($dir) & 0777); $this->assertEquals(700, $permission); } }