Skip to content

Commit c44713e

Browse files
committed
Add test suite
1 parent 10de9b3 commit c44713e

File tree

6 files changed

+64
-18
lines changed

6 files changed

+64
-18
lines changed

.coveralls.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
coverage_clover: tests/Logs/clover.xml
2+
json_path: tests/Logs/coveralls-upload.json
3+
service_name: travis-ci

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea
22
vendor/
3-
composer.lock
3+
composer.lock
4+
*.cache

composer.json

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
"require": {
1313
"ext-ssh2": "*"
1414
},
15+
"require-dev": {
16+
"phpunit/phpunit": "^7.0||^8.0",
17+
"fzaninotto/faker": "^1.6",
18+
"php-coveralls/php-coveralls": "^2.0",
19+
"cache/array-adapter": "^1.0"
20+
},
1521
"autoload": {
1622
"psr-4": {
1723
"DivineOmega\\SSHConnection\\": "src/"

phpunit.xml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false">
11+
<testsuites>
12+
<testsuite name="Unit Tests">
13+
<directory suffix="Test.php">./tests/Unit</directory>
14+
<directory suffix="Test.php">./tests/Integration</directory>
15+
</testsuite>
16+
</testsuites>
17+
<filter>
18+
<whitelist>
19+
<directory suffix=".php">src</directory>
20+
<exclude>
21+
<directory suffix=".php">src/Examples</directory>
22+
</exclude>
23+
</whitelist>
24+
</filter>
25+
<php>
26+
27+
</php>
28+
</phpunit>

src/test.php

-17
This file was deleted.
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
use DivineOmega\SSHConnection\SSHConnection;
4+
use PHPUnit\Framework\TestCase;
5+
6+
final class SSHConnectionTest extends TestCase
7+
{
8+
public function testSSHConnection()
9+
{
10+
$connection = (new SSHConnection())
11+
->to('test.rebex.net')
12+
->onPort(22)
13+
->as('demo')
14+
->withPassword('password')
15+
->connect();
16+
17+
$command = $connection->run('echo "Hello world!"');
18+
19+
$this->assertEquals('Hello world!', $command->getOutput());
20+
$this->assertEquals('Hello world!'."\n", $command->getRawOutput());
21+
22+
$this->assertEquals('', $command->getError());
23+
$this->assertEquals('', $command->getRawError());
24+
}
25+
}

0 commit comments

Comments
 (0)