blessing-skin-server/tests/UserControllerTest.php
2017-11-18 13:25:08 +08:00

450 lines
14 KiB
PHP

<?php
use App\Events;
use App\Models\User;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class UserControllerTest extends TestCase
{
use DatabaseTransactions;
protected function setUp()
{
parent::setUp();
return $this->actAs('normal');
}
public function testIndex()
{
$user = factory(User::class)->create();
factory(\App\Models\Player::class)->create(['uid' => $user->uid]);
$players_count = option('score_per_player') / option('user_initial_score');
$this->actAs($user)
->visit('/user')
->assertViewHas('user')
->assertViewHas('statistics')
->see(1 / $players_count * 100) // Players
->see(0) // Storage
->see(bs_announcement())
->see($user->score);
}
public function testSign()
{
option(['sign_score' => '50,50']);
$user = factory(User::class)->create();
// Success
$this->actAs($user)
->post('/user/sign')
->seeJson([
'errno' => 0,
'msg' => trans('user.sign-success', ['score' => 50]),
'score' => option('user_initial_score') + 50,
'storage' => [
'percentage' => 0,
'total' => option('user_initial_score') + 50,
'used' => 0
],
'remaining_time' => (int) option('sign_gap_time')
]);
// Remaining time is greater than 0
$this->post('/user/sign')
->seeJson([
'errno' => 1,
'msg' => trans(
'user.cant-sign-until',
[
'time' => option('sign_gap_time'),
'unit' => trans('user.time-unit-hour')
]
)
]);
// Can sign after 0 o'clock
option(['sign_after_zero' => true]);
$diff = \Carbon\Carbon::now()->diffInSeconds(\Carbon\Carbon::tomorrow());
$unit = '';
if ($diff / 3600 >= 1) {
$diff = round($diff / 3600);
$unit = 'hour';
} else {
$diff = round($diff / 60);
$unit = 'min';
}
$this->post('/user/sign')
->seeJson([
'errno' => 1,
'msg' => trans(
'user.cant-sign-until',
[
'time' => $diff,
'unit' => trans("user.time-unit-$unit")
]
)
]);
$user->last_sign_at = \Carbon\Carbon::today()->toDateTimeString();
$user->save();
$this->post('/user/sign')
->seeJson([
'errno' => 0
]);
}
public function testProfile()
{
$this->visit('/user/profile')
->assertViewHas('user');
}
public function testHandleProfile()
{
$user = factory(User::class)->create();
$user->changePasswd('12345678');
// Invalid action
$this->actAs($user)
->post('/user/profile')
->seeJson([
'errno' => 1,
'msg' => trans('general.illegal-parameters')
]);
// Change nickname without `new_nickname` field
$this->post('/user/profile', [
'action' => 'nickname'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.required', ['attribute' => 'new nickname'])
]);
// Invalid nickname
$this->post('/user/profile', [
'action' => 'nickname',
'new_nickname' => '\\'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.nickname', ['attribute' => 'new nickname'])
]);
// Too long nickname
$this->post('/user/profile', [
'action' => 'nickname',
'new_nickname' => str_random(256)
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.max.string', ['attribute' => 'new nickname', 'max' => 255])
]);
// Change nickname successfully
$this->expectsEvents(Events\UserProfileUpdated::class);
$this->post('/user/profile', [
'action' => 'nickname',
'new_nickname' => 'nickname'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 0,
'msg' => trans('user.profile.nickname.success', ['nickname' => 'nickname'])
]);
$this->assertEquals('nickname', User::find($user->uid)->nickname);
// Change password without `current_password` field
$this->post('/user/profile', [
'action' => 'password'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.required', ['attribute' => 'current password'])
]);
// Too short current password
$this->post('/user/profile', [
'action' => 'password',
'current_password' => '1'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.min.string', ['attribute' => 'current password', 'min' => 6])
]);
// Too long current password
$this->post('/user/profile', [
'action' => 'password',
'current_password' => str_random(17)
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.max.string', ['attribute' => 'current password', 'max' => 16])
]);
// Too short new password
$this->post('/user/profile', [
'action' => 'password',
'current_password' => '12345678',
'new_password' => '1'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.min.string', ['attribute' => 'new password', 'min' => 8])
]);
// Too long new password
$this->post('/user/profile', [
'action' => 'password',
'current_password' => '12345678',
'new_password' => str_random(17)
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.max.string', ['attribute' => 'new password', 'max' => 16])
]);
// Wrong old password
$this->post('/user/profile', [
'action' => 'password',
'current_password' => '1234567',
'new_password' => '87654321'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('user.profile.password.wrong-password')
]);
// Change password successfully
$this->expectsEvents(Events\EncryptUserPassword::class);
$this->post('/user/profile', [
'action' => 'password',
'current_password' => '12345678',
'new_password' => '87654321'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 0,
'msg' => trans('user.profile.password.success')
]);
$this->assertTrue(User::find($user->uid)->verifyPassword('87654321'));
// After changed password, user should re-login.
$this->visit('/user')->seePageIs('/auth/login');
$user = User::find($user->uid);
// Change email without `new_email` field
$this->actAs($user)
->post(
'/user/profile',
['action' => 'email'],
['X-Requested-With' => 'XMLHttpRequest'])
->seeJson([
'errno' => 1,
'msg' => trans('validation.required', ['attribute' => 'new email'])
]);
// Invalid email
$this->post('/user/profile', [
'action' => 'email',
'new_email' => 'not_an_email'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.email', ['attribute' => 'new email'])
]);
// Too short current password
$this->post('/user/profile', [
'action' => 'email',
'new_email' => 'a@b.c',
'password' => '1'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.min.string', ['attribute' => 'password', 'min' => 6])
]);
// Too long current password
$this->post('/user/profile', [
'action' => 'email',
'new_email' => 'a@b.c',
'password' => str_random(17)
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.max.string', ['attribute' => 'password', 'max' => 16])
]);
// Use a duplicated email
$this->post('/user/profile', [
'action' => 'email',
'new_email' => $user->email,
'password' => '87654321'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('user.profile.email.existed')
]);
// Wrong password
$this->post('/user/profile', [
'action' => 'email',
'new_email' => 'a@b.c',
'password' => '7654321'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('user.profile.email.wrong-password')
]);
// Change email successfully
$this->post('/user/profile', [
'action' => 'email',
'new_email' => 'a@b.c',
'password' => '87654321'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 0,
'msg' => trans('user.profile.email.success')
]);
$this->assertEquals('a@b.c', User::find($user->uid)->email);
// After changed email, user should re-login.
$this->visit('/user')->seePageIs('/auth/login');
$user = User::find($user->uid);
// Delete account without `password` field
$this->actAs($user)
->post(
'/user/profile',
['action' => 'delete'],
['X-Requested-With' => 'XMLHttpRequest'])
->seeJson([
'errno' => 1,
'msg' => trans('validation.required', ['attribute' => 'password'])
]);
// Too short current password
$this->post('/user/profile', [
'action' => 'delete',
'password' => '1'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.min.string', ['attribute' => 'password', 'min' => 6])
]);
// Too long current password
$this->post('/user/profile', [
'action' => 'delete',
'password' => str_random(17)
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('validation.max.string', ['attribute' => 'password', 'max' => 16])
]);
// Wrong password
$this->post('/user/profile', [
'action' => 'delete',
'password' => '7654321'
], [
'X-Requested-With' => 'XMLHttpRequest'
])->seeJson([
'errno' => 1,
'msg' => trans('user.profile.delete.wrong-password')
]);
// Delete account successfully
$this->post('/user/profile', [
'action' => 'delete',
'password' => '87654321'
])->seeJson([
'errno' => 0,
'msg' => trans('user.profile.delete.success')
])->seeCookie('uid', '')
->seeCookie('token', '');
$this->assertNull(User::find($user->uid));
}
public function testSetAvatar()
{
$user = factory(User::class)->create();
$steve = factory(\App\Models\Texture::class)->create();
$cape = factory(\App\Models\Texture::class, 'cape')->create();
// Without `tid` field
$this->actAs($user)
->post('/user/profile/avatar', [], [
'X-Requested-With' => 'XMLHttpRequest'
])
->seeJson([
'errno' => 1,
'msg' => trans('validation.required', ['attribute' => 'tid'])
]);
// TID is not a integer
$this->actAs($user)
->post('/user/profile/avatar', [
'tid' => 'string'
], [
'X-Requested-With' => 'XMLHttpRequest'
])
->seeJson([
'errno' => 1,
'msg' => trans('validation.integer', ['attribute' => 'tid'])
]);
// Texture cannot be found
$this->actAs($user)
->post('/user/profile/avatar', [
'tid' => 0
])
->seeJson([
'errno' => 1,
'msg' => trans('skinlib.non-existent')
]);
// Use cape
$this->actAs($user)
->post('/user/profile/avatar', [
'tid' => $cape->tid
])
->seeJson([
'errno' => 1,
'msg' => trans('user.profile.avatar.wrong-type')
]);
// Success
$this->actAs($user)
->post('/user/profile/avatar', [
'tid' => $steve->tid
])
->seeJson([
'errno' => 0,
'msg' => trans('user.profile.avatar.success')
]);
$this->assertEquals($steve->tid, User::find($user->uid)->avatar);
}
}