-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathHelpTextTests.cs
412 lines (368 loc) · 19.7 KB
/
HelpTextTests.cs
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See doc/License.md in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
using CommandLine.Infrastructure;
using CommandLine.Tests.Fakes;
using CommandLine.Text;
using FluentAssertions;
using Xunit;
namespace CommandLine.Tests.Unit.Text
{
public class HelpTextTests
{
[Fact]
public void Create_empty_instance()
{
Assert.Equal(string.Empty, new HelpText().ToString());
}
[Fact]
public void Create_instance_without_options()
{
// Fixture setup
// Exercize system
var sut =
new HelpText(new HeadingInfo("Unit-tests", "2.0"), new CopyrightInfo(true, "Author", 2005, 2013))
.AddPreOptionsLine("pre-options line 1")
.AddPreOptionsLine("pre-options line 2")
.AddPostOptionsLine("post-options line 1")
.AddPostOptionsLine("post-options line 2");
// Verify outcome
var lines = sut.ToString().ToNotEmptyLines();
Assert.Equal("Unit-tests 2.0", lines[0]);
Assert.Equal("Copyright (C) 2005 - 2013 Author", lines[1]);
Assert.Equal("pre-options line 1", lines[2]);
Assert.Equal("pre-options line 2", lines[3]);
Assert.Equal("post-options line 1", lines[4]);
Assert.Equal("post-options line 2", lines[5]);
// Teardown
}
[Fact]
public void Create_instance_with_options()
{
// Fixture setup
// Exercize system
var sut = new HelpText { AddDashesToOption = true }
.AddPreOptionsLine("pre-options")
.AddOptions(new FakeOptions())
.AddPostOptionsLine("post-options");
// Verify outcome
var lines = sut.ToString().ToNotEmptyLines().TrimStringArray();
Assert.Equal("pre-options", lines[0]);
Assert.Equal("--stringvalue Define a string value here.", lines[1]);
Assert.Equal("-i Define a int sequence here.", lines[2]);
Assert.Equal("-x Define a boolean or switch value here.", lines[3]);
Assert.Equal("--help Display this help screen.", lines[4]);
Assert.Equal("post-options", lines[5]);
// Teardown
}
[Fact]
public void Create_instance_with_enum_options_enabled()
{
// Fixture setup
// Exercize system
var sut = new HelpText { AddDashesToOption = true, AddEnumValuesToHelpText = true }
.AddPreOptionsLine("pre-options")
.AddOptions(new FakeOptionsWithHelpTextEnum())
.AddPostOptionsLine("post-options");
// Verify outcome
var lines = sut.ToString().ToNotEmptyLines().TrimStringArray();
Assert.Equal("pre-options", lines[0]);
Assert.Equal("--stringvalue Define a string value here.", lines[1]);
Assert.Equal("--shape Define a enum value here. Valid values: Circle, Square,", lines[2]);
Assert.Equal("Triangle", lines[3]);
Assert.Equal("--help Display this help screen.", lines[4]);
Assert.Equal("post-options", lines[5]);
// Teardown
}
[Fact]
public void Create_instance_with_enum_options_disabled()
{
// Fixture setup
// Exercize system
var sut = new HelpText { AddDashesToOption = true }
.AddPreOptionsLine("pre-options")
.AddOptions(new FakeOptionsWithHelpTextEnum())
.AddPostOptionsLine("post-options");
// Verify outcome
var lines = sut.ToString().ToNotEmptyLines().TrimStringArray();
Assert.Equal("pre-options", lines[0]);
Assert.Equal("--stringvalue Define a string value here.", lines[1]);
Assert.Equal("--shape Define a enum value here.", lines[2]);
Assert.Equal("--help Display this help screen.", lines[3]);
Assert.Equal("post-options", lines[4]);
// Teardown
}
[Fact]
public void When_defined_MetaValue_should_be_rendered()
{
// Fixture setup
// Exercize system
var sut = new HelpText("Meta Value.")
.AddOptions(new FakeOptionsWithMetaValue());
// Verify outcome
var lines = sut.ToString().ToNotEmptyLines().TrimStringArray();
Assert.Equal("i FILE, input-file=FILE Required. Specify input FILE to be processed.", lines[2]);
// Teardown
}
[Fact]
public void When_help_text_is_longer_than_width_it_will_wrap_around_as_if_in_a_column()
{
// Fixture setup
// Exercize system
var sut = new HelpText(new HeadingInfo("CommandLine.Tests.dll", "1.9.4.131"));
sut.MaximumDisplayWidth = 40;
sut.AddOptions(new FakeOptionsWithLongDescription());
// Verify outcome
var lines = sut.ToString().Split(new[] { Environment.NewLine }, StringSplitOptions.None);
lines[2].Should().Be(" v, verbose This is the description"); //"The first line should have the arguments and the start of the Help Text.");
//string formattingMessage = "Beyond the second line should be formatted as though it's in a column.";
lines[3].Should().Be(" of the verbosity to ");
lines[4].Should().Be(" test out the wrapping ");
lines[5].Should().Be(" capabilities of the ");
lines[6].Should().Be(" Help Text.");
// Teardown
}
[Fact]
public void When_help_text_is_longer_than_width_it_will_wrap_around_as_if_in_a_column_with_new_lines()
{
// Fixture setup
// Exercize system
var sut = new HelpText(new HeadingInfo("CommandLine.Tests.dll", "1.9.4.131"));
sut.MaximumDisplayWidth = 40;
sut.AddOptions(new FakeOptionsWithLongDescriptionAndNewLines());
// Verify outcome
var text = sut.ToString();
var lines = text.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
lines[2].Should().Be(" v, verbose This is the description"); //"The first line should have the arguments and the start of the Help Text.");
lines[3].Should().Be(" of the verbosity to ");
lines[4].Should().Be(" test out the wrapping ");
lines[5].Should().Be(" capabilities of the ");
// The following line ended as a result of the first line feed
lines[6].Should().Be(" Help Text.");
// The following empty line is the result of the second line feed
lines[7].Should().Be(" ");
lines[8].Should().Be(" In Addition to testing ");
lines[9].Should().Be(" the insertion of line ");
lines[10].Should().Be(" feeds.");
lines[11].Should().Be(" input-file This is a very long ");
lines[12].Should().Be(" description of the ");
lines[13].Should().Be(" Input File argument ");
lines[14].Should().Be(" that gets passed in. ");
lines[15].Should().Be(" It should be passed in");
// The following line ended as a result of the lone line feed
lines[16].Should().Be(" as a string.");
lines[17].Should().Be(" This tests a single ");
lines[18].Should().Be(" line feed insertion.");
// Teardown
}
[Fact]
public void When_help_text_is_longer_than_width_it_will_wrap_around_as_if_in_a_column_with_mixed_new_line_styles()
{
// Fixture setup
// Exercize system
var sut = new HelpText(new HeadingInfo("CommandLine.Tests.dll", "1.9.4.131"));
sut.MaximumDisplayWidth = 40;
sut.AddOptions(new FakeOptionsWithLongDescriptionAndMixedNewLines());
// Verify outcome
var text = sut.ToString();
var lines = text.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
lines[2].Should().Be(" v, verbose This is the description"); //"The first line should have the arguments and the start of the Help Text.");
lines[3].Should().Be(" of the verbosity to ");
lines[4].Should().Be(" test out the wrapping ");
lines[5].Should().Be(" capabilities of the ");
// The following line ended as a result of the line feed without a carriage return
lines[6].Should().Be(" Help Text.");
// The following empty line is the result of the carriage return + line feed
lines[7].Should().Be(" ");
lines[8].Should().Be(" In Addition to testing ");
lines[9].Should().Be(" the insertion of line ");
lines[10].Should().Be(" feeds.");
lines[11].Should().Be(" input-file This is a very long ");
lines[12].Should().Be(" description of the ");
lines[13].Should().Be(" Input File argument ");
lines[14].Should().Be(" that gets passed in. ");
lines[15].Should().Be(" It should be passed in");
// The following line ended as a result of the lone carriage return + line feed
lines[16].Should().Be(" as a string.");
lines[17].Should().Be(" This tests a single ");
lines[18].Should().Be(" line feed insertion.");
// Teardown
}
[Fact]
public void Long_help_text_without_spaces()
{
// Fixture setup
// Exercize system
var sut = new HelpText(new HeadingInfo("CommandLine.Tests.dll", "1.9.4.131"));
sut.MaximumDisplayWidth = 40;
sut.AddOptions(new FakeOptionsWithLongDescriptionAndNoSpaces());
// Verify outcome
var lines = sut.ToString().Split(new[] { Environment.NewLine }, StringSplitOptions.None);
lines[2].Should().Be(" v, verbose Before ");
lines[3].Should().Be(" 012345678901234567890123");
lines[4].Should().Be(" After");
lines[5].Should().Be(" input-file Before ");
lines[6].Should().Be(" 012345678901234567890123");
lines[7].Should().Be(" 456789 After");
// Teardown
}
[Fact]
public void Long_pre_and_post_lines_without_spaces()
{
// Fixture setup
// Exercize system
var sut = new HelpText("Heading Info.");
sut.MaximumDisplayWidth = 40;
sut.AddPreOptionsLine("Before 0123456789012345678901234567890123456789012 After")
.AddOptions(new FakeOptionsForHelp())
.AddPostOptionsLine("Before 0123456789012345678901234567890123456789 After");
// Verify outcome
var lines = sut.ToString().Split(new string[] { Environment.NewLine }, StringSplitOptions.None);
lines[1].Should().Be("Before ");
lines[2].Should().Be("0123456789012345678901234567890123456789");
lines[3].Should().Be("012 After");
lines[lines.Length - 3].Should().Be("Before ");
lines[lines.Length - 2].Should().Be("0123456789012345678901234567890123456789");
lines[lines.Length - 1].Should().Be(" After");
// Teardown
}
[Fact]
public void Invoking_RenderParsingErrorsText_returns_appropriate_formatted_text()
{
// Fixture setup
var fakeResult = new ParserResult<NullInstance>(
ParserResultType.Options,
new NullInstance(),
new Error[]
{
new BadFormatTokenError("badtoken"),
new MissingValueOptionError(new NameInfo("x", "switch")),
new UnknownOptionError("unknown"),
new MissingRequiredOptionError(new NameInfo("", "missing")),
new MutuallyExclusiveSetError(new NameInfo("z", "")),
new SequenceOutOfRangeError(new NameInfo("s", "sequence")),
new NoVerbSelectedError(),
new BadVerbSelectedError("badverb"),
new HelpRequestedError(), // should be ignored
new HelpVerbRequestedError(null, null, false), // should be ignored
},
Maybe.Nothing<IEnumerable<Type>>());
Func<Error, string> fakeRenderer = err =>
{
switch (err.Tag)
{
case ErrorType.BadFormatTokenError:
return "ERR " + ((BadFormatTokenError)err).Token;
case ErrorType.MissingValueOptionError:
return "ERR " + ((MissingValueOptionError)err).NameInfo.NameText;
case ErrorType.UnknownOptionError:
return "ERR " + ((UnknownOptionError)err).Token;
case ErrorType.MissingRequiredOptionError:
return "ERR " + ((MissingRequiredOptionError)err).NameInfo.NameText;
case ErrorType.MutuallyExclusiveSetError:
return "ERR " + ((MutuallyExclusiveSetError)err).NameInfo.NameText;
case ErrorType.SequenceOutOfRangeError:
return "ERR " + ((SequenceOutOfRangeError)err).NameInfo.NameText;
case ErrorType.NoVerbSelectedError:
return "ERR no-verb-selected";
case ErrorType.BadVerbSelectedError:
return "ERR " + ((BadVerbSelectedError)err).Token;
default:
throw new InvalidOperationException();
}
};
// Exercize system
var errorsText = HelpText.RenderParsingErrorsText(fakeResult, fakeRenderer, 2);
// Verify outcome
var lines = errorsText.ToNotEmptyLines();
Assert.Equal(" ERR badtoken", lines[0]);
Assert.Equal(" ERR x, switch", lines[1]);
Assert.Equal(" ERR unknown", lines[2]);
Assert.Equal(" ERR missing", lines[3]);
Assert.Equal(" ERR z", lines[4]);
Assert.Equal(" ERR s, sequence", lines[5]);
Assert.Equal(" ERR no-verb-selected", lines[6]);
Assert.Equal(" ERR badverb", lines[7]);
// Teardown
}
[Fact]
public void Invoke_AutoBuild_for_Options_returns_appropriate_formatted_text()
{
// Fixture setup
var fakeResult = new ParserResult<FakeOptions>(
ParserResultType.Options,
new FakeOptions(),
new Error[]
{
new BadFormatTokenError("badtoken"),
new SequenceOutOfRangeError(new NameInfo("i", ""))
},
Maybe.Nothing<IEnumerable<Type>>());
// Exercize system
var helpText = HelpText.AutoBuild(fakeResult);
// Verify outcome
var lines = helpText.ToString().ToNotEmptyLines().TrimStringArray();
Assert.True(lines[0].StartsWith("CommandLine", StringComparison.Ordinal));
Assert.True(lines[1].StartsWith("Copyright (c)", StringComparison.Ordinal));
Assert.Equal("ERROR(S):", lines[2]);
Assert.Equal("Token 'badtoken' is not recognized.", lines[3]);
Assert.Equal("A sequence option 'i' is defined with few items than required.", lines[4]);
Assert.Equal("--stringvalue Define a string value here.", lines[5]);
Assert.Equal("-i Define a int sequence here.", lines[6]);
Assert.Equal("-x Define a boolean or switch value here.", lines[7]);
Assert.Equal("--help Display this help screen.", lines[8]);
// Teardown
}
[Fact]
public void Invoke_AutoBuild_for_Verbs_with_specific_verb_returns_appropriate_formatted_text()
{
// Fixture setup
var fakeResult = new ParserResult<object>(
ParserResultType.Verbs,
new NullInstance(),
new Error[]
{
new HelpVerbRequestedError("commit", typeof(CommitOptions), true)
},
Maybe.Nothing<IEnumerable<Type>>());
// Exercize system
var helpText = HelpText.AutoBuild(fakeResult);
// Verify outcome
var lines = helpText.ToString().ToNotEmptyLines().TrimStringArray();
Assert.True(lines[0].StartsWith("CommandLine", StringComparison.Ordinal));
Assert.True(lines[1].StartsWith("Copyright (c)", StringComparison.Ordinal));
Assert.Equal("-p, --patch Use the interactive patch selection interface to chose which", lines[2]);
Assert.Equal("changes to commit.", lines[3]);
Assert.Equal("--amend Used to amend the tip of the current branch.", lines[4]);
Assert.Equal("--help Display this help screen.", lines[5]);
// Teardown
}
[Fact]
public void Invoke_AutoBuild_for_Verbs_with_unknown_verb_returns_appropriate_formatted_text()
{
// Fixture setup
var verbTypes = Enumerable.Empty<Type>().Concat(
new[] { typeof(AddOptions), typeof(CommitOptions), typeof(CloneOptions) });
var fakeResult = new ParserResult<object>(
ParserResultType.Verbs,
new NullInstance(),
new Error[]
{
new HelpVerbRequestedError(null, null, false)
},
Maybe.Just(verbTypes));
// Exercize system
var helpText = HelpText.AutoBuild(fakeResult);
// Verify outcome
var lines = helpText.ToString().ToNotEmptyLines().TrimStringArray();
Assert.True(lines[0].StartsWith("CommandLine", StringComparison.Ordinal));
Assert.True(lines[1].StartsWith("Copyright (c)", StringComparison.Ordinal));
Assert.Equal("add Add file contents to the index.", lines[2]);
Assert.Equal("commit Record changes to the repository.", lines[3]);
Assert.Equal("clone Clone a repository into a new directory.", lines[4]);
Assert.Equal("help Display more information on a specific command.", lines[5]);
// Teardown
}
}
}