1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/test/StructTest.php
2020-10-02 13:40:29 -05:00

82 lines
2.8 KiB
PHP

<?php
namespace Amp\Test;
use Amp\PHPUnit\AsyncTestCase;
class StructTestFixture
{
use \Amp\Struct;
public \Closure $callback;
public string $_foofoofoofoofoofoofoofoobar;
}
class StructTest extends AsyncTestCase
{
public function testSetErrorWithSuggestion(): void
{
$this->expectException(\Error::class);
$this->expectExceptionMessage('Amp\Test\StructTestFixture property "callbac" does not exist ... did you mean "callback?"');
$struct = new StructTestFixture;
$struct->callbac = function () {
};
}
public function testGetErrorWithSuggestion(): void
{
$this->expectException(\Error::class);
$this->expectExceptionMessage('Amp\Test\StructTestFixture property "callbac" does not exist ... did you mean "callback?"');
$struct = new StructTestFixture;
$test = $struct->callbac;
}
public function testSetErrorWithoutSuggestion(): void
{
$this->expectException(\Error::class);
$this->expectExceptionMessage('Amp\Test\StructTestFixture property "callZZZZZZZZZZZ" does not exist');
$struct = new StructTestFixture;
$struct->callZZZZZZZZZZZ = "test";
}
public function testGetErrorWithoutSuggestion(): void
{
$this->expectException(\Error::class);
$this->expectExceptionMessage('Amp\Test\StructTestFixture property "callZZZZZZZZZZZ" does not exist');
$struct = new StructTestFixture;
$test = $struct->callZZZZZZZZZZZ;
}
public function testSuggestionIgnoresPropertyStartingWithUnderscore(): void
{
$this->expectException(\Error::class);
$this->expectExceptionMessage('Amp\Test\StructTestFixture property "__propertySuggestThreshold" does not exist');
$struct = new StructTestFixture;
$struct->__propertySuggestThreshold;
}
public function testSetErrorWithoutSuggestionBecauseUnderscore(): void
{
// Use regexp to ensure no property is suggested, because expected message is a prefix then and still passes
$this->expectException(\Error::class);
$this->expectExceptionMessageMatches("(Amp\\\\Test\\\\StructTestFixture property \"foofoofoofoofoofoofoofoobar\" does not exist$)");
$struct = new StructTestFixture;
$struct->foofoofoofoofoofoofoofoobar = "test";
}
public function testGetErrorWithoutSuggestionBecauseUnderscore(): void
{
// Use regexp to ensure no property is suggested, because expected message is a prefix then and still passes
$this->expectException(\Error::class);
$this->expectExceptionMessageMatches("(Amp\\\\Test\\\\StructTestFixture property \"foofoofoofoofoofoofoofoobar\" does not exist$)");
$struct = new StructTestFixture;
$struct->foofoofoofoofoofoofoofoobar;
}
}