phpvms/tests/TestCase.php

163 lines
4.0 KiB
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
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;
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
*/
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';
protected $connectionsToTransact = ['testing'];
2017-06-09 02:28:26 +08:00
protected $user;
protected static $auth_headers = [
2017-12-31 03:39:56 +08:00
'x-api-key' => 'testadminapikey'
];
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)
{
return [
2018-01-05 11:05:26 +08:00
'x-api-key' => $user->api_key,
];
}
/**
* 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() {
Artisan::call('database:create', ['--reset' => true]);
Artisan::call('migrate:refresh', ['--env' => 'unittest']);
}
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();
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
}
/**
* Override the GET call to inject the user API key
* @param string $uri
* @param array $headers
* @return \Illuminate\Foundation\Testing\TestResponse
*/
public function get($uri, array $headers=[]): \Illuminate\Foundation\Testing\TestResponse
{
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);
}
2017-06-09 02:28:26 +08:00
}