packages/sql-fixture/tests/Unit/Plan/Exception/InvalidTableNameExceptionTest.php

1<?php
2
3declare(strict_types=1);
4
5namespace Tests\Unit\Plan\Exception;
6
7use PHPUnit\Framework\Attributes\CoversClass;
8use PHPUnit\Framework\Attributes\UsesClass;
9use PHPUnit\Framework\TestCase;
10
11#[CoversClass(\SqlFixture\Plan\Exception\InvalidTableNameException::class)]
12#[UsesClass(\SqlFixture\Plan\PlanSyntaxException::class)]
13#[UsesClass(\SqlFixture\Plan\Exception\EmptyPlanException::class)]
14#[UsesClass(\SqlFixture\Plan\Exception\EmptyTableNameException::class)]
15#[UsesClass(\SqlFixture\Plan\Exception\MissingEndpointColumnsException::class)]
16#[UsesClass(\SqlFixture\Plan\Exception\UnbalancedBracketsException::class)]
17#[UsesClass(\SqlFixture\Plan\Exception\UnexpectedPlanTokenException::class)]
18#[UsesClass(\SqlFixture\Plan\Exception\UnsupportedManyToManyException::class)]
19#[UsesClass(\SqlFixture\Plan\Exception\CompositeArityMismatchException::class)]
20final class InvalidTableNameExceptionTest extends TestCase
21{
22    public function testDescribesInvalidTableName(): void
23    {
24        $exception = new \SqlFixture\Plan\Exception\InvalidTableNameException('order.id < order_detail.order_id');
25        $message = $exception->getMessage();
26
27        self::assertSame(
28            'A FixturePlan part must be a Relation or a plain table name, but '
29            . '"order.id < order_detail.order_id" is neither. To build a plan from relation '
30            . 'syntax, use FixturePlan::from().',
31            $message
32        );
33        self::assertSame('order.id < order_detail.order_id', $exception->part);
34    }
35}
36