-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathStringSchemaDefinitionTest.php
More file actions
157 lines (131 loc) · 5.03 KB
/
Copy pathStringSchemaDefinitionTest.php
File metadata and controls
157 lines (131 loc) · 5.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
/*
* This file is part of the official PHP MCP SDK.
*
* A collaboration between Symfony and the PHP Foundation.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Mcp\Tests\Unit\Schema\Elicitation;
use Mcp\Exception\InvalidArgumentException;
use Mcp\Schema\Elicitation\StringSchemaDefinition;
use PHPUnit\Framework\TestCase;
final class StringSchemaDefinitionTest extends TestCase
{
public function testConstructorWithMinimalParams(): void
{
$schema = new StringSchemaDefinition('Name');
$this->assertSame('Name', $schema->title);
$this->assertNull($schema->description);
$this->assertNull($schema->default);
$this->assertNull($schema->format);
$this->assertNull($schema->minLength);
$this->assertNull($schema->maxLength);
}
public function testConstructorWithAllParams(): void
{
$schema = new StringSchemaDefinition(
title: 'Email Address',
description: 'Your primary email',
default: 'user@example.com',
format: 'email',
minLength: 5,
maxLength: 100,
);
$this->assertSame('Email Address', $schema->title);
$this->assertSame('Your primary email', $schema->description);
$this->assertSame('user@example.com', $schema->default);
$this->assertSame('email', $schema->format);
$this->assertSame(5, $schema->minLength);
$this->assertSame(100, $schema->maxLength);
}
public function testConstructorWithValidFormats(): void
{
foreach (['date', 'date-time', 'email', 'uri'] as $format) {
$schema = new StringSchemaDefinition('Test', format: $format);
$this->assertSame($format, $schema->format);
}
}
public function testConstructorWithInvalidFormat(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Invalid format "invalid"');
new StringSchemaDefinition('Test', format: 'invalid');
}
public function testConstructorWithNegativeMinLength(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('minLength must be non-negative');
new StringSchemaDefinition('Test', minLength: -1);
}
public function testConstructorWithNegativeMaxLength(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('maxLength must be non-negative');
new StringSchemaDefinition('Test', maxLength: -1);
}
public function testConstructorWithMinLengthGreaterThanMaxLength(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('minLength cannot be greater than maxLength');
new StringSchemaDefinition('Test', minLength: 10, maxLength: 5);
}
public function testFromArrayWithMinimalParams(): void
{
$schema = StringSchemaDefinition::fromArray(['title' => 'Name']);
$this->assertSame('Name', $schema->title);
}
public function testFromArrayWithAllParams(): void
{
$schema = StringSchemaDefinition::fromArray([
'title' => 'Email Address',
'description' => 'Your primary email',
'default' => 'user@example.com',
'format' => 'email',
'minLength' => 5,
'maxLength' => 100,
]);
$this->assertSame('Email Address', $schema->title);
$this->assertSame('Your primary email', $schema->description);
$this->assertSame('user@example.com', $schema->default);
$this->assertSame('email', $schema->format);
$this->assertSame(5, $schema->minLength);
$this->assertSame(100, $schema->maxLength);
}
public function testFromArrayWithMissingTitle(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Missing or invalid "title"');
/* @phpstan-ignore argument.type */
StringSchemaDefinition::fromArray([]);
}
public function testJsonSerializeWithMinimalParams(): void
{
$schema = new StringSchemaDefinition('Name');
$this->assertSame([
'type' => 'string',
'title' => 'Name',
], $schema->jsonSerialize());
}
public function testJsonSerializeWithAllParams(): void
{
$schema = new StringSchemaDefinition(
title: 'Email Address',
description: 'Your primary email',
default: 'user@example.com',
format: 'email',
minLength: 5,
maxLength: 100,
);
$this->assertSame([
'type' => 'string',
'title' => 'Email Address',
'description' => 'Your primary email',
'default' => 'user@example.com',
'format' => 'email',
'minLength' => 5,
'maxLength' => 100,
], $schema->jsonSerialize());
}
}