2017-06-09 02:28:26 +08:00
|
|
|
<?php
|
|
|
|
|
2018-01-07 02:07:22 +08:00
|
|
|
use App\Models\User;
|
2017-06-20 00:30:39 +08:00
|
|
|
use Carbon\Carbon;
|
2017-07-05 02:57:08 +08:00
|
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
|
2017-07-14 04:43:56 +08:00
|
|
|
use Symfony\Component\Process\Process;
|
|
|
|
use Symfony\Component\Process\Exception\ProcessFailedException;
|
|
|
|
|
2017-06-20 00:30:39 +08:00
|
|
|
|
2017-06-09 02:28:26 +08:00
|
|
|
abstract class TestCase extends Illuminate\Foundation\Testing\TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The base URL to use while testing the application.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-01-07 05:13:33 +08:00
|
|
|
public static $prefix = '/api';
|
|
|
|
|
2017-06-10 03:47:02 +08:00
|
|
|
protected $app;
|
2017-06-09 02:28:26 +08:00
|
|
|
protected $baseUrl = 'http://localhost';
|
2017-06-10 11:19:17 +08:00
|
|
|
protected $connectionsToTransact = ['testing'];
|
2017-06-09 02:28:26 +08:00
|
|
|
|
2018-01-07 02:07:22 +08:00
|
|
|
protected $user;
|
|
|
|
|
2017-12-12 20:48:04 +08:00
|
|
|
protected static $auth_headers = [
|
2017-12-31 03:39:56 +08:00
|
|
|
'x-api-key' => 'testadminapikey'
|
2017-12-12 20:48:04 +08:00
|
|
|
];
|
|
|
|
|
2017-12-13 10:18:02 +08:00
|
|
|
public function apiHeaders()
|
|
|
|
{
|
|
|
|
return self::$auth_headers;
|
|
|
|
}
|
|
|
|
|
2018-01-05 11:05:26 +08:00
|
|
|
public function headers($user)
|
2018-01-03 04:31:00 +08:00
|
|
|
{
|
|
|
|
return [
|
2018-01-05 11:05:26 +08:00
|
|
|
'x-api-key' => $user->api_key,
|
2018-01-03 04:31:00 +08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2018-01-07 05:13:33 +08:00
|
|
|
/**
|
|
|
|
* Return the URL with the URI prefix
|
|
|
|
* @param $uri
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function u($uri) {
|
|
|
|
return self::$prefix . $uri;
|
|
|
|
}
|
|
|
|
|
2017-06-10 03:47:02 +08:00
|
|
|
public function __construct($name = null, array $data = [], $dataName = '') {
|
|
|
|
parent::__construct($name, $data, $dataName);
|
|
|
|
}
|
|
|
|
|
2017-07-05 02:09:44 +08:00
|
|
|
protected function reset_db() {
|
2017-07-14 04:43:56 +08:00
|
|
|
Artisan::call('database:create', ['--reset' => true]);
|
|
|
|
Artisan::call('migrate:refresh', ['--env' => 'unittest']);
|
2017-06-10 11:19:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
$this->reset_db();
|
|
|
|
}
|
|
|
|
|
2017-06-09 02:28:26 +08:00
|
|
|
/**
|
|
|
|
* Creates the application.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Foundation\Application
|
|
|
|
*/
|
|
|
|
public function createApplication()
|
|
|
|
{
|
|
|
|
$app = require __DIR__.'/../bootstrap/app.php';
|
|
|
|
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
|
|
|
|
return $app;
|
|
|
|
}
|
2017-06-10 03:47:02 +08:00
|
|
|
|
|
|
|
public function createRepository($repo_name) {
|
|
|
|
$app = $this->createApplication();
|
2017-06-10 11:19:17 +08:00
|
|
|
return $app->make('App\Repositories\\' . $repo_name);
|
2017-06-10 03:47:02 +08:00
|
|
|
}
|
2017-06-20 00:30:39 +08:00
|
|
|
|
|
|
|
public function addData($file)
|
|
|
|
{
|
2017-07-05 02:57:08 +08:00
|
|
|
$svc = app('\App\Services\DatabaseService');
|
|
|
|
$file_path = base_path('tests/data/' . $file . '.yml');
|
2018-01-05 09:33:23 +08:00
|
|
|
try {
|
|
|
|
$svc->seed_from_yaml_file($file_path);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function fillableFields(\Illuminate\Database\Eloquent\Model $model)
|
|
|
|
{
|
|
|
|
//$klass = new $model();
|
|
|
|
return $model->fillable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make sure an object has the list of keys
|
|
|
|
* @param $obj
|
|
|
|
* @param array $keys
|
|
|
|
*/
|
|
|
|
public function assertHasKeys($obj, $keys=[])
|
|
|
|
{
|
|
|
|
foreach($keys as $key) {
|
|
|
|
$this->assertArrayHasKey($key, $obj);
|
|
|
|
}
|
2017-06-20 00:30:39 +08:00
|
|
|
}
|
2018-01-06 00:23:26 +08:00
|
|
|
|
|
|
|
/**
|
2018-01-07 02:07:22 +08:00
|
|
|
* Override the GET call to inject the user API key
|
2018-01-06 00:23:26 +08:00
|
|
|
* @param string $uri
|
2018-01-07 02:07:22 +08:00
|
|
|
* @param array $headers
|
2018-01-06 00:23:26 +08:00
|
|
|
* @return \Illuminate\Foundation\Testing\TestResponse
|
|
|
|
*/
|
2018-01-07 02:07:22 +08:00
|
|
|
public function get($uri, array $headers=[]): \Illuminate\Foundation\Testing\TestResponse
|
2018-01-06 00:23:26 +08:00
|
|
|
{
|
2018-01-07 02:07:22 +08:00
|
|
|
if(empty($headers)) {
|
|
|
|
if($this->user !== null) {
|
|
|
|
$headers = $this->headers($this->user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::get($uri, $headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override the POST calls to inject the user API key
|
|
|
|
* @param string $uri
|
|
|
|
* @param array $data
|
|
|
|
* @param array $headers
|
|
|
|
* @return \Illuminate\Foundation\Testing\TestResponse
|
|
|
|
*/
|
|
|
|
public function post($uri, array $data = [], array $headers = [])
|
|
|
|
{
|
|
|
|
if (empty($headers)) {
|
|
|
|
if ($this->user !== null) {
|
|
|
|
$headers = $this->headers($this->user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::post($uri, $data, $headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override the DELETE calls to inject the user API key
|
|
|
|
* @param string $uri
|
|
|
|
* @param array $data
|
|
|
|
* @param array $headers
|
|
|
|
* @return \Illuminate\Foundation\Testing\TestResponse
|
|
|
|
*/
|
|
|
|
public function delete($uri, array $data = [], array $headers = [])
|
|
|
|
{
|
|
|
|
if (empty($headers)) {
|
|
|
|
if ($this->user !== null) {
|
|
|
|
$headers = $this->headers($this->user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::delete($uri, $data, $headers);
|
2018-01-06 00:23:26 +08:00
|
|
|
}
|
2017-06-09 02:28:26 +08:00
|
|
|
}
|