forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntegrationTester.php
65 lines (56 loc) · 1.42 KB
/
IntegrationTester.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
use Codeception\Actor;
use Codeception\Lib\Friend;
/**
* Inherited Methods
* @method void wantToTest($text)
* @method void wantTo($text)
* @method void execute($callable)
* @method void expectTo($prediction)
* @method void expect($prediction)
* @method void amGoingTo($argumentation)
* @method void am($role)
* @method void lookForwardTo($achieveValue)
* @method void comment($description)
* @method Friend haveFriend($name, $actorClass = null)
*
* @SuppressWarnings(PHPMD)
*/
class IntegrationTester extends Actor
{
use _generated\IntegrationTesterActions;
/**
* Define custom actions here
*/
/**
* Get file name from path
*
* @param mixed $path
* @param mixed $separator
*
* @return string
*/
public function preparePathToFileWithDelimiter($path, $separator): string
{
$virtual = '';
if (!is_string($path) || !is_string($separator)) {
if (is_string($path)) {
return $path;
} else {
return '';
}
}
for ($i = 0; $i < strlen($path); $i++) {
$ch = $path[$i];
if ($ch == '\0') {
break;
}
if ($ch == '/' || $ch == '\\' || $ch == ':') {
$virtual .= $separator;
} else {
$virtual .= strtolower($ch);
}
}
return $virtual;
}
}