Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
5.2 KiB

<?php
namespace yiiunit\framework\web;
use yii\web\MultipartFormDataParser;
use yiiunit\TestCase;
class MultipartFormDataParserTest extends TestCase
{
public function testParse()
{
if (defined('HHVM_VERSION')) {
static::markTestSkipped('Can not test on HHVM because it does not support proper handling of the temporary files.');
}
$parser = new MultipartFormDataParser();
$boundary = '---------------------------22472926011618';
$contentType = 'multipart/form-data; boundary=' . $boundary;
$rawBody = "--{$boundary}\nContent-Disposition: form-data; name=\"title\"\r\n\r\ntest-title";
$rawBody .= "\r\n--{$boundary}\nContent-Disposition: form-data; name=\"Item[name]\"\r\n\r\ntest-name";
$rawBody .= "\r\n--{$boundary}\nContent-Disposition: form-data; name=\"someFile\"; filename=\"some-file.txt\"\nContent-Type: text/plain\r\n\r\nsome file content";
$rawBody .= "\r\n--{$boundary}\nContent-Disposition: form-data; name=\"Item[file]\"; filename=\"item-file.txt\"\nContent-Type: text/plain\r\n\r\nitem file content";
$rawBody .= "\r\n--{$boundary}--";
$bodyParams = $parser->parse($rawBody, $contentType);
$expectedBodyParams = [
'title' => 'test-title',
'Item' => [
'name' => 'test-name'
]
];
$this->assertEquals($expectedBodyParams, $bodyParams);
$this->assertFalse(empty($_FILES['someFile']));
$this->assertEquals(UPLOAD_ERR_OK, $_FILES['someFile']['error']);
$this->assertEquals('some-file.txt', $_FILES['someFile']['name']);
$this->assertEquals('text/plain', $_FILES['someFile']['type']);
$this->assertEquals('some file content', file_get_contents($_FILES['someFile']['tmp_name']));
$this->assertFalse(empty($_FILES['Item']));
$this->assertFalse(empty($_FILES['Item']['name']['file']));
$this->assertEquals(UPLOAD_ERR_OK, $_FILES['Item']['error']['file']);
$this->assertEquals('item-file.txt', $_FILES['Item']['name']['file']);
$this->assertEquals('text/plain', $_FILES['Item']['type']['file']);
$this->assertEquals('item file content', file_get_contents($_FILES['Item']['tmp_name']['file']));
}
/**
* @depends testParse
*/
public function testNotEmptyPost()
{
$parser = new MultipartFormDataParser();
$_POST = [
'name' => 'value'
];
$bodyParams = $parser->parse('should not matter', 'multipart/form-data; boundary=---12345');
$this->assertEquals($_POST, $bodyParams);
$this->assertEquals([], $_FILES);
}
/**
* @depends testParse
*/
public function testNotEmptyFiles()
{
$parser = new MultipartFormDataParser();
$_FILES = [
'file' => [
'name' => 'file.txt',
'type' => 'text/plain',
]
];
$boundary = '---------------------------22472926011618';
$contentType = 'multipart/form-data; boundary=' . $boundary;
$rawBody = "--{$boundary}\nContent-Disposition: form-data; name=\"title\"\r\ntest-title--{$boundary}--";
$bodyParams = $parser->parse($rawBody, $contentType);
$this->assertEquals([], $bodyParams);
}
/**
* @depends testParse
*/
public function testUploadFileMaxCount()
{
$parser = new MultipartFormDataParser();
$parser->setUploadFileMaxCount(2);
$boundary = '---------------------------22472926011618';
$contentType = 'multipart/form-data; boundary=' . $boundary;
$rawBody = "--{$boundary}\nContent-Disposition: form-data; name=\"firstFile\"; filename=\"first-file.txt\"\nContent-Type: text/plain\r\n\r\nfirst file content";
$rawBody .= "--{$boundary}\nContent-Disposition: form-data; name=\"secondFile\"; filename=\"second-file.txt\"\nContent-Type: text/plain\r\n\r\nsecond file content";
$rawBody .= "--{$boundary}\nContent-Disposition: form-data; name=\"thirdFile\"; filename=\"third-file.txt\"\nContent-Type: text/plain\r\n\r\nthird file content";
$rawBody .= "--{$boundary}--";
$parser->parse($rawBody, $contentType);
$this->assertCount(2, $_FILES);
}
/**
* @depends testParse
*/
public function testUploadFileMaxSize()
{
$parser = new MultipartFormDataParser();
$parser->setUploadFileMaxSize(20);
$boundary = '---------------------------22472926011618';
$contentType = 'multipart/form-data; boundary=' . $boundary;
$rawBody = "--{$boundary}\nContent-Disposition: form-data; name=\"firstFile\"; filename=\"first-file.txt\"\nContent-Type: text/plain\r\n\r\nfirst file content";
$rawBody .= "--{$boundary}\nContent-Disposition: form-data; name=\"secondFile\"; filename=\"second-file.txt\"\nContent-Type: text/plain\r\n\r\nsecond file content";
$rawBody .= "--{$boundary}\nContent-Disposition: form-data; name=\"thirdFile\"; filename=\"third-file.txt\"\nContent-Type: text/plain\r\n\r\nthird file with too long file content";
$rawBody .= "--{$boundary}--";
$parser->parse($rawBody, $contentType);
$this->assertCount(3, $_FILES);
$this->assertEquals(UPLOAD_ERR_INI_SIZE, $_FILES['thirdFile']['error']);
}
}