Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 35 additions & 13 deletions tests/Inspector/InspectorSnapshotTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,42 @@ abstract class InspectorSnapshotTestCase extends TestCase
{
private const INSPECTOR_VERSION = '0.16.8';

/**
* @param array<string, mixed> $toolArgs
*/
#[DataProvider('provideMethods')]
public function testResourcesListOutputMatchesSnapshot(string $method): void
{
$process = (new Process([
'npx',
\sprintf('@modelcontextprotocol/inspector@%s', self::INSPECTOR_VERSION),
'--cli',
'php',
$this->getServerScript(),
'--method',
$method,
]))->mustRun();

$output = $process->getOutput();
public function testMethodOutputMatchesSnapshot(
string $method,
?string $toolName = null,
array $toolArgs = [],
?string $uri = null,
): void {
$inspector = \sprintf('@modelcontextprotocol/inspector@%s', self::INSPECTOR_VERSION);
$args = [
'npx', $inspector, '--cli', 'php', $this->getServerScript(), '--method', $method,
];

// Options for tools/call
if (null !== $toolName) {
$args[] = '--tool-name';
$args[] = $toolName;

foreach ($toolArgs as $key => $value) {
$args[] = '--tool-arg';
$args[] = \sprintf('%s=%s', $key, $value);
}
}

// Options for resources/read
if (null !== $uri) {
$args[] = '--uri';
$args[] = $uri;
}

$output = (new Process($args))
->mustRun()
->getOutput();

$snapshotFile = $this->getSnapshotFilePath($method);

if (!file_exists($snapshotFile)) {
Expand Down
11 changes: 11 additions & 0 deletions tests/Inspector/StdioCalculatorExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ public static function provideMethods(): array
{
return [
...parent::provideListMethods(),
'Calculate Sum' => [
'method' => 'tools/call',
'toolName' => 'calculate',
'toolArgs' => ['a' => 12.5, 'b' => 7.3, 'operation' => 'add'],
],
'Read Config' => [
'method' => 'resources/read',
'toolName' => null, // can be removed with newer PHPUnit versions
'toolArgs' => [], // can be removed with newer PHPUnit versions
'uri' => 'config://calculator/settings',
],
];
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"contents": [
{
"uri": "config://calculator/settings",
"mimeType": "application/json",
"text": "{\n \"precision\": 2,\n \"allow_negative\": true\n}"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"content": [
{
"type": "text",
"text": "19.8"
}
],
"isError": false
}