Files
wp-agentic-writer/vendor/phpdocumentor/json-path/tests/unit/ExecutorTest.php
Dwindi Ramadhana 690991c526 refactor: Cleanup git state - commit all staged changes
Major refactoring cleanup:
- Add new controller architecture (class-controller-*.php)
- Add new settings-v2 UI (views/settings-v2/)
- Add new CSS architecture (agentic-sidebar.css, tokens)
- Add esbuild build pipeline (scripts/build.js, package.json)
- Add composer dependencies (vendor/)
- Add frontend src directory (assets/js/src/index.jsx)
- Add documentation files
- Remove old/obsolete files (class-settings.php, old CSS)

This commits all pending changes from previous refactoring efforts.
2026-06-17 05:27:58 +07:00

277 lines
7.9 KiB
PHP

<?php
declare(strict_types=1);
/**
* This file is part of phpDocumentor.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @link https://phpdoc.org
*/
namespace phpDocumentor\JsonPath;
use phpDocumentor\JsonPath\AST\Comparison;
use phpDocumentor\JsonPath\AST\CurrentNode;
use phpDocumentor\JsonPath\AST\FieldAccess;
use phpDocumentor\JsonPath\AST\FieldName;
use phpDocumentor\JsonPath\AST\FilterNode;
use phpDocumentor\JsonPath\AST\FunctionCall;
use phpDocumentor\JsonPath\AST\Path;
use phpDocumentor\JsonPath\AST\RootNode;
use phpDocumentor\JsonPath\AST\Value;
use phpDocumentor\JsonPath\AST\Wildcard;
use phpDocumentor\JsonPath\Fixtures\Book;
use phpDocumentor\JsonPath\Fixtures\Commic;
use phpDocumentor\JsonPath\Fixtures\Store;
use PHPUnit\Framework\TestCase;
use stdClass;
use function iterator_to_array;
final class ExecutorTest extends TestCase
{
public function testQueryRootSource(): void
{
$store = new Store();
$executor = new Executor();
$result = $executor->evaluate(
new Path(
[
new RootNode(),
new FieldAccess(new FieldName('store')),
],
),
['store' => $store],
);
self::assertSame([$store], iterator_to_array($result, false));
}
public function testQueryRootSourceObject(): void
{
$root = new stdClass();
$store = new Store();
$root->store = $store;
$executor = new Executor();
$result = $executor->evaluate(
new Path(
[
new RootNode(),
new FieldAccess(new FieldName('store')),
],
),
$root,
);
self::assertSame([$store], iterator_to_array($result));
}
public function testQuerySubProperty(): void
{
$root = new stdClass();
$store = new Store();
$store->addBook(new Book('First book'));
$store->addBook(new Book('Second book'));
$root->store = $store;
$executor = new Executor();
$result = $executor->evaluate(
new Path(
[
new RootNode(),
new FieldAccess(new FieldName('store')),
new FieldAccess(new FieldName('books')),
new FieldAccess(new Wildcard()),
],
),
$root,
);
self::assertSame($store->getBooks(), iterator_to_array($result, false));
}
public function testQuerySubPropertyByFilter(): void
{
$book = new Book('phpDoc');
$root = new stdClass();
$store = new Store();
$store->addBook(new Book('First book'));
$store->addBook($book);
$store->addBook(new Book('Second book'));
$root->store = $store;
$executor = new Executor();
$result = $executor->evaluate(
new Path(
[
new RootNode(),
new FieldAccess(new FieldName('store')),
new FieldAccess(new FieldName('books')),
new FieldAccess(new Wildcard()),
new FilterNode(
new Comparison(
new Path([
new CurrentNode(),
new FieldAccess(new FieldName('title')),
]),
'==',
new Value(
'phpDoc',
),
),
),
],
),
$root,
);
self::assertSame([$book], iterator_to_array($result, false));
}
public function testQuerySubPropertyByFilterFunctionCall(): void
{
$book = new Commic('phpDoc');
$root = new stdClass();
$store = new Store();
$store->addBook(new Book('First book'));
$store->addBook($book);
$store->addBook(new Book('Second book'));
$root->store = $store;
$executor = new Executor();
$result = $executor->evaluate(
new Path(
[
new RootNode(),
new FieldAccess(
new FieldName('store'),
),
new FieldAccess(
new FieldName('books'),
),
new FieldAccess(
new Wildcard(),
),
new FilterNode(
new Comparison(
new FunctionCall(
'type',
new Path([
new CurrentNode(),
]),
),
'==',
new Value(
'Commic',
),
),
),
],
),
$root,
);
self::assertSame([$book], iterator_to_array($result, false));
}
public function testQueryWithWildcard(): void
{
$books = [
'phpDoc',
'First book',
'Second book',
];
$root = new stdClass();
$root->store = $this->createStore($books);
$executor = new Executor();
$result = $executor->evaluate(
new Path(
[
new RootNode(),
new FieldAccess(
new FieldName('store'),
),
new FieldAccess(
new FieldName('books'),
),
new FilterNode(
new Wildcard(),
),
new FieldAccess(
new FieldName('title'),
),
],
),
$root,
);
self::assertSame($books, iterator_to_array($result, false));
}
public function testQueryCollectionInCollection(): void
{
$books = [
'phpDoc',
'First book',
'Second book',
];
$root = new stdClass();
$root->stores = [];
$root->stores[] = $this->createStore($books);
$root->stores[] = $this->createStore(['foo', 'bar']);
$root->stores[] = $this->createStore($books);
$executor = new Executor();
$result = $executor->evaluate(
new Path(
[
new RootNode(),
new FieldAccess(
new FieldName('stores'),
),
new FilterNode(
new Wildcard(),
),
new FieldAccess(
new FieldName('books'),
),
new FilterNode(
new Comparison(
new Path([
new CurrentNode(),
new FieldAccess(new FieldName('title')),
]),
'==',
new Value(
'phpDoc',
),
),
),
new FieldAccess(
new FieldName('title'),
),
],
),
$root,
);
self::assertEquals(['phpDoc', 'phpDoc'], iterator_to_array($result, false));
}
private function createStore(array $books): Store
{
$store = new Store();
foreach ($books as $title) {
$store->addBook(new Book($title));
}
return $store;
}
}