Skip to content
This repository was archived by the owner on Jan 23, 2019. It is now read-only.

Commit dfec85d

Browse files
committed
some update, add tests folder ...
1 parent 70c6335 commit dfec85d

14 files changed

+57
-13
lines changed

examples/s-autoload.php

+11-10
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,18 @@
1313
require dirname(__DIR__) . '/src/functions.php';
1414
require dirname(__DIR__) . '/src/exceptions.php';
1515

16-
spl_autoload_register(function($class)
17-
{
18-
$inhereDir = dirname(__DIR__, 2);
19-
$vendorDir = dirname(__DIR__, 3);
20-
$map = [
21-
'Inhere\Library\examples\\' => __DIR__,
22-
'Inhere\Library\\' => dirname(__DIR__) . '/src',
23-
'Inhere\Queue\\' => $inhereDir . '/queue/src',
24-
'Psr\Log\\' => $vendorDir . '/psr/log/Psr/Log',
25-
];
16+
$inhereDir = dirname(__DIR__, 2);
17+
$vendorDir = dirname(__DIR__, 3);
18+
$map = [
19+
'Inhere\Library\Examples\\' => __DIR__,
20+
'Inhere\Library\Tests\\' => dirname(__DIR__) . '/tests',
21+
'Inhere\Library\\' => dirname(__DIR__) . '/src',
22+
'Inhere\Queue\\' => $inhereDir . '/queue/src',
23+
'Psr\Log\\' => $vendorDir . '/psr/log/Psr/Log',
24+
];
2625

26+
spl_autoload_register(function($class) use ($map)
27+
{
2728
foreach ($map as $np => $dir) {
2829
if (0 === strpos($class, $np)) {
2930
$path = str_replace('\\', '/', substr($class, strlen($np)));
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

phpunit.xml.dist

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<phpunit backupGlobals="false"
4+
backupStaticAttributes="false"
5+
bootstrap="./tests/boot.php"
6+
colors="false"
7+
convertErrorsToExceptions="true"
8+
convertNoticesToExceptions="true"
9+
convertWarningsToExceptions="true"
10+
stopOnFailure="false"
11+
syntaxCheck="false"
12+
>
13+
<testsuites>
14+
<testsuite name="Php Library Test Suite">
15+
<directory>./tests/</directory>
16+
</testsuite>
17+
</testsuites>
18+
19+
<filter>
20+
<whitelist>
21+
<directory suffix=".php">./examples</directory>
22+
</whitelist>
23+
</filter>
24+
</phpunit>

src/Helpers/EnvHelper.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ public static function isMac(): bool
6161
*/
6262
public static function isRoot(): bool
6363
{
64-
return posix_getuid() === 0;
64+
if (\function_exists('posix_getuid')) {
65+
return posix_getuid() === 0;
66+
}
67+
68+
return getmyuid() === 0;
6569
}
6670

6771
/**

src/Helpers/Sys.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,10 @@ public static function exec($command, $logfile = null, $user = null)
6464
* 3. exec
6565
* 4. shell_exec
6666
* @param $command
67+
* @param bool $returnStatus
6768
* @return array
6869
*/
69-
public static function runCommand($command)
70+
public static function runCommand($command, $returnStatus = true)
7071
{
7172
$return_var = 1;
7273

@@ -96,7 +97,11 @@ public static function runCommand($command)
9697
$return_var = 0;
9798
}
9899

99-
return array('output' => $output, 'status' => $return_var);
100+
if ($returnStatus) {
101+
return ['output' => trim($output), 'status' => $return_var];
102+
}
103+
104+
return trim($output);
100105
}
101106

102107
/**
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/boot.php

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
/**
3+
* phpunit6.phar --bootstrap tests/bootstap.php tests
4+
*/
5+
6+
require dirname(__DIR__) . '/examples/s-autoload.php';

tests/test.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
# phpunit6.phar --colors --coverage-html ./coverage/
4+
phpunit6.phar --colors --bootstrap tests/boot.php tests

0 commit comments

Comments
 (0)