mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/11226] Add tests
PHPBB3-11226
This commit is contained in:
parent
cee9b1d856
commit
6a3b343dfc
1 changed files with 24 additions and 0 deletions
|
@ -103,6 +103,30 @@ class phpbb_fileupload_test extends phpbb_test_case
|
|||
unlink($this->path . 'jpg.jpg');
|
||||
}
|
||||
|
||||
public function test_move_existent_file()
|
||||
{
|
||||
$upload = new fileupload('', array('jpg'), 1000);
|
||||
|
||||
copy($this->path . 'jpg', $this->path . 'jpg.jpg');
|
||||
$file = $upload->local_upload($this->path . 'jpg.jpg');
|
||||
$this->assertEquals(0, sizeof($file->error));
|
||||
$file->move_file('../tests/upload/fixture');
|
||||
$this->assertEquals(1, sizeof($file->error));
|
||||
}
|
||||
|
||||
public function test_move_existent_file_overwrite()
|
||||
{
|
||||
$upload = new fileupload('', array('jpg'), 1000);
|
||||
|
||||
copy($this->path . 'jpg', $this->path . 'jpg.jpg');
|
||||
copy($this->path . 'jpg', $this->path . 'copies/jpg.jpg');
|
||||
$file = $upload->local_upload($this->path . 'jpg.jpg');
|
||||
$this->assertEquals(0, sizeof($file->error));
|
||||
$file->move_file('../tests/upload/fixture/copies', true);
|
||||
$this->assertEquals(0, sizeof($file->error));
|
||||
unlink($this->path . 'copies/jpg.jpg');
|
||||
}
|
||||
|
||||
public function test_valid_dimensions()
|
||||
{
|
||||
$upload = new fileupload('', false, false, 1, 1, 100, 100);
|
||||
|
|
Loading…
Add table
Reference in a new issue