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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
<?php
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Support\Facades\Hash;
/**
* Class AcachaAdminLTELaravelTest.
*/
class AcachaAdminLTELaravelTest extends TestCase
{
use DatabaseMigrations;
/**
* Overwrite createApplication to add Http Kernel
* see: https://github.com/laravel/laravel/pull/3943
* https://github.com/laravel/framework/issues/15426
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make(Illuminate\Contracts\Http\Kernel::class);
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
return $app;
}
/**
* Set up tests.
*/
public function setUp()
{
parent::setUp();
App::setLocale('en');
}
/**
* Set up before class.
*/
public static function setUpBeforeClass()
{
passthru('composer dumpautoload');
}
/**
* Test Landing Page.
*
* @return void
*/
public function testLandingPage()
{
$this->visit('/')
->see('Acacha')
->see('adminlte-laravel')
->see('Pratt');
}
/**
* Test Landing Page.
*
* @return void
*/
public function testLandingPageWithUserLogged()
{
$user = factory(App\User::class)->create();
$this->actingAs($user)
->visit('/')
->see('Acacha')
->see('adminlte-laravel')
->see('Pratt')
->see($user->name);
}
/**
* Test Login Page.
*
* @return void
*/
public function testLoginPage()
{
$this->visit('/login')
->see('Sign in to start your session');
}
/**
* Test Login.
*
* @return void
*/
public function testLogin()
{
$user = factory(App\User::class)->create(['password' => Hash::make('passw0RD')]);
$this->visit('/login')
->type($user->email, 'email')
->type('passw0RD', 'password')
->press('Sign In')
->seePageIs('/home')
->see($user->name);
}
/**
* Test Login.
*
* @return void
*/
public function testLoginRequiredFields()
{
$this->visit('/login')
->type('', 'email')
->type('', 'password')
->press('Sign In')
->see('The email field is required')
->see('The password field is required');
}
/**
* Test Register Page.
*
* @return void
*/
public function testRegisterPage()
{
$this->visit('/register')
->see('Register a new membership');
}
/**
* Test Password reset Page.
*
* @return void
*/
public function testPasswordResetPage()
{
$this->visit('/password/reset')
->see('Reset Password');
}
/**
* Test home page is only for authorized Users.
*
* @return void
*/
public function testHomePageForUnauthenticatedUsers()
{
$this->visit('/home')
->seePageIs('/login');
}
/**
* Test home page works with Authenticated Users.
*
* @return void
*/
public function testHomePageForAuthenticatedUsers()
{
$user = factory(App\User::class)->create();
$this->actingAs($user)
->visit('/home')
->see($user->name);
}
/**
* Test log out.
*
* @return void
*/
public function testLogout()
{
$user = factory(App\User::class)->create();
$form = $this->actingAs($user)->visit('/home')->getForm('logout');
$this->actingAs($user)
->visit('/home')
->makeRequestUsingForm($form)
->seePageIs('/');
}
/**
* Test 404 Error page.
*
* @return void
*/
public function test404Page()
{
$this->get('asdasdjlapmnnk')
->seeStatusCode(404)
->see('404');
}
/**
* Test user registration.
*
* @return void
*/
public function testNewUserRegistration()
{
$this->visit('/register')
->type('Sergi Tur Badenas', 'name')
->type('sergiturbadenas@gmail.com', 'email')
->check('terms')
->type('passw0RD', 'password')
->type('passw0RD', 'password_confirmation')
->press('Register')
->seePageIs('/home')
->seeInDatabase('users', ['email' => 'sergiturbadenas@gmail.com',
'name' => 'Sergi Tur Badenas', ]);
}
/**
* Test required fields on registration page.
*
* @return void
*/
public function testRequiredFieldsOnRegistrationPage()
{
$this->visit('/register')
->press('Register')
->see('The name field is required')
->see('The email field is required')
->see('The password field is required');
}
/**
* Test send password reset.
*
* @return void
*/
public function testSendPasswordReset()
{
$user = factory(App\User::class)->create();
$this->visit('password/reset')
->type($user->email, 'email')
->press('Send Password Reset Link')
->see('We have e-mailed your password reset link!');
}
/**
* Test send password reset user not exists.
*
* @return void
*/
public function testSendPasswordResetUserNotExists()
{
$this->visit('password/reset')
->type('notexistingemail@gmail.com', 'email')
->press('Send Password Reset Link')
->see('There were some problems with your input');
}
/**
* Test make:view command
*
*/
public function testMakeViewCommand()
{
$view = 'ehqwiqweiohqweihoqweiohqweiojhqwejioqwejjqwe';
$viewPath= 'views/' . $view . '.blade.php';
try {
unlink(resource_path($view));
} catch (\Exception $e) {
}
$this->callArtisanMakeView($view);
$resultAsText = Artisan::output();
$expectedOutput = 'File ' . resource_path($viewPath) . ' created';
$this->assertEquals($expectedOutput, trim($resultAsText));
$this->assertFileExists(resource_path($viewPath));
$this->callArtisanMakeView($view);
$resultAsText = Artisan::output();
$this->assertEquals('File already exists', trim($resultAsText));
unlink(resource_path($viewPath));
}
/**
* Create view using make:view command.
*
* @param $view
*/
protected function callArtisanMakeView($view)
{
Artisan::call('make:view', [
'name' => $view,
]);
}
/**
* Test adminlte:admin command
*
*/
public function testAdminlteAdminCommand()
{
$seed = database_path('seeds/AdminUserSeeder.php');
try {
unlink($seed);
} catch (\Exception $e) {
}
$this->callAdminlteAdminCommand();
$this->assertFileExists($seed);
}
/**
* Call adminlte:admin command.
*/
protected function callAdminlteAdminCommand()
{
Artisan::call('adminlte:admin');
}
}