Update to Laravel 8
Co-authored-by: Matthew Penner <me@matthewp.io>
This commit is contained in:
parent
028921b42a
commit
a043071e3c
211 changed files with 4394 additions and 2933 deletions
|
@ -1,26 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Pterodactyl - Panel
|
||||
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
||||
*
|
||||
* This software is licensed under the terms of the MIT license.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
namespace Tests\Assertions;
|
||||
|
||||
use PHPUnit\Framework\Assert;
|
||||
|
||||
trait CommandAssertionsTrait
|
||||
{
|
||||
/**
|
||||
* Assert that an output table contains a value.
|
||||
*
|
||||
* @param mixed $string
|
||||
* @param string $display
|
||||
*/
|
||||
public function assertTableContains($string, $display)
|
||||
{
|
||||
Assert::assertRegExp('/\|(\s+)' . preg_quote($string) . '(\s+)\|/', $display, 'Assert that a response table contains a value.');
|
||||
}
|
||||
}
|
|
@ -1,207 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Pterodactyl - Panel
|
||||
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
||||
*
|
||||
* This software is licensed under the terms of the MIT license.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
namespace Tests\Assertions;
|
||||
|
||||
use Illuminate\View\View;
|
||||
use Illuminate\Http\Response;
|
||||
use PHPUnit\Framework\Assert;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Illuminate\Http\RedirectResponse;
|
||||
|
||||
trait ControllerAssertionsTrait
|
||||
{
|
||||
/**
|
||||
* Assert that a response is an instance of Illuminate View.
|
||||
*
|
||||
* @param mixed $response
|
||||
*/
|
||||
public function assertIsViewResponse($response)
|
||||
{
|
||||
Assert::assertInstanceOf(View::class, $response);
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a response is an instance of Illuminate Redirect Response.
|
||||
*
|
||||
* @param mixed $response
|
||||
*/
|
||||
public function assertIsRedirectResponse($response)
|
||||
{
|
||||
Assert::assertInstanceOf(RedirectResponse::class, $response);
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a response is an instance of Illuminate Json Response.
|
||||
*
|
||||
* @param mixed $response
|
||||
*/
|
||||
public function assertIsJsonResponse($response)
|
||||
{
|
||||
Assert::assertInstanceOf(JsonResponse::class, $response);
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a response is an instance of Illuminate Response.
|
||||
*
|
||||
* @param mixed $response
|
||||
*/
|
||||
public function assertIsResponse($response)
|
||||
{
|
||||
Assert::assertInstanceOf(Response::class, $response);
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a view name equals the passed name.
|
||||
*
|
||||
* @param string $name
|
||||
* @param mixed $view
|
||||
*/
|
||||
public function assertViewNameEquals($name, $view)
|
||||
{
|
||||
Assert::assertEquals($name, $view->getName());
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a view name does not equal a provided name.
|
||||
*
|
||||
* @param string $name
|
||||
* @param mixed $view
|
||||
*/
|
||||
public function assertViewNameNotEquals($name, $view)
|
||||
{
|
||||
Assert::assertNotEquals($name, $view->getName());
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a view has an attribute passed into it.
|
||||
*
|
||||
* @param string $attribute
|
||||
* @param mixed $view
|
||||
*/
|
||||
public function assertViewHasKey($attribute, $view)
|
||||
{
|
||||
if (str_contains($attribute, '.')) {
|
||||
Assert::assertNotEquals(
|
||||
'__TEST__FAIL',
|
||||
array_get($view->getData(), $attribute, '__TEST__FAIL')
|
||||
);
|
||||
} else {
|
||||
Assert::assertArrayHasKey($attribute, $view->getData());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a view does not have a specific attribute passed in.
|
||||
*
|
||||
* @param string $attribute
|
||||
* @param mixed $view
|
||||
*/
|
||||
public function assertViewNotHasKey($attribute, $view)
|
||||
{
|
||||
if (str_contains($attribute, '.')) {
|
||||
Assert::assertEquals(
|
||||
'__TEST__PASS',
|
||||
array_get($view->getData(), $attribute, '__TEST__PASS')
|
||||
);
|
||||
} else {
|
||||
Assert::assertArrayNotHasKey($attribute, $view->getData());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a view attribute equals a given parameter.
|
||||
*
|
||||
* @param string $attribute
|
||||
* @param mixed $value
|
||||
* @param mixed $view
|
||||
*/
|
||||
public function assertViewKeyEquals($attribute, $value, $view)
|
||||
{
|
||||
Assert::assertEquals($value, array_get($view->getData(), $attribute, '__TEST__FAIL'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a view attribute does not equal a given parameter.
|
||||
*
|
||||
* @param string $attribute
|
||||
* @param mixed $value
|
||||
* @param mixed $view
|
||||
*/
|
||||
public function assertViewKeyNotEquals($attribute, $value, $view)
|
||||
{
|
||||
Assert::assertNotEquals($value, array_get($view->getData(), $attribute, '__TEST__FAIL'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a route redirect equals a given route name.
|
||||
*
|
||||
* @param string $route
|
||||
* @param mixed $response
|
||||
* @param array $args
|
||||
*/
|
||||
public function assertRedirectRouteEquals($route, $response, array $args = [])
|
||||
{
|
||||
Assert::assertEquals(route($route, $args), $response->getTargetUrl());
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a route redirect URL equals as passed URL.
|
||||
*
|
||||
* @param string $url
|
||||
* @param mixed $response
|
||||
*/
|
||||
public function assertRedirectUrlEquals($url, $response)
|
||||
{
|
||||
Assert::assertEquals($url, $response->getTargetUrl());
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a response code equals a given code.
|
||||
*
|
||||
* @param int $code
|
||||
* @param mixed $response
|
||||
*/
|
||||
public function assertResponseCodeEquals($code, $response)
|
||||
{
|
||||
Assert::assertEquals($code, $response->getStatusCode());
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a response code does not equal a given code.
|
||||
*
|
||||
* @param int $code
|
||||
* @param mixed $response
|
||||
*/
|
||||
public function assertResponseCodeNotEquals($code, $response)
|
||||
{
|
||||
Assert::assertNotEquals($code, $response->getStatusCode());
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that a response is in a JSON format.
|
||||
*
|
||||
* @param mixed $response
|
||||
*/
|
||||
public function assertResponseHasJsonHeaders($response)
|
||||
{
|
||||
Assert::assertEquals('application/json', $response->headers->get('content-type'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that response JSON matches a given JSON string.
|
||||
*
|
||||
* @param array|string $json
|
||||
* @param mixed $response
|
||||
*/
|
||||
public function assertResponseJsonEquals($json, $response)
|
||||
{
|
||||
Assert::assertEquals(is_array($json) ? json_encode($json) : $json, $response->getContent());
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Assertions;
|
||||
namespace Pterodactyl\Tests\Assertions;
|
||||
|
||||
use PHPUnit\Framework\Assert;
|
||||
|
||||
|
|
|
@ -1,47 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Pterodactyl - Panel
|
||||
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
||||
*
|
||||
* This software is licensed under the terms of the MIT license.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
namespace Tests\Assertions;
|
||||
|
||||
use PHPUnit\Framework\Assert;
|
||||
use PHPUnit_Util_InvalidArgumentHelper;
|
||||
|
||||
trait NestedObjectAssertionsTrait
|
||||
{
|
||||
/**
|
||||
* Assert that an object value matches an expected value.
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $expected
|
||||
* @param object $object
|
||||
*/
|
||||
public function assertObjectNestedValueEquals(string $key, $expected, $object)
|
||||
{
|
||||
if (! is_object($object)) {
|
||||
throw PHPUnit_Util_InvalidArgumentHelper::factory(3, 'object');
|
||||
}
|
||||
|
||||
Assert::assertEquals($expected, object_get_strict($object, $key, '__TEST_FAILURE'), 'Assert that an object value equals a provided value.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that an object contains a nested key.
|
||||
*
|
||||
* @param string $key
|
||||
* @param object $object
|
||||
*/
|
||||
public function assertObjectHasNestedAttribute(string $key, $object)
|
||||
{
|
||||
if (! is_object($object)) {
|
||||
throw PHPUnit_Util_InvalidArgumentHelper::factory(2, 'object');
|
||||
}
|
||||
|
||||
Assert::assertNotEquals('__TEST_FAILURE', object_get_strict($object, $key, '__TEST_FAILURE'), 'Assert that an object contains a nested key.');
|
||||
}
|
||||
}
|
Reference in a new issue