-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathCommandLineTests.cs
185 lines (157 loc) · 7.34 KB
/
CommandLineTests.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
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
using System;
using System.Globalization;
using CSharpRepl.Services;
using CSharpRepl.Services.Roslyn.References;
using Xunit;
namespace CSharpRepl.Tests;
public class CommandLineTests
{
[Fact]
public void ParseArguments_NoArguments_ProducesDefaultConfiguration()
{
var result = Parse(commandline: null);
Assert.NotNull(result);
Assert.Equal(SharedFramework.NetCoreApp, result.Framework);
}
[Theory]
[InlineData("-f"), InlineData("--framework"), InlineData("/f")]
public void ParseArguments_FrameworkArgument_SpecifiesFramework(string flag)
{
var result = Parse($"{flag} Microsoft.AspNetCore.App");
Assert.NotNull(result);
Assert.Equal("Microsoft.AspNetCore.App", result.Framework);
var concatenatedValue = Parse($"/f:Microsoft.AspNetCore.App");
Assert.Equal("Microsoft.AspNetCore.App", concatenatedValue.Framework);
}
[Theory]
[InlineData("-u"), InlineData("--using"), InlineData("/u")]
public void ParseArguments_UsingArguments_ProducesUsings(string flag)
{
var result = Parse($"{flag} System.Linq System.Data Newtonsoft.Json");
Assert.NotNull(result);
Assert.Equal(new[] { "System.Linq", "System.Data", "Newtonsoft.Json" }, result.Usings);
var concatenatedValues = Parse($"/u:System.Linq /u:System.Data /u:Newtonsoft.Json");
Assert.Equal(new[] { "System.Linq", "System.Data", "Newtonsoft.Json" }, concatenatedValues.Usings);
}
[Theory]
[InlineData("-r"), InlineData("--reference"), InlineData("/r")]
public void ParseArguments_ReferencesArguments_ProducesUsings(string flag)
{
var result = Parse($"{flag} Foo.dll Bar.dll");
Assert.NotNull(result);
Assert.Equal(new[] { "Foo.dll", "Bar.dll" }, result.References);
var concatenatedValues = Parse($"/r:Foo.dll /r:Bar.dll");
Assert.Equal(new[] { "Foo.dll", "Bar.dll" }, concatenatedValues.References);
}
[Theory]
[InlineData("-t"), InlineData("--theme"), InlineData("/t")]
public void ParseArguments_ThemeArguments_SpecifiesTheme(string flag)
{
var result = Parse($"{flag} Data/theme.json");
Assert.NotNull(result);
Assert.Equal(41, result.Theme.SyntaxHighlightingColors.Length);
Assert.True(result.Theme.TryGetSyntaxHighlightingAnsiColor("struct name", out var color));
Assert.Equal("Yellow", color.ToString());
}
[Theory]
[InlineData("-v"), InlineData("--version"), InlineData("/v")]
public void ParseArguments_VersionArguments_SpecifiesVersion(string flag)
{
var result = Parse(flag);
Assert.NotNull(result);
Assert.Contains("C# REPL ", result.OutputForEarlyExit.Text);
}
[Theory]
[InlineData("-h"), InlineData("--help"), InlineData("/h"), InlineData("/?")]
public void ParseArguments_HelpArguments_SpecifiesHelp(string flag)
{
var result = Parse(flag);
Assert.NotNull(result);
Assert.Contains("Usage: ", result.OutputForEarlyExit.Text);
}
[Theory]
[InlineData("--culture", "en-gb")]
[InlineData("--culture", "en-GB")]
public void ParseArguments_CultureArguments_ProduceCulture(string flag, string cultureName)
{
var result = Parse($"{flag} {cultureName}");
Assert.NotNull(result);
Assert.Equal(new CultureInfo(cultureName), result.Culture);
}
[Theory]
[InlineData("--culture", "en-qwe")]
[InlineData("--culture", "asdf-GB")]
public void ParseArguments_CultureArguments_ShouldThrow(string flag, string cultureName)
{
Assert.Throws<CultureNotFoundException>(() => { Parse($"{flag} {cultureName}"); });
}
[Fact]
public void ParseArguments_ComplexCommandLine_ProducesConfiguration()
{
var result = Parse("-t Data/theme.json -u System.Linq System.Data -u Newtonsoft.Json --reference foo.dll -f Microsoft.AspNetCore.App --reference bar.dll baz.dll Data/LoadScript.csx");
Assert.NotNull(result);
Assert.Equal(41, result.Theme.SyntaxHighlightingColors.Length);
Assert.True(result.Theme.TryGetSyntaxHighlightingAnsiColor("struct name", out var color));
Assert.Equal("Yellow", color.ToString());
Assert.Equal(new[] { "System.Linq", "System.Data", "Newtonsoft.Json" }, result.Usings);
Assert.Equal(new[] { "foo.dll", "bar.dll", "baz.dll" }, result.References);
Assert.Equal("Microsoft.AspNetCore.App", result.Framework);
Assert.Equal(@"#load ""Data/LoadScript.csx""" + Environment.NewLine, result.LoadScript);
}
[Fact]
public void ParseArguments_ResponseFile_ProducesConfiguration()
{
var result = Parse("@Data/ResponseFile.rsp");
Assert.NotNull(result);
Assert.Equal(SharedFramework.NetCoreApp, result.Framework);
Assert.Equal(new[] { "System", "System.Linq", "Foo.Main.Text" }, result.Usings);
Assert.Equal(new[] { "System", "System.ValueTuple.dll", "Foo.Main.Logic.dll", "lib.dll" }, result.References);
}
[Fact]
public void ParseArguments_TrailingArgumentsAfterDoubleDash_SetAsLoadScriptArgs()
{
var csxResult = Parse(new[] { "Data/LoadScript.csx", "--", "Data/LoadScript.csx" });
// load script filename passed before "--" is a load script, after "--" we just pass it to the load script as an arg.
Assert.Equal(new[] { "Data/LoadScript.csx" }, csxResult.LoadScriptArgs);
Assert.Equal(@"#load ""Data/LoadScript.csx""" + Environment.NewLine, csxResult.LoadScript);
var quotedResult = Parse(new[] { "-r", "Foo.dll", "--", @"""a b c""", @"""d e f""" });
Assert.Equal(new[] { @"""a b c""", @"""d e f""" }, quotedResult.LoadScriptArgs);
Assert.Equal(new[] { @"Foo.dll" }, quotedResult.References);
}
[Fact]
public void ParseArguments_ResponseFileFromCommandLineAndConfigFile_ReadsBothFiles()
{
var result = CommandLine.Parse(
["--useTerminalPaletteTheme", "@Data/ResponseFile.rsp"],
"Data/Config.rsp" // includes using System.Text
);
// union of options from both response files
Assert.Equal(new[] { "System.Text", "System", "System.Linq", "Foo.Main.Text" }, result.Usings);
Assert.True(result.UseTerminalPaletteTheme);
}
[Fact]
public void ParseArguments_DotNetSuggestFrameworkParameter_IsAutocompleted()
{
var result = Parse("[suggest:3] --f");
Assert.Equal("--framework" + Environment.NewLine, result.OutputForEarlyExit);
}
[Fact]
public void ParseArguments_DotNetSuggestFrameworkValue_IsAutocompleted()
{
var result = Parse(new[] { "[suggest:12]", "--framework " });
Assert.Contains("Microsoft.NETCore.App", result.OutputForEarlyExit.Text);
}
[Fact]
public void ParseArguments_DotNetSuggestUsingValue_IsAutocompleted()
{
var result = Parse(new[] { "[suggest:25]", "--using System.Collection" });
Assert.Contains("System.Collections.Immutable", result.OutputForEarlyExit.Text);
}
private static Configuration Parse(string commandline) =>
Parse(commandline?.Split(' ') ?? []);
private static Configuration Parse(string[] commands) =>
CommandLine.Parse(commands, ".csharprepl");
}