-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathButtonTests.cs
More file actions
311 lines (266 loc) · 7.28 KB
/
ButtonTests.cs
File metadata and controls
311 lines (266 loc) · 7.28 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
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
// Licensed to Elasticsearch B.V under one or more agreements.
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information
using AwesomeAssertions;
using Elastic.Markdown.Myst.Directives.Button;
namespace Elastic.Markdown.Tests.Directives;
public class ButtonBlockTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
[Get Started](/get-started)
:::
"""
)
{
[Fact]
public void ParsesBlock() => Block.Should().NotBeNull();
[Fact]
public void DefaultsToPrimaryType() => Block!.Type.Should().Be("primary");
[Fact]
public void DefaultsToLeftAlign() => Block!.Align.Should().Be("left");
[Fact]
public void RendersPrimaryButtonClass() => Html.Should().Contain("doc-button-primary");
[Fact]
public void RendersLinkHref() => Html.Should().Contain("href=\"/get-started\"");
[Fact]
public void RendersButtonText() => Html.Should().Contain("Get Started");
}
public class ButtonSecondaryTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
:type: secondary
[Learn More](/learn-more)
:::
"""
)
{
[Fact]
public void ParsesSecondaryType() => Block!.Type.Should().Be("secondary");
[Fact]
public void RendersSecondaryClass() => Html.Should().Contain("doc-button-secondary");
}
public class ButtonAlignmentTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
:align: center
[Centered Button](/centered)
:::
"""
)
{
[Fact]
public void ParsesCenterAlign() => Block!.Align.Should().Be("center");
[Fact]
public void RendersWrapperWithAlignClass() => Html.Should().Contain("doc-button-wrapper doc-button-primary doc-button-center");
}
public class ButtonExternalTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
[GitHub](https://github.com/elastic)
:::
"""
)
{
[Fact]
public void RendersExternalAttributes() => Html.Should().Contain("target=\"_blank\"");
[Fact]
public void RendersNoopenerNoreferrer() => Html.Should().Contain("rel=\"noopener noreferrer\"");
}
public class ButtonReferenceLinkTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
[Open][kibana-url]
:::
[kibana-url]: <https://foo.example.com>
"""
)
{
[Fact]
public void RendersReferencedLinkHref() => Html.Should().Contain("href=\"https://foo.example.com\"");
[Fact]
public void RendersButtonText() => Html.Should().Contain(">Open<");
[Fact]
public void EmitsNoErrors() => Collector.Diagnostics.Should().BeEmpty();
}
public class ButtonInvalidTypeTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
:type: invalid
[Invalid Type](/test)
:::
"""
)
{
[Fact]
public void EmitsWarningForInvalidType() =>
Collector.Diagnostics.Should().ContainSingle(d => d.Message.Contains("Invalid button type"));
[Fact]
public void FallsBackToPrimary() => Block!.Type.Should().Be("primary");
}
public class ButtonGroupTests(ITestOutputHelper output) : DirectiveTest<ButtonGroupBlock>(output,
"""
::::{button-group}
:::{button}
:type: primary
[Primary](/primary)
:::
:::{button}
:type: secondary
[Secondary](/secondary)
:::
::::
"""
)
{
[Fact]
public void ParsesButtonGroup() => Block.Should().NotBeNull();
[Fact]
public void RendersButtonGroupContainer() => Html.Should().Contain("class=\"doc-button-group");
[Fact]
public void ContainsBothButtons() =>
Html.Should().Contain("Primary").And.Contain("Secondary");
[Fact]
public void RendersPrimaryButton() => Html.Should().Contain("doc-button-primary");
[Fact]
public void RendersSecondaryButton() => Html.Should().Contain("doc-button-secondary");
}
public class ButtonGroupAlignmentTests(ITestOutputHelper output) : DirectiveTest<ButtonGroupBlock>(output,
"""
::::{button-group}
:align: center
:::{button}
[Centered](/centered)
:::
::::
"""
)
{
[Fact]
public void ParsesGroupAlignment() => Block!.Align.Should().Be("center");
[Fact]
public void RendersGroupAlignClass() => Html.Should().Contain("doc-button-group-center");
}
public class ButtonInGroupTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
::::{button-group}
:::{button}
[In Group](/in-group)
:::
::::
"""
)
{
[Fact]
public void DetectsButtonIsInGroup() => Block!.IsInGroup.Should().BeTrue();
[Fact]
public void DoesNotRenderWrapperInGroup() => Html.Should().NotContain("doc-button-wrapper");
[Fact]
public void RendersButtonItem() => Html.Should().Contain("doc-button-item");
}
public class ButtonCrossLinkTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
[Kibana Docs](kibana://api/index.md)
:::
"""
)
{
[Fact]
public void ParsesBlock() => Block.Should().NotBeNull();
[Fact]
public void RendersLinkHref() => Html.Should().Contain("href=\"");
}
public class ButtonCursorProtocolTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
[Install with Cursor](cursor://anysphere.cursor-deeplink/mcp/install?name=elastic&config=eyJmb28iOiJiYXIifQ==)
:::
"""
)
{
[Fact]
public void ParsesBlock() => Block.Should().NotBeNull();
[Fact]
public void RendersLinkHref() => Html.Should().Contain("href=\"cursor://");
[Fact]
public void EmitsNoErrors() => Collector.Diagnostics.Should().BeEmpty();
}
public class ButtonVscodeProtocolTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
[Install with VS Code](vscode:extension/elastic.elasticsearch)
:::
"""
)
{
[Fact]
public void ParsesBlock() => Block.Should().NotBeNull();
[Fact]
public void RendersLinkHref() => Html.Should().Contain("href=\"vscode:");
[Fact]
public void EmitsNoErrors() => Collector.Diagnostics.Should().BeEmpty();
}
public class ButtonVscodeInsidersProtocolTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
[Install with VS Code Insiders](vscode-insiders:mcp/install?%7B%22name%22%3A%22oblt-cli%22%7D)
:::
"""
)
{
[Fact]
public void ParsesBlock() => Block.Should().NotBeNull();
[Fact]
public void RendersLinkHref() => Html.Should().Contain("href=\"vscode-insiders:");
[Fact]
public void EmitsNoErrors() => Collector.Diagnostics.Should().BeEmpty();
}
public class ButtonEmptyTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
:::
"""
)
{
[Fact]
public void EmitsErrorForEmptyContent() =>
Collector.Diagnostics.Should().ContainSingle(d => d.Message.Contains("requires a link"));
}
public class ButtonPlainTextTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
Just some text without a link
:::
"""
)
{
[Fact]
public void EmitsErrorForPlainText() =>
Collector.Diagnostics.Should().ContainSingle(d => d.Message.Contains("must contain only a single Markdown link"));
}
public class ButtonMultipleLinksTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
[Link One](/one) and [Link Two](/two)
:::
"""
)
{
[Fact]
public void EmitsErrorForMultipleLinks() =>
Collector.Diagnostics.Should().ContainSingle(d => d.Message.Contains("must contain only a single Markdown link"));
}
public class ButtonNestedDirectiveTests(ITestOutputHelper output) : DirectiveTest<ButtonBlock>(output,
"""
:::{button}
::::{note}
This is nested
::::
:::
"""
)
{
[Fact]
public void EmitsErrorForNestedDirective() =>
Collector.Diagnostics.Should().ContainSingle(d => d.Message.Contains("cannot contain nested directives"));
}