-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathUploadImageBehaviorTest.php
80 lines (65 loc) · 2.05 KB
/
UploadImageBehaviorTest.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
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
<?php
namespace tests;
use tests\models\User;
use Yii;
use yii\web\UploadedFile;
class UploadImageBehaviorTest extends DatabaseTestCase
{
public function testFindUsers()
{
$data = User::find()->asArray()->all();
$this->assertEquals(require(__DIR__ . '/data/test-find-users.php'), $data);
}
public function testFindUser()
{
$user = User::findOne(1);
$this->assertEquals('admin', $user->nickname);
$this->assertEquals('image-1.jpg', $user->image);
}
public function testGetFileInstance()
{
$file = UploadedFile::getInstanceByName('User[image]');
$this->assertTrue($file instanceof UploadedFile);
}
public function testCreateUser()
{
$user = new User([
'nickname' => 'Alex',
]);
$user->setScenario('insert');
$this->assertTrue($user->save());
$path = $user->getUploadPath('image');
$this->assertTrue(is_file($path));
$this->assertEquals(sha1_file($path), sha1_file(__DIR__ . '/data/test-image.jpg'));
}
public function testResizeUser()
{
$user = User::findOne(1);
$user->setScenario('update');
$this->assertTrue($user->save());
$thumbPath = $user->getThumbUploadPath('image', 'thumb');
$thumbInfo = getimagesize($thumbPath);
$this->assertEquals(400, $thumbInfo[0]);
$this->assertEquals(300, $thumbInfo[1]);
$previewPath = $user->getThumbUploadPath('image', 'preview');
$previewInfo = getimagesize($previewPath);
$this->assertEquals(200, $previewInfo[0]);
$this->assertEquals(200, $previewInfo[1]);
}
/**
* @inheritdoc
*/
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
$_FILES = [
'User[image]' => [
'name' => 'test-image.jpg',
'type' => 'image/jpeg',
'size' => 74463,
'tmp_name' => __DIR__ . '/data/test-image.jpg',
'error' => 0,
],
];
}
}