1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* This file is part of phiremock-codeception-extension. |
5
|
|
|
* |
6
|
|
|
* phiremock-codeception-extension is free software: you can redistribute it and/or modify |
7
|
|
|
* it under the terms of the GNU Lesser General Public License as published by |
8
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
9
|
|
|
* (at your option) any later version. |
10
|
|
|
* |
11
|
|
|
* phiremock-codeception-extension is distributed in the hope that it will be useful, |
12
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14
|
|
|
* GNU General Public License for more details. |
15
|
|
|
* |
16
|
|
|
* You should have received a copy of the GNU General Public License |
17
|
|
|
* along with phiremock-codeception-extension. If not, see <http://www.gnu.org/licenses/>. |
18
|
|
|
*/ |
19
|
|
|
|
20
|
|
|
namespace Mcustiel\Phiremock\Codeception\Util; |
21
|
|
|
|
22
|
|
|
use Codeception\Configuration; |
23
|
|
|
use Codeception\Exception\ConfigurationException; |
24
|
|
|
use RuntimeException; |
25
|
|
|
|
26
|
|
|
class DirectoryPath |
27
|
|
|
{ |
28
|
|
|
/** @var string */ |
29
|
|
|
private $path; |
30
|
|
|
|
31
|
|
|
/** @throws ConfigurationException */ |
32
|
|
|
public function __construct(string $path) |
33
|
|
|
{ |
34
|
|
|
$this->ensureDirectoryExists($path); |
35
|
|
|
$this->path = $path; |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
public function asString(): string |
39
|
|
|
{ |
40
|
|
|
return $this->path; |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
/** @throws ConfigurationException */ |
44
|
|
|
public static function createAndGetInstance(string $path): self |
45
|
|
|
{ |
46
|
|
|
if (!is_dir($path)) { |
47
|
|
|
$created = mkdir($path); |
48
|
|
|
if (!$created) { |
49
|
|
|
throw new RuntimeException('Could not create directory ' . $path); |
50
|
|
|
} |
51
|
|
|
} |
52
|
|
|
return new self($path); |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
/** @throws ConfigurationException */ |
56
|
|
|
public static function createAbsoluteOrRelativeToCodeceptionDir(string $path): self |
57
|
|
|
{ |
58
|
|
|
if (preg_match('~^(?:[a-z]:\\\|/)~i', $path) === 1) { |
59
|
|
|
return new self($path); |
60
|
|
|
} |
61
|
|
|
return new self(Configuration::projectDir() . $path); |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** @throws ConfigurationException */ |
65
|
|
|
private function ensureDirectoryExists(string $path): void |
66
|
|
|
{ |
67
|
|
|
if (!is_dir($path)) { |
68
|
|
|
throw new ConfigurationException('Could not find the configured expectations path: ' . $path); |
69
|
|
|
} |
70
|
|
|
} |
71
|
|
|
} |
72
|
|
|
|