Skip to content
This repository was archived by the owner on Mar 20, 2022. It is now read-only.

Commit 36b9511

Browse files
committed
added tests, missing endpoint/functions
1 parent 9a564f7 commit 36b9511

26 files changed

+1275
-109
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
; This file is for unifying the coding style for different editors and IDEs.
2+
; More information at https://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
indent_size = 4
9+
indent_style = space
10+
end_of_line = lf
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

.gitattributes

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Path-based git attributes
2+
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3+
4+
# Ignore all test and documentation with "export-ignore".
5+
/.gitattributes export-ignore
6+
/.gitignore export-ignore
7+
/.travis.yml export-ignore
8+
/phpunit.xml.dist export-ignore
9+
/.scrutinizer.yml export-ignore
10+
/tests export-ignore
11+
/.editorconfig export-ignore

.gitignore

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/vendor
2-
composer.phar
1+
build
32
composer.lock
4-
.DS_Store
3+
docs
4+
vendor
5+
coverage

.travis.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: php
2+
3+
cache:
4+
directories:
5+
- $HOME/.composer/cache
6+
7+
matrix:
8+
fast_finish: true
9+
include:
10+
- php: 7.3
11+
env: LARAVEL='5.8.*' TESTBENCH='3.8.*' COMPOSER_FLAGS='--prefer-lowest'
12+
- php: 7.3
13+
env: LARAVEL='5.8.*' TESTBENCH='3.8.*' COMPOSER_FLAGS='--prefer-stable'
14+
15+
before_install:
16+
- travis_retry composer self-update
17+
- travis_retry composer require --no-update --no-interaction "illuminate/support:${LARAVEL}" "orchestra/testbench:${TESTBENCH}"
18+
19+
install:
20+
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction --no-suggest
21+
22+
script:
23+
- vendor/bin/phpunit

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
## Laravel Plesk Onyx 17.8
2-
2+
[![Latest Stable Version](https://poser.pugx.org/nickurt/laravel-plesk/v/stable?format=flat-square)](https://packagist.org/packages/nickurt/laravel-plesk)
3+
[![MIT Licensed](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
4+
[![Build Status](https://img.shields.io/travis/nickurt/laravel-plesk/master.svg?style=flat-square)](https://travis-ci.org/nickurt/laravel-plesk)
5+
[![Total Downloads](https://img.shields.io/packagist/dt/nickurt/laravel-plesk.svg?style=flat-square)](https://packagist.org/packages/nickurt/laravel-plesk)
36
### Installation
47
Install this package with composer:
58
```
69
composer require nickurt/laravel-plesk
710
```
811

9-
Add the provider to config/app.php file
12+
Add the provider to `config/app.php` file
1013

1114
```php
1215
'nickurt\Plesk\ServiceProvider',
@@ -25,6 +28,6 @@ php artisan vendor:publish --provider="nickurt\Plesk\ServiceProvider" --tag="con
2528
```
2629
### Tests
2730
```sh
28-
phpunit
31+
composer test
2932
```
3033
- - -

composer.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"guzzlehttp/guzzle": "6.*"
1010
},
1111
"require-dev": {
12-
"phpunit/phpunit" : "^7.5"
12+
"phpunit/phpunit" : "^7.5",
13+
"orchestra/testbench": "^3.8"
1314
},
1415
"autoload": {
1516
"psr-4": {
@@ -19,6 +20,15 @@
1920
"src/helpers.php"
2021
]
2122
},
23+
"autoload-dev": {
24+
"psr-4": {
25+
"nickurt\\Plesk\\tests\\": "tests"
26+
}
27+
},
28+
"scripts": {
29+
"test": "vendor/bin/phpunit",
30+
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
31+
},
2232
"minimum-stability": "dev",
2333
"prefer-stable": true,
2434
"extra": {

phpunit.xml.dist

+7
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,11 @@
1919
<directory suffix=".php">src/</directory>
2020
</whitelist>
2121
</filter>
22+
<logging>
23+
<log type="tap" target="build/report.tap"/>
24+
<log type="junit" target="build/report.junit.xml"/>
25+
<log type="coverage-html" target="build/coverage"/>
26+
<log type="coverage-text" target="build/coverage.txt"/>
27+
<log type="coverage-clover" target="build/logs/clover.xml"/>
28+
</logging>
2229
</phpunit>

src/Api/AbstractApi.php

+40-11
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66

77
abstract class AbstractApi implements ApiInterface
88
{
9-
/**
10-
* @var Client
11-
*/
9+
/** @var \nickurt\Plesk\Client */
1210
public $client;
1311

1412
/**
@@ -20,40 +18,71 @@ public function __construct(Client $client)
2018
$this->client = $client;
2119
}
2220

23-
public function delete($path, $body, array $headers = [])
21+
/**
22+
* @param string $path
23+
* @param array $parameters
24+
* @param array $headers
25+
* @return mixed
26+
* @throws \GuzzleHttp\Exception\GuzzleException
27+
*/
28+
public function delete($path, array $parameters = [], array $headers = [])
2429
{
25-
//
30+
return $this->client->getHttpClient()->delete(
31+
$path,
32+
$parameters,
33+
$headers
34+
);
2635
}
2736

2837
/**
29-
* @param $path
38+
* @param string $path
3039
* @param array $parameters
3140
* @param array $headers
3241
* @return mixed
3342
*/
3443
public function get($path, array $parameters = [], array $headers = [])
3544
{
36-
$response = $this->client->getHttpClient()->get(
45+
return $this->client->getHttpClient()->get(
3746
$path,
3847
$parameters,
3948
$headers
4049
);
41-
42-
return $response;
4350
}
4451

4552
public function path($path, $body, array $headers = [])
4653
{
4754
//
4855
}
4956

57+
/**
58+
* @param string $path
59+
* @param array $body
60+
* @param array $headers
61+
* @return mixed
62+
* @throws \GuzzleHttp\Exception\GuzzleException
63+
*/
5064
public function post($path, $body, array $headers = [])
5165
{
52-
//
66+
return $this->client->getHttpClient()->post(
67+
$path,
68+
$body,
69+
$headers
70+
);
5371
}
5472

73+
/**
74+
* @param string $path
75+
* @param array $body
76+
* @param array $headers
77+
* @return mixed
78+
* @throws \GuzzleHttp\Exception\GuzzleException
79+
*/
5580
public function put($path, $body, array $headers = [])
5681
{
57-
//
82+
return $this->client->getHttpClient()->put(
83+
$path,
84+
$body,
85+
$headers
86+
);
5887
}
5988
}

src/Api/Authentication.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
class Authentication extends AbstractApi
66
{
77
/**
8-
* @param $params
8+
* @param array $params
99
* @return mixed
10+
* @throws \GuzzleHttp\Exception\GuzzleException
1011
*/
1112
public function keys($params)
1213
{
13-
//
14+
return $this->post('auth/keys', $params);
1415
}
1516
}

src/Api/Cli.php

+7-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
class Cli extends AbstractApi
66
{
77
/**
8-
* @param $id
9-
* @param $body
8+
* @param int $id
9+
* @param array $params
10+
* @return mixed
11+
* @throws \GuzzleHttp\Exception\GuzzleException
1012
*/
11-
public function call($id, $body)
13+
public function call($id, $params)
1214
{
13-
//
15+
return $this->post('cli/' . $id . '/call', $params);
1416
}
1517

1618
/**
@@ -22,7 +24,7 @@ public function commands()
2224
}
2325

2426
/**
25-
* @param $id
27+
* @param int $id
2628
* @return mixed
2729
*/
2830
public function ref($id)

src/Api/Clients.php

+35-4
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,50 @@
55
class Clients extends AbstractApi
66
{
77
/**
8+
* @param int $id
89
* @return mixed
10+
* @throws \GuzzleHttp\Exception\GuzzleException
911
*/
10-
public function all()
12+
public function destroy($id)
13+
{
14+
return $this->delete('clients/' . $id);
15+
}
16+
17+
/**
18+
* @return mixed
19+
*/
20+
public function index()
1121
{
1222
return $this->get('clients');
1323
}
1424

1525
/**
16-
* @param $id
26+
* @param int $id
27+
* @return mixed
28+
*/
29+
public function show($id)
30+
{
31+
return $this->get('clients/' . $id);
32+
}
33+
34+
/**
35+
* @param array $params
36+
* @return mixed
37+
* @throws \GuzzleHttp\Exception\GuzzleException
38+
*/
39+
public function store($params)
40+
{
41+
return $this->post('clients', $params);
42+
}
43+
44+
/**
45+
* @param int $id
46+
* @param array $params
1747
* @return mixed
48+
* @throws \GuzzleHttp\Exception\GuzzleException
1849
*/
19-
public function read($id)
50+
public function update($id, $params)
2051
{
21-
return $this->get('clients/'.$id);
52+
return $this->put('clients/' . $id, $params);
2253
}
2354
}

src/Api/Domains.php

+54-4
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,69 @@
55
class Domains extends AbstractApi
66
{
77
/**
8+
* @param int $id
89
* @return mixed
910
*/
10-
public function all()
11+
public function client($id)
12+
{
13+
return $this->get('domains/' . $id . '/client');
14+
}
15+
16+
/**
17+
* @param int $id
18+
* @return mixed
19+
* @throws \GuzzleHttp\Exception\GuzzleException
20+
*/
21+
public function destroy($id)
22+
{
23+
return $this->delete('domains/' . $id);
24+
}
25+
26+
/**
27+
* @return mixed
28+
*/
29+
public function index()
1130
{
1231
return $this->get('domains');
1332
}
1433

1534
/**
16-
* @param $id
35+
* @param int $id
36+
* @return mixed
37+
*/
38+
public function show($id)
39+
{
40+
return $this->get('domains/' . $id);
41+
}
42+
43+
/**
44+
* @param int $id
45+
* @return mixed
46+
* @throws \GuzzleHttp\Exception\GuzzleException
47+
*/
48+
public function status($id)
49+
{
50+
return $this->get('domains/' . $id . '/status');
51+
}
52+
53+
/**
54+
* @param array $params
55+
* @return mixed
56+
* @throws \GuzzleHttp\Exception\GuzzleException
57+
*/
58+
public function store($params)
59+
{
60+
return $this->post('domains', $params);
61+
}
62+
63+
/**
64+
* @param int $id
65+
* @param array $params
1766
* @return mixed
67+
* @throws \GuzzleHttp\Exception\GuzzleException
1868
*/
19-
public function read($id)
69+
public function update($id, $params)
2070
{
21-
return $this->get('domains/'.$id);
71+
return $this->put('domains/' . $id, $params);
2272
}
2373
}

0 commit comments

Comments
 (0)