-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathOptionConfigurationTest.cs
155 lines (135 loc) · 3.75 KB
/
OptionConfigurationTest.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
// Copyright (c) Mohamed Hassan & Contributors. All rights reserved. See License.md in the project root for license information.
namespace OData2Poco.Tests;
using InfraStructure.FileSystem;
public class OptionConfigurationTest : BaseTest
{
private const string Config = "config.txt";
private const string Content = @"
# -r mysite.com
-r localhost
-v #verbose
";
private OptionConfiguration _cfg;
[SetUp]
public void SetUp()
{
_fileSystem = new NullFileSystem();
_cfg = new OptionConfiguration(_fileSystem);
Fakes.Mock(Config, Content);
}
[Test]
public void Read_existing_configuration_file_test()
{
//Arrange
string[] expected = ["-r", "localhost", "-v"];
//Act
var sut = _cfg.ReadConfig(Config);
//Assert
sut.Should().BeEquivalentTo(expected);
}
[Test]
public void Load_args_from_existing_configuration_file_test()
{
//Arrange
var args = new[]
{
"@config.txt"
};
string[] expected = ["-r", "localhost", "-v"];
Fakes.Mock("o2pgen.txt", Content);
//Act
var flag = _cfg.TryGetConfigurationFile(args, out var cli, out var error, out var fileName);
//Assert
flag.Should().BeTrue();
fileName.Should().Be("config.txt");
error.Should().BeNull();
cli.Should().BeEquivalentTo(expected);
}
[Test]
public void Load_args_from_not_existing_configuration_file_test()
{
//Arrange
var args = new[]
{
"@config2.txt"
};
//Act
var flag = _cfg.TryGetConfigurationFile(args, out var cli, out var error, out var _);
//Assert
flag.Should().BeFalse();
cli.Should().BeEquivalentTo(args);
error.Should().NotBeNull();
}
[Test]
public void Load_args_from_default_configuration_file_test()
{
//Arrange
string[] expected = ["-r", "localhost", "-v"];
var args = Array.Empty<string>();
Fakes.Mock("o2pgen.txt", Content);
//Act
var flag = _cfg.TryGetConfigurationFile(args, out var cli, out var error, out var fileName);
Fakes.Remove("o2pgen.txt");
//Assert
flag.Should().BeTrue();
fileName.Should().Be("o2pgen.txt");
error.Should().BeNull();
cli.Should().BeEquivalentTo(expected);
}
[Test]
public void More_args_without_configuration_has_no_default_config_test()
{
//Arrange
var args = new[]
{
"-r", "localhost"
};
//Act
var flag = _cfg.TryGetConfigurationFile(args, out var cli, out var error, out var _);
//Assert
flag.Should().BeFalse();
cli.Should().BeEquivalentTo(args);
error.Should().BeNull();
}
[Test]
public void Empty_args_without_existing_default_config_o2pgen_txt_test()
{
//Arrange
var args = Array.Empty<string>();
//Act
var flag = _cfg.TryGetConfigurationFile(args, out var cli, out var error, out var _);
//Assert
flag.Should().BeFalse();
cli.Should().BeEmpty();
error.Should().BeNull();
}
[Test]
public void ConfigurationFile_with_include()
{
//Arrange
var text2 = @"
-b bb
#comment
".Trim();
var text1 = @"
-a aa
#include f2.txt
#include aa.txt
#comment2
".Trim();
var expected = @"
-a aa
-b bb
#comment
#include aa.txt
#comment2
".Trim();
Fakes.Mock("f2.txt", text2);
Fakes.Mock("f1.txt", text1);
//Act
var text3 = _cfg.LoadWithIncludeFile("f1.txt", out var errors);
//Assert
errors.Length.Should().Be(1);
text3.Trim().Should().BeEquivalentTo(expected.Trim());
}
}