1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-30 04:29:12 +01:00
postgres/test/ArrayParserTest.php
Aaron Piotrowski d88ec8cd35
Fix empty array parsing
Closes #21.
2020-01-16 14:12:26 -06:00

231 lines
5.9 KiB
PHP

<?php
namespace Amp\Postgres\Test;
use Amp\Postgres\Internal\ArrayParser;
use Amp\Postgres\ParseException;
use PHPUnit\Framework\TestCase;
class ArrayParserTest extends TestCase
{
/** @var \Amp\Postgres\Internal\ArrayParser */
private $parser;
public function setUp()
{
$this->parser = new ArrayParser;
}
public function testSingleDimensionalArray()
{
$array = ["one", "two", "three"];
$string = '{' . \implode(',', $array) . '}';
$this->assertSame($array, $this->parser->parse($string));
}
public function testMultiDimensionalArray()
{
$array = ["one", "two", ["three", "four"], "five"];
$string = '{one, two, {three, four}, five}';
$this->assertSame($array, $this->parser->parse($string));
}
public function testQuotedStrings()
{
$array = ["one", "two", ["three", "four"], "five"];
$string = '{"one", "two", {"three", "four"}, "five"}';
$this->assertSame($array, $this->parser->parse($string));
}
public function testAlternateDelimiter()
{
$array = ["1,2,3", "3,4,5"];
$string = '{1,2,3;3,4,5}';
$this->assertSame($array, $this->parser->parse($string, null, ';'));
}
public function testEscapedQuoteDelimiter()
{
$array = ['va"lue1', 'value"2'];
$string = '{"va\\"lue1", "value\\"2"}';
$this->assertSame($array, $this->parser->parse($string, null, ','));
}
public function testNullValue()
{
$array = ["one", null, "three"];
$string = '{one, NULL, three}';
$this->assertSame($array, $this->parser->parse($string));
}
public function testQuotedNullValue()
{
$array = ["one", "NULL", "three"];
$string = '{one, "NULL", three}';
$this->assertSame($array, $this->parser->parse($string));
}
public function testCast()
{
$array = [1, 2, 3];
$string = '{' . \implode(',', $array) . '}';
$cast = function (string $value): int {
return (int) $value;
};
$this->assertSame($array, $this->parser->parse($string, $cast));
}
public function testCastWithNull()
{
$array = [1, 2, null, 3];
$string = '{1,2,NULL,3}';
$cast = function (string $value): int {
return (int) $value;
};
$this->assertSame($array, $this->parser->parse($string, $cast));
}
public function testCastWithMultidimensionalArray()
{
$array = [1, 2, [3, 4], [5], 6, 7, [[8, 9], 10]];
$string = '{1,2,{3,4},{5},6,7,{{8,9},10}}';
$cast = function (string $value): int {
return (int) $value;
};
$this->assertSame($array, $this->parser->parse($string, $cast));
}
public function testRandomWhitespace()
{
$array = [1, 2, [3, 4], [5], 6, 7, [[8, 9], 10]];
$string = " {1, 2, { 3 ,\r 4 },{ 5} \n\t ,6 , 7, { {8,\t 9}, 10} } \n";
$cast = function (string $value): int {
return (int) $value;
};
$this->assertSame($array, $this->parser->parse($string, $cast));
}
public function testEscapedBackslashesInQuotedValue()
{
$array = ["test\\ing", "esca\\ped\\"];
$string = '{"test\\\\ing", "esca\\\\ped\\\\"}';
$this->assertSame($array, $this->parser->parse($string));
}
public function testEmptyArray()
{
$array = [];
$string = '{}';
$this->assertSame($array, $this->parser->parse($string));
}
public function testArrayContainingEmptyArray()
{
$array = [[], [1], []];
$string = '{{},{1},{}}';
$cast = function (string $value): int {
return (int) $value;
};
$this->assertSame($array, $this->parser->parse($string, $cast));
}
public function testArrayWithEmptyString()
{
$array = [''];
$string = '{""}';
$this->assertSame($array, $this->parser->parse($string));
}
public function testMalformedNestedArray()
{
$this->expectException(ParseException::class);
$this->expectExceptionMessage('Unexpected end of data');
$string = '{{}';
$this->parser->parse($string);
}
public function testEmptyString()
{
$this->expectException(ParseException::class);
$this->expectExceptionMessage('Unexpected end of data');
$string = ' ';
$this->parser->parse($string);
}
public function testNoOpeningBracket()
{
$this->expectException(ParseException::class);
$this->expectExceptionMessage('Missing opening bracket');
$string = '"one", "two"}';
$this->parser->parse($string);
}
public function testNoClosingBracket()
{
$this->expectException(ParseException::class);
$this->expectExceptionMessage('Unexpected end of data');
$string = '{"one", "two"';
$this->parser->parse($string);
}
public function testExtraClosingBracket()
{
$this->expectException(ParseException::class);
$this->expectExceptionMessage('Data left in buffer after parsing');
$string = '{"one", "two"}}';
$this->parser->parse($string);
}
public function testTrailingData()
{
$this->expectException(ParseException::class);
$this->expectExceptionMessage('Data left in buffer after parsing');
$string = '{"one", "two"} data}';
$this->parser->parse($string);
}
public function testMissingQuote()
{
$this->expectException(ParseException::class);
$this->expectExceptionMessage('Could not find matching quote in quoted value');
$string = '{"one", "two}';
$this->parser->parse($string);
}
public function testInvalidDelimiter()
{
$this->expectException(ParseException::class);
$this->expectExceptionMessage('Invalid delimiter');
$string = '{"one"; "two"}';
$this->parser->parse($string);
}
}