mirror of
https://github.com/peklaiho/madlisp.git
synced 2024-11-22 21:35:03 +00:00
120 lines
3.0 KiB
PHP
120 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* MadLisp language
|
|
* @link http://madlisp.com/
|
|
* @copyright Copyright (c) 2020 Pekka Laiho
|
|
*/
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use MadLisp\Func;
|
|
use MadLisp\Hash;
|
|
use MadLisp\MList;
|
|
use MadLisp\Printer;
|
|
use MadLisp\Symbol;
|
|
use MadLisp\Vector;
|
|
|
|
class PrinterTest extends TestCase
|
|
{
|
|
public function notReadableProvider(): array
|
|
{
|
|
$mc = $this->createStub(Func::class);
|
|
$mc->method('isMacro')->willReturn(true);
|
|
|
|
$fn = $this->createStub(Func::class);
|
|
$fn->method('isMacro')->willReturn(false);
|
|
|
|
return [
|
|
[$mc, '<macro>'],
|
|
[$fn, '<function>'],
|
|
[new MList([new Symbol('aa'), new Symbol('bb'), new MList([new Symbol('cc')])]), '(aa bb (cc))'],
|
|
[new Vector([12, 34, new Vector([56])]), '[12 34 [56]]'],
|
|
[new Hash(['aa' => 'bb', 'cc' => new Hash(['dd' => 'ee'])]), '{aa:bb cc:{dd:ee}}'],
|
|
[new Symbol('abc'), 'abc'],
|
|
[new \stdClass(), '<object<stdClass>>'],
|
|
[true, 'true'],
|
|
[false, 'false'],
|
|
[null, 'null'],
|
|
[123, '123'],
|
|
[34.56, '34.56'],
|
|
|
|
// Test strings
|
|
['abc', 'abc'],
|
|
["a\\b\nc\rd\te\"f", "a\\b\nc\rd\te\"f"],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider notReadableProvider
|
|
*/
|
|
public function testPrintStringNotReadable($input, string $expected)
|
|
{
|
|
$printer = new Printer();
|
|
$result = $printer->pstr($input, false);
|
|
$this->assertSame($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider notReadableProvider
|
|
*/
|
|
public function testPrintNotReadable($input, string $expected)
|
|
{
|
|
$printer = new Printer();
|
|
|
|
ob_start();
|
|
$printer->print($input, false);
|
|
$result = ob_get_contents();
|
|
ob_end_clean();
|
|
|
|
$this->assertSame($expected, $result);
|
|
}
|
|
|
|
public function readableProvider(): array
|
|
{
|
|
return [
|
|
[new Hash(['aa' => 'bb', 'cc' => new Hash(['dd' => 'ee'])]), '{"aa":"bb" "cc":{"dd":"ee"}}'],
|
|
[new Symbol('abc'), 'abc'], // symbol is not quoted
|
|
|
|
// Test strings
|
|
['abc', '"abc"'],
|
|
["a\\b\nc\rd\te\"f", "\"a\\\\b\\nc\\rd\\te\\\"f\""],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider readableProvider
|
|
*/
|
|
public function testPrintStringReadable($input, string $expected)
|
|
{
|
|
$printer = new Printer();
|
|
$result = $printer->pstr($input, true);
|
|
$this->assertSame($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider readableProvider
|
|
*/
|
|
public function testPrintReadable($input, string $expected)
|
|
{
|
|
$printer = new Printer();
|
|
|
|
ob_start();
|
|
$printer->print($input, true);
|
|
$result = ob_get_contents();
|
|
ob_end_clean();
|
|
|
|
$this->assertSame($expected, $result);
|
|
}
|
|
|
|
public function testPrintResource()
|
|
{
|
|
$file = tmpfile();
|
|
|
|
$printer = new Printer();
|
|
$result = $printer->pstr($file, false);
|
|
$this->assertSame('<resource>', $result);
|
|
|
|
fclose($file);
|
|
}
|
|
}
|