19 declare(strict_types=1);
34 public function _getDataDirectoryPath()
36 return $this->getDataDirectoryPath();
43 $this->assertIsString($this->o->getHash());
48 $this->assertIsString($this->o->getLabel());
53 $this->assertFalse($this->o->isNotable());
58 $env = $this->createMock(
Setup\Environment::class);
60 $pre = $this->o->getPreconditions($env);
61 $this->assertEquals([], $pre);
66 $env = $this->createMock(
Setup\Environment::class);
68 $mock = $this->getMockBuilder(ClientIdReadObjective::class)
69 ->onlyMethods([
"getDataDirectoryPath",
"scanDirectory",
"isDirectory"])
72 $DATA_DIR =
"/foo/bar/data";
73 $SOME_DIR =
"clientid";
74 $SOME_FILE =
"some_file";
75 $SCAN_RESULT = [
".",
"..", $SOME_DIR, $SOME_FILE];
78 ->expects($this->once())
79 ->method(
"getDataDirectoryPath")
80 ->willReturn($DATA_DIR);
83 ->expects($this->once())
84 ->method(
"scanDirectory")
86 ->willReturn($SCAN_RESULT);
89 [$DATA_DIR .
"/" . $SOME_DIR,
true],
90 [$DATA_DIR .
"/" . $SOME_FILE,
false]
93 ->expects($this->exactly(2))
94 ->method(
"isDirectory")
96 function (
$path) use (&$consecutive):
bool {
97 list($expected, $return) = array_shift($consecutive);
98 $this->assertEquals($expected,
$path);
104 ->expects($this->once())
105 ->method(
"withResource")
109 $res = $mock->achieve($env);
110 $this->assertSame($env,
$res);
115 $base = dirname(__DIR__, 5);
116 $this->assertEquals($base .
"/public/data", $this->o->_getDataDirectoryPath());
Read the client id of the installation from the data directory.
testGetDataDirectoryPath()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...