forked from rodrigopedra/laravel-cloud
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathTestCase.php
54 lines (46 loc) · 1000 Bytes
/
TestCase.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace Tests;
use App\User;
use App\SecureShellKey;
use Illuminate\Support\Facades\Mail;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
/**
* The previous exception handler.
*/
protected $previousExceptionHandler;
/**
* Setup the test class.
*
* @return void
*/
public function setUp()
{
parent::setUp();
Mail::fake();
}
/**
* Create a dummy user.
*
* @return \App\User
*/
protected function user()
{
return factory(User::class)->create();
}
/**
* Refresh the SSH keys on the user instance.
*
* @param \App\User $user
* @return \App\User
*/
protected function refreshKeys($user)
{
return tap($user)->update([
'keypair' => SecureShellKey::make(),
'worker_keypair' => SecureShellKey::make(),
]);
}
}