forked from microsoft/typespec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray.test.ts
260 lines (229 loc) · 6.22 KB
/
array.test.ts
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
import { deepStrictEqual, ok, strictEqual } from "assert";
import { describe, it } from "vitest";
import { oapiForModel, openApiFor } from "./test-host.js";
describe("openapi3: Array", () => {
it("defines array inline", async () => {
const res = await oapiForModel(
"Pet",
`
model Pet { names: string[] };
`
);
ok(res.isRef);
ok(res.schemas.Pet, "expected definition named Pet");
deepStrictEqual(res.schemas.Pet.properties.names, {
type: "array",
items: { type: "string" },
});
});
it("keeps array inline in circular reference with extra properties", async () => {
const res = await openApiFor(
`
model Root {
value: Parent[];
}
model Parent {
@OpenAPI.extension("x-someFieldAttr", true)
children?: Child[];
}
model Child {
@OpenAPI.extension("x-someFieldAttr", true)
parents?: Parent[];
}
`
);
deepStrictEqual(res.components.schemas.Parent.properties.children, {
type: "array",
items: { $ref: "#/components/schemas/Child" },
"x-someFieldAttr": true,
});
deepStrictEqual(res.components.schemas.Child.properties.parents, {
type: "array",
items: { $ref: "#/components/schemas/Parent" },
"x-someFieldAttr": true,
});
});
it("define a named array using model is", async () => {
const res = await oapiForModel(
"Pet",
`
model PetNames is string[] {}
model Pet { names: PetNames };
`
);
ok(res.isRef);
ok(res.schemas.PetNames, "expected definition named myArray");
ok(res.schemas.Pet, "expected definition named Pet");
deepStrictEqual(res.schemas.PetNames, {
type: "array",
items: { type: "string" },
});
});
it("named array applies doc", async () => {
const res = await oapiForModel(
"Pet",
`
@doc("This is a doc for PetNames")
model PetNames is string[] {}
model Pet { names: PetNames };
`
);
deepStrictEqual(res.schemas.PetNames.description, "This is a doc for PetNames");
});
it("can specify minItems using @minItems decorator", async () => {
const res = await oapiForModel(
"Pet",
`
model Pet {
@minItems(1)
names: string[]
};
`
);
ok(res.schemas.Pet, "expected definition named Pet");
deepStrictEqual(res.schemas.Pet.properties.names, {
type: "array",
minItems: 1,
items: { type: "string" },
});
});
it("can specify maxItems using @maxItems decorator", async () => {
const res = await oapiForModel(
"Pet",
`
model Pet {
@maxItems(3)
names: string[]
};
`
);
ok(res.schemas.Pet, "expected definition named Pet");
deepStrictEqual(res.schemas.Pet.properties.names, {
type: "array",
maxItems: 3,
items: { type: "string" },
});
});
it("can specify minItems using @minItems decorator (on array model)", async () => {
const res = await oapiForModel(
"Names",
`
@minItems(1)
model Names is string[];
`
);
deepStrictEqual(res.schemas.Names, {
type: "array",
minItems: 1,
items: { type: "string" },
});
});
it("can specify maxItems using @maxItems decorator (on array model)", async () => {
const res = await oapiForModel(
"Names",
`
@maxItems(3)
model Names is string[];
`
);
deepStrictEqual(res.schemas.Names, {
type: "array",
maxItems: 3,
items: { type: "string" },
});
});
it("can specify array defaults using tuple syntax", async () => {
const res = await oapiForModel(
"Pet",
`
model Pet {
names: string[] = #["bismarck"];
decimals: decimal[] = #[123, 456.7];
decimal128s: decimal128[] = #[123, 456.7];
};
`
);
deepStrictEqual(res.schemas.Pet.properties.names, {
type: "array",
items: { type: "string" },
default: ["bismarck"],
});
deepStrictEqual(res.schemas.Pet.properties.decimals, {
type: "array",
items: { type: "number", format: "decimal" },
default: [123, 456.7],
});
deepStrictEqual(res.schemas.Pet.properties.decimal128s, {
type: "array",
items: { type: "number", format: "decimal128" },
default: [123, 456.7],
});
});
it("can specify array defaults using tuple syntax (LEGACY)", async () => {
const res = await oapiForModel(
"Pet",
`
model Pet {
#suppress "deprecated" "for testing"
names: string[] = ["bismarck"];
#suppress "deprecated" "for testing"
decimals: decimal[] = [123, 456.7];
#suppress "deprecated" "for testing"
decimal128s: decimal128[] = [123, 456.7];
};
`
);
deepStrictEqual(res.schemas.Pet.properties.names, {
type: "array",
items: { type: "string" },
default: ["bismarck"],
});
deepStrictEqual(res.schemas.Pet.properties.decimals, {
type: "array",
items: { type: "number", format: "decimal" },
default: [123, 456.7],
});
deepStrictEqual(res.schemas.Pet.properties.decimal128s, {
type: "array",
items: { type: "number", format: "decimal128" },
default: [123, 456.7],
});
});
it("supports summary", async () => {
const res = await oapiForModel(
"Foo",
`
@summary("FooArray")
model Foo is string[];
`
);
strictEqual(res.schemas.Foo.title, "FooArray");
});
it("can specify tuple defaults using tuple syntax", async () => {
const res = await oapiForModel(
"Pet",
`
model Pet {
names: [string, int32] = #["bismarck", 12];
decimals: [string, decimal] = #["hi", 456.7];
decimal128s: [string, decimal128] = #["hi", 456.7];
};
`
);
deepStrictEqual(res.schemas.Pet.properties.names, {
type: "array",
items: {},
default: ["bismarck", 12],
});
deepStrictEqual(res.schemas.Pet.properties.decimals, {
type: "array",
items: {},
default: ["hi", 456.7],
});
deepStrictEqual(res.schemas.Pet.properties.decimal128s, {
type: "array",
items: {},
default: ["hi", 456.7],
});
});
});