1001 lines
34 KiB
PHP
1001 lines
34 KiB
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use App\Models\User;
|
|
use App\Models\Player;
|
|
use App\Models\Texture;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Http\UploadedFile;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
class SkinlibControllerTest extends TestCase
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
public function testIndex()
|
|
{
|
|
$this->get('/skinlib')->assertViewHas('user');
|
|
}
|
|
|
|
public function testGetSkinlibFiltered()
|
|
{
|
|
$this->getJson('/skinlib/data')
|
|
->assertJson([
|
|
'items' => [],
|
|
'current_uid' => 0,
|
|
'total_pages' => 0,
|
|
]);
|
|
|
|
$steves = factory(Texture::class)->times(5)->create();
|
|
$alexs = factory(Texture::class, 'alex')->times(5)->create();
|
|
$skins = $steves->merge($alexs);
|
|
$capes = factory(Texture::class, 'cape')->times(5)->create();
|
|
|
|
// Default arguments
|
|
$items = $this->getJson('/skinlib/data')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 1,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$this->assertCount(10, $items);
|
|
$this->assertTrue(collect($items)->every(function ($item) {
|
|
return $item['type'] == 'steve' || $item['type'] == 'alex';
|
|
}));
|
|
|
|
// Only steve
|
|
$items = $this->getJson('/skinlib/data?filter=steve')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 1,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$this->assertCount(5, $items);
|
|
$this->assertTrue(collect($items)->every(function ($item) {
|
|
return $item['type'] == 'steve';
|
|
}));
|
|
|
|
// Invalid type
|
|
$this->getJson('/skinlib/data?filter=what')
|
|
->assertJson([
|
|
'items' => [],
|
|
'current_uid' => 0,
|
|
'total_pages' => 0,
|
|
]);
|
|
|
|
// Only capes
|
|
$items = $this->getJson('/skinlib/data?filter=cape')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 1,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$this->assertCount(5, $items);
|
|
$this->assertTrue(collect($items)->every(function ($item) {
|
|
return $item['type'] == 'cape';
|
|
}));
|
|
|
|
// Only specified uploader
|
|
$uid = $skins->random()->uploader;
|
|
$owned = $skins
|
|
->filter(function ($texture) use ($uid) {
|
|
return $texture->uploader == $uid;
|
|
});
|
|
$items = $this->getJson('/skinlib/data?uploader='.$uid)
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 1,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$this->assertCount($owned->count(), $items);
|
|
$this->assertTrue(collect($items)->every(function ($item) use ($uid) {
|
|
return $item['uploader'] == $uid;
|
|
}));
|
|
|
|
// Sort by `tid`
|
|
$ordered = $skins->sortByDesc('tid')->map(function ($skin) {
|
|
return $skin->tid;
|
|
})->values();
|
|
$items = $this->getJson('/skinlib/data?sort=tid')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 1,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertArraySubset($ordered, $items);
|
|
|
|
// Search
|
|
$keyword = Str::limit($skins->random()->name, 1, '');
|
|
$keyworded = $skins
|
|
->filter(function ($texture) use ($keyword) {
|
|
return Str::contains($texture->name, $keyword) ||
|
|
Str::contains($texture->name, strtolower($keyword));
|
|
});
|
|
$items = $this->getJson('/skinlib/data?keyword='.$keyword)
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 1,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$this->assertCount($keyworded->count(), $items);
|
|
|
|
// More than one argument
|
|
$keyword = Str::limit($skins->random()->name, 1, '');
|
|
$filtered = $skins
|
|
->filter(function ($texture) use ($keyword) {
|
|
return Str::contains($texture->name, $keyword) ||
|
|
Str::contains($texture->name, strtolower($keyword));
|
|
})
|
|
->sortByDesc('size')
|
|
->map(function ($skin) {
|
|
return $skin->tid;
|
|
})
|
|
->values();
|
|
$items = $this->getJson('/skinlib/data?sort=size&keyword='.$keyword)
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 1,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertCount($filtered->count(), $items);
|
|
$this->assertArraySubset($filtered, $items);
|
|
|
|
// Pagination
|
|
$steves = factory(Texture::class)
|
|
->times(15)
|
|
->create()
|
|
->merge($steves);
|
|
$skins = $steves->merge($alexs);
|
|
$page1 = $skins
|
|
->sortByDesc('upload_at')
|
|
->values()
|
|
->map(function ($skin) {
|
|
return $skin->tid;
|
|
})
|
|
->forPage(1, 20);
|
|
$items = $this->getJson('/skinlib/data')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 2,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertCount(20, $items);
|
|
$this->assertArraySubset($page1, $items);
|
|
$items = $this->getJson('/skinlib/data?page=-5')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 2,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertCount(20, $items);
|
|
$this->assertArraySubset($page1, $items);
|
|
$page2 = $skins
|
|
->sortByDesc('upload_at')
|
|
->map(function ($skin) {
|
|
return $skin->tid;
|
|
})
|
|
->forPage(2, 20)
|
|
->values();
|
|
$items = $this->getJson('/skinlib/data?page=2')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 2,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertCount(5, $items);
|
|
$this->assertArraySubset($page2, $items);
|
|
$this->getJson('/skinlib/data?page=8')
|
|
->assertJson([
|
|
'items' => [],
|
|
'current_uid' => 0,
|
|
'total_pages' => 2,
|
|
]);
|
|
$items = $this->getJson('/skinlib/data?items_per_page=-6&page=2')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 2,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertCount($page2->count(), $items);
|
|
$this->assertArraySubset($page2, $items);
|
|
$page3 = $skins
|
|
->sortByDesc('upload_at')
|
|
->map(function ($skin) {
|
|
return $skin->tid;
|
|
})
|
|
->forPage(3, 8)
|
|
->values();
|
|
$items = $this->getJson('/skinlib/data?page=3&items_per_page=8')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 4,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertCount($page3->count(), $items);
|
|
$this->assertArraySubset($page3, $items);
|
|
|
|
// Add some private textures
|
|
$uploader = factory(User::class)->create();
|
|
$otherUser = factory(User::class)->create();
|
|
$private = factory(Texture::class)
|
|
->times(5)
|
|
->create(['public' => false, 'uploader' => $uploader->uid]);
|
|
|
|
// If not logged in, private textures should not be shown
|
|
$paged = $skins
|
|
->sortByDesc('upload_at')
|
|
->map(function ($skin) {
|
|
return $skin->tid;
|
|
})
|
|
->values()
|
|
->forPage(1, 20);
|
|
$items = $this->getJson('/skinlib/data')
|
|
->assertJson([
|
|
'current_uid' => 0,
|
|
'total_pages' => 2,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertArraySubset($paged, $items);
|
|
|
|
// Other users should not see someone's private textures
|
|
$items = $this->actAs($otherUser)
|
|
->getJson('/skinlib/data')
|
|
->assertJson([
|
|
'current_uid' => $otherUser->uid,
|
|
'total_pages' => 2,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$this->assertTrue(collect($items)->every(function ($item) {
|
|
return ! $item['liked'];
|
|
}));
|
|
|
|
// A user has added a texture from skin library to his closet
|
|
$texture = $skins->sortByDesc('upload_at')->values()->first();
|
|
$otherUser->closet()->attach($texture->tid, ['item_name' => $texture->name]);
|
|
$this->getJson('/skinlib/data')
|
|
->assertJson([
|
|
'items' => [
|
|
['tid' => $texture->tid, 'liked' => true],
|
|
],
|
|
'current_uid' => $otherUser->uid,
|
|
'total_pages' => 2,
|
|
]);
|
|
|
|
// Uploader can see his private textures
|
|
$withPrivate = $skins
|
|
->merge($private)
|
|
->sortByDesc('upload_at')
|
|
->map(function ($skin) {
|
|
return $skin->tid;
|
|
})
|
|
->values()
|
|
->forPage(1, 20);
|
|
$items = $this->actAs($uploader)
|
|
->getJson('/skinlib/data')
|
|
->assertJson([
|
|
'current_uid' => $uploader->uid,
|
|
'total_pages' => 2,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertArraySubset($withPrivate, $items);
|
|
|
|
// Administrators can see private textures
|
|
$admin = factory(User::class, 'admin')->create();
|
|
$items = $this->actAs($admin)
|
|
->getJson('/skinlib/data')
|
|
->assertJson([
|
|
'current_uid' => $admin->uid,
|
|
'total_pages' => 2,
|
|
])
|
|
->decodeResponseJson('items');
|
|
$items = array_map(function ($item) {
|
|
return $item['tid'];
|
|
}, $items);
|
|
$this->assertArraySubset($withPrivate, $items);
|
|
}
|
|
|
|
public function testShow()
|
|
{
|
|
Storage::fake('textures');
|
|
|
|
// Cannot find texture
|
|
$this->get('/skinlib/show/1')
|
|
->assertSee(trans('skinlib.show.deleted'));
|
|
|
|
// Invalid texture
|
|
option(['auto_del_invalid_texture' => false]);
|
|
$texture = factory(Texture::class)->create();
|
|
$this->get('/skinlib/show/'.$texture->tid)
|
|
->assertSee(trans('skinlib.show.deleted').trans('skinlib.show.contact-admin'));
|
|
$this->assertNotNull(Texture::find($texture->tid));
|
|
|
|
option(['auto_del_invalid_texture' => true]);
|
|
$this->get('/skinlib/show/'.$texture->tid)
|
|
->assertSee(trans('skinlib.show.deleted'));
|
|
$this->assertNull(Texture::find($texture->tid));
|
|
|
|
// Show a texture
|
|
$texture = factory(Texture::class)->create();
|
|
Storage::disk('textures')->put($texture->hash, '');
|
|
$this->get('/skinlib/show/'.$texture->tid)
|
|
->assertViewHas('texture')
|
|
->assertViewHas('with_out_filter', true)
|
|
->assertViewHas('user');
|
|
|
|
// Guest should not see private texture
|
|
$uploader = factory(User::class)->create();
|
|
$texture = factory(Texture::class)->create([
|
|
'uploader' => $uploader->uid,
|
|
'public' => false,
|
|
]);
|
|
Storage::disk('textures')->put($texture->hash, '');
|
|
$this->get('/skinlib/show/'.$texture->tid)
|
|
->assertSee(trans('skinlib.show.private'));
|
|
|
|
// Other user should not see private texture
|
|
$this->actAs('normal')
|
|
->get('/skinlib/show/'.$texture->tid)
|
|
->assertSee(trans('skinlib.show.private'));
|
|
|
|
// Administrators should be able to see private textures
|
|
$this->actAs('admin')
|
|
->get('/skinlib/show/'.$texture->tid)
|
|
->assertViewHas('texture');
|
|
|
|
// Uploader should be able to see private textures
|
|
$this->actAs($uploader)
|
|
->get('/skinlib/show/'.$texture->tid)
|
|
->assertViewHas('texture');
|
|
}
|
|
|
|
public function testInfo()
|
|
{
|
|
// Non-existed texture
|
|
$this->get('/skinlib/info/1')->assertJson([]);
|
|
|
|
$texture = factory(Texture::class)->create();
|
|
$this->get('/skinlib/info/'.$texture->tid)
|
|
->assertJson([
|
|
'tid' => $texture->tid,
|
|
'name' => $texture->name,
|
|
'type' => $texture->type,
|
|
'likes' => $texture->likes,
|
|
'hash' => $texture->hash,
|
|
'size' => $texture->size,
|
|
'uploader' => $texture->uploader,
|
|
'public' => $texture->public,
|
|
'upload_at' => $texture->upload_at->format('Y-m-d H:i:s'),
|
|
]);
|
|
}
|
|
|
|
public function testUpload()
|
|
{
|
|
$this->actAs('normal')
|
|
->get('/skinlib/upload')
|
|
->assertViewHas('user')
|
|
->assertViewHas('with_out_filter', true);
|
|
}
|
|
|
|
public function testHandleUpload()
|
|
{
|
|
Storage::fake('textures');
|
|
|
|
// Some error occurred when uploading file
|
|
$file = UploadedFile::fake()->image('test.png');
|
|
$upload = new UploadedFile(
|
|
$file->path(),
|
|
'test.png',
|
|
'image/png',
|
|
50,
|
|
UPLOAD_ERR_NO_TMP_DIR,
|
|
true
|
|
);
|
|
$this->actAs('normal')
|
|
->postJson(
|
|
'/skinlib/upload',
|
|
['file' => $upload]
|
|
)->assertJson([
|
|
'errno' => UPLOAD_ERR_NO_TMP_DIR,
|
|
'msg' => \App\Http\Controllers\SkinlibController::$phpFileUploadErrors[UPLOAD_ERR_NO_TMP_DIR],
|
|
]);
|
|
|
|
// Without `name` field
|
|
$this->postJson('/skinlib/upload')->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.required', ['attribute' => 'name']),
|
|
]);
|
|
|
|
// With some special chars
|
|
$this->postJson('/skinlib/upload', ['name' => '\\'])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.no_special_chars', ['attribute' => 'name']),
|
|
]);
|
|
|
|
// Specified regular expression for texture name
|
|
option(['texture_name_regexp' => '/\\d+/']);
|
|
$this->postJson('/skinlib/upload', [
|
|
'name' => 'abc',
|
|
])->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.regex', ['attribute' => 'name']),
|
|
]);
|
|
option(['texture_name_regexp' => null]);
|
|
|
|
// Without file
|
|
$this->postJson('/skinlib/upload', [
|
|
'name' => 'texture',
|
|
])->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.required', ['attribute' => 'file']),
|
|
]);
|
|
|
|
// Too large file
|
|
option(['max_upload_file_size' => 2]);
|
|
$upload = UploadedFile::fake()->create('large.png', 5);
|
|
$this->postJson('/skinlib/upload', [
|
|
'name' => 'texture',
|
|
'file' => $upload,
|
|
])->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.max.file', ['attribute' => 'file', 'max' => '2']),
|
|
]);
|
|
option(['max_upload_file_size' => 1024]);
|
|
|
|
// Without `public` field
|
|
$this->postJson('/skinlib/upload', [
|
|
'name' => 'texture',
|
|
'file' => 'content', // Though it is not a file, it is OK
|
|
])->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.required', ['attribute' => 'public']),
|
|
]);
|
|
|
|
// Not a PNG image
|
|
$this->postJson(
|
|
'/skinlib/upload',
|
|
[
|
|
'name' => 'texture',
|
|
'public' => 'true',
|
|
'file' => UploadedFile::fake()->create('fake', 5),
|
|
]
|
|
)->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.upload.type-error'),
|
|
]);
|
|
|
|
// No texture type is specified
|
|
$this->postJson(
|
|
'/skinlib/upload',
|
|
[
|
|
'name' => 'texture',
|
|
'public' => 'true',
|
|
'file' => UploadedFile::fake()->image('texture.png', 64, 32),
|
|
]
|
|
)->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('general.illegal-parameters'),
|
|
]);
|
|
|
|
// Invalid skin size
|
|
$this->postJson(
|
|
'/skinlib/upload',
|
|
[
|
|
'name' => 'texture',
|
|
'public' => 'true',
|
|
'type' => 'steve',
|
|
'file' => UploadedFile::fake()->image('texture.png', 64, 30),
|
|
]
|
|
)->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans(
|
|
'skinlib.upload.invalid-size',
|
|
[
|
|
'type' => trans('general.skin'),
|
|
'width' => 64,
|
|
'height' => 30,
|
|
]
|
|
),
|
|
]);
|
|
$this->postJson(
|
|
'/skinlib/upload',
|
|
[
|
|
'name' => 'texture',
|
|
'public' => 'true',
|
|
'type' => 'alex',
|
|
'file' => UploadedFile::fake()->image('texture.png', 100, 50),
|
|
]
|
|
)->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans(
|
|
'skinlib.upload.invalid-hd-skin',
|
|
[
|
|
'type' => trans('general.skin'),
|
|
'width' => 100,
|
|
'height' => 50,
|
|
]
|
|
),
|
|
]);
|
|
$this->postJson(
|
|
'/skinlib/upload',
|
|
[
|
|
'name' => 'texture',
|
|
'public' => 'true',
|
|
'type' => 'cape',
|
|
'file' => UploadedFile::fake()->image('texture.png', 64, 30),
|
|
]
|
|
)->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans(
|
|
'skinlib.upload.invalid-size',
|
|
[
|
|
'type' => trans('general.cape'),
|
|
'width' => 64,
|
|
'height' => 30,
|
|
]
|
|
),
|
|
]);
|
|
|
|
$upload = UploadedFile::fake()->image('texture.png', 64, 32);
|
|
|
|
// Score is not enough
|
|
$user = factory(User::class)->create(['score' => 0]);
|
|
$this->actAs($user)
|
|
->postJson(
|
|
'/skinlib/upload',
|
|
[
|
|
'name' => 'texture',
|
|
'public' => 'true',
|
|
'type' => 'steve',
|
|
'file' => $upload,
|
|
]
|
|
)
|
|
->assertJson([
|
|
'errno' => 7,
|
|
'msg' => trans('skinlib.upload.lack-score'),
|
|
]);
|
|
|
|
$user = factory(User::class)->create([
|
|
'score' => (int) option('score_per_closet_item') + (int) option('score_per_storage'),
|
|
]);
|
|
$this->actAs($user)->postJson(
|
|
'/skinlib/upload',
|
|
[
|
|
'name' => 'texture',
|
|
'public' => 'false', // Private texture cost more scores
|
|
'type' => 'steve',
|
|
'file' => $upload,
|
|
]
|
|
)->assertJson([
|
|
'errno' => 7,
|
|
'msg' => trans('skinlib.upload.lack-score'),
|
|
]);
|
|
$response = $this->postJson(
|
|
'/skinlib/upload',
|
|
[
|
|
'name' => 'texture',
|
|
'public' => 'true', // Public texture
|
|
'type' => 'steve',
|
|
'file' => $upload,
|
|
]
|
|
);
|
|
$t = Texture::where('name', 'texture')->first();
|
|
$response->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.upload.success', ['name' => 'texture']),
|
|
'tid' => $t->tid,
|
|
]);
|
|
Storage::disk('textures')->assertExists($t->hash);
|
|
$user = User::find($user->uid);
|
|
$this->assertEquals(0, $user->score);
|
|
$this->assertEquals('texture', $t->name);
|
|
$this->assertEquals('steve', $t->type);
|
|
$this->assertEquals(1, $t->likes);
|
|
$this->assertEquals(1, $t->size);
|
|
$this->assertEquals($user->uid, $t->uploader);
|
|
$this->assertTrue($t->public);
|
|
|
|
// Upload a duplicated texture
|
|
$user = factory(User::class)->create();
|
|
$this->actAs($user)
|
|
->postJson(
|
|
'/skinlib/upload',
|
|
[
|
|
'name' => 'texture',
|
|
'public' => 'true',
|
|
'type' => 'steve',
|
|
'file' => $upload,
|
|
]
|
|
)->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.upload.repeated'),
|
|
'tid' => $t->tid,
|
|
]);
|
|
|
|
unlink(storage_path('framework/testing/disks/textures/'.$t->hash));
|
|
}
|
|
|
|
public function testDelete()
|
|
{
|
|
$uploader = factory(User::class)->create();
|
|
$other = factory(User::class)->create();
|
|
$texture = factory(Texture::class)->create(['uploader' => $uploader->uid]);
|
|
option(['return_score' => false]);
|
|
|
|
// Non-existed texture
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/delete', ['tid' => -1])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.non-existent'),
|
|
]);
|
|
|
|
// Other user should not be able to delete
|
|
$this->actAs($other)
|
|
->postJson('/skinlib/delete', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.no-permission'),
|
|
]);
|
|
|
|
// Administrators can delete it
|
|
$this->actAs('admin')
|
|
->postJson('/skinlib/delete', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.delete.success'),
|
|
]);
|
|
$this->assertNull(Texture::find($texture->tid));
|
|
|
|
$texture = factory(Texture::class)->create();
|
|
factory(Texture::class)->create(['hash' => $texture->hash]);
|
|
Storage::disk('textures')->put($texture->hash, '');
|
|
|
|
// When file is occupied, the file should not be deleted
|
|
$this->postJson('/skinlib/delete', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.delete.success'),
|
|
]);
|
|
$this->assertNull(Texture::find($texture->tid));
|
|
$this->assertTrue(Storage::disk('textures')->exists($texture->hash));
|
|
|
|
$texture = factory(Texture::class)->create();
|
|
factory(Texture::class)->create(['hash' => $texture->hash]);
|
|
$this->postJson('/skinlib/delete', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.delete.success'),
|
|
]);
|
|
$this->assertNull(Texture::find($texture->tid));
|
|
$this->assertFalse(Storage::disk('textures')->exists($texture->hash));
|
|
|
|
// Return score
|
|
option(['return_score' => true]);
|
|
$texture = factory(Texture::class)->create(['uploader' => $uploader->uid]);
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/delete', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.delete.success'),
|
|
]);
|
|
$this->assertEquals(
|
|
$uploader->score + $texture->size * option('score_per_storage'),
|
|
User::find($uploader->uid)->score
|
|
);
|
|
|
|
$uploader = User::find($uploader->uid);
|
|
$texture = factory(Texture::class)->create([
|
|
'uploader' => $uploader->uid,
|
|
'public' => false,
|
|
]);
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/delete', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.delete.success'),
|
|
]);
|
|
$this->assertEquals(
|
|
$uploader->score + $texture->size * option('private_score_per_storage'),
|
|
User::find($uploader->uid)->score
|
|
);
|
|
}
|
|
|
|
public function testPrivacy()
|
|
{
|
|
$uploader = factory(User::class)->create();
|
|
$other = factory(User::class)->create();
|
|
$texture = factory(Texture::class)->create(['uploader' => $uploader->uid]);
|
|
|
|
// Non-existed texture
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/privacy', ['tid' => -1])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.non-existent'),
|
|
]);
|
|
|
|
// Other user should not be able to set privacy
|
|
$this->actAs($other)
|
|
->postJson('/skinlib/privacy', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.no-permission'),
|
|
]);
|
|
|
|
// Administrators can change it
|
|
$uploader->score += $texture->size * option('private_score_per_storage');
|
|
$uploader->save();
|
|
$this->actAs('admin')
|
|
->postJson('/skinlib/privacy', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.privacy.success', ['privacy' => trans('general.private')]),
|
|
'public' => false,
|
|
]);
|
|
$this->assertEquals(0, Texture::find($texture->tid)->public);
|
|
|
|
// Setting a texture to be private needs more scores
|
|
$texture = factory(Texture::class)->create(['uploader' => $uploader->uid]);
|
|
$uploader->score = 0;
|
|
$uploader->save();
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/privacy', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.upload.lack-score'),
|
|
]);
|
|
$this->assertEquals(1, Texture::find($texture->tid)->public);
|
|
|
|
$texture->public = true;
|
|
$texture->save();
|
|
$uploader->score = $texture->size *
|
|
(option('private_score_per_storage') - option('score_per_storage'));
|
|
$uploader->save();
|
|
$this->postJson('/skinlib/privacy', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.privacy.success', ['privacy' => trans('general.private')]),
|
|
'public' => false,
|
|
]);
|
|
$this->assertEquals(0, User::find($uploader->uid)->score);
|
|
|
|
// When setting a texture to be private,
|
|
// other players should not be able to use it.
|
|
$texture = factory(Texture::class)->create(['uploader' => $uploader->uid]);
|
|
$uploader->score += $texture->size * option('private_score_per_storage');
|
|
$uploader->save();
|
|
$player = factory(Player::class)->create(['tid_skin' => $texture->tid]);
|
|
$other = factory(User::class)->create();
|
|
$other->closet()->attach($texture->tid, ['item_name' => 'a']);
|
|
$this->postJson('/skinlib/privacy', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.privacy.success', ['privacy' => trans('general.private')]),
|
|
'public' => false,
|
|
]);
|
|
$this->assertEquals(0, Player::find($player->pid)->tid_skin);
|
|
$this->assertEquals(0, $other->closet()->count());
|
|
$this->assertEquals(
|
|
$other->score + option('score_per_closet_item'),
|
|
User::find($other->uid)->score
|
|
);
|
|
|
|
// Without returning score
|
|
option(['return_score' => false]);
|
|
$uploader->score += $texture->size * option('private_score_per_storage');
|
|
$uploader->save();
|
|
$texture = factory(Texture::class)->create(['public' => 'false', 'uploader' => $uploader->uid]);
|
|
$other = factory(User::class)->create();
|
|
$other->closet()->attach($texture->tid, ['item_name' => 'a']);
|
|
$this->postJson('/skinlib/privacy', ['tid' => $texture->tid])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'public' => false,
|
|
]);
|
|
$this->assertEquals(
|
|
$other->score,
|
|
User::find($other->uid)->score
|
|
);
|
|
}
|
|
|
|
public function testRename()
|
|
{
|
|
$uploader = factory(User::class)->create();
|
|
$other = factory(User::class)->create();
|
|
$texture = factory(Texture::class)->create(['uploader' => $uploader->uid]);
|
|
|
|
// Without `tid` field
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/rename')
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.required', ['attribute' => 'tid']),
|
|
]);
|
|
|
|
// `tid` is not a integer
|
|
$this->postJson('/skinlib/rename', [
|
|
'tid' => 'str',
|
|
])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.integer', ['attribute' => 'tid']),
|
|
]);
|
|
|
|
// Without `new_name` field
|
|
$this->postJson('/skinlib/rename', [
|
|
'tid' => $texture->tid,
|
|
])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.required', ['attribute' => 'new name']),
|
|
]);
|
|
|
|
// `new_name` has special chars
|
|
$this->postJson('/skinlib/rename', [
|
|
'tid' => $texture->tid,
|
|
'new_name' => '\\',
|
|
])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('validation.no_special_chars', ['attribute' => 'new name']),
|
|
]);
|
|
|
|
// Non-existed texture
|
|
$this->postJson('/skinlib/rename', [
|
|
'tid' => -1,
|
|
'new_name' => 'name',
|
|
])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.non-existent'),
|
|
]);
|
|
|
|
// Other user should not be able to rename
|
|
$this->actAs($other)
|
|
->postJson('/skinlib/rename', [
|
|
'tid' => $texture->tid,
|
|
'new_name' => 'name',
|
|
])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.no-permission'),
|
|
]);
|
|
|
|
// Administrators should be able to rename
|
|
$this->actAs('admin')
|
|
->postJson('/skinlib/rename', [
|
|
'tid' => $texture->tid,
|
|
'new_name' => 'name',
|
|
])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.rename.success', ['name' => 'name']),
|
|
]);
|
|
$this->assertEquals('name', Texture::find($texture->tid)->name);
|
|
|
|
// Uploader should be able to rename
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/rename', [
|
|
'tid' => $texture->tid,
|
|
'new_name' => 'new_name',
|
|
])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.rename.success', ['name' => 'new_name']),
|
|
]);
|
|
$this->assertEquals('new_name', Texture::find($texture->tid)->name);
|
|
}
|
|
|
|
public function testModel()
|
|
{
|
|
$uploader = factory(User::class)->create();
|
|
$other = factory(User::class)->create();
|
|
$texture = factory(Texture::class)->create(['uploader' => $uploader->uid]);
|
|
|
|
// Non-existed texture
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/model', [
|
|
'tid' => -1,
|
|
'model' => 'alex',
|
|
])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.non-existent'),
|
|
]);
|
|
|
|
// Other user should not be able to change model
|
|
$this->actAs($other)
|
|
->postJson('/skinlib/model', [
|
|
'tid' => $texture->tid,
|
|
'model' => 'alex',
|
|
])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.no-permission'),
|
|
]);
|
|
|
|
// Administrators should be able to change model
|
|
$this->actAs('admin')
|
|
->postJson('/skinlib/model', [
|
|
'tid' => $texture->tid,
|
|
'model' => 'alex',
|
|
])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.model.success', ['model' => 'alex']),
|
|
]);
|
|
$this->assertEquals('alex', Texture::find($texture->tid)->type);
|
|
|
|
// Uploader should be able to change model
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/model', [
|
|
'tid' => $texture->tid,
|
|
'model' => 'steve',
|
|
])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.model.success', ['model' => 'steve']),
|
|
]);
|
|
$this->assertEquals('steve', Texture::find($texture->tid)->type);
|
|
|
|
$duplicate = factory(Texture::class, 'alex')->create([
|
|
'uploader' => $other->uid,
|
|
'hash' => $texture->hash,
|
|
]);
|
|
|
|
// Should fail if there is already a texture with same hash and chosen model
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/model', [
|
|
'tid' => $texture->tid,
|
|
'model' => 'alex',
|
|
])
|
|
->assertJson([
|
|
'errno' => 1,
|
|
'msg' => trans('skinlib.model.duplicate', ['name' => $duplicate->name]),
|
|
]);
|
|
|
|
// Allow private texture
|
|
$duplicate->public = false;
|
|
$duplicate->save();
|
|
$this->actAs($uploader)
|
|
->postJson('/skinlib/model', [
|
|
'tid' => $texture->tid,
|
|
'model' => 'alex',
|
|
])
|
|
->assertJson([
|
|
'errno' => 0,
|
|
'msg' => trans('skinlib.model.success', ['model' => 'alex']),
|
|
]);
|
|
}
|
|
}
|