forked from sarbian/ModuleManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUrlConfigExtensionsTest.cs
More file actions
227 lines (197 loc) · 5.48 KB
/
Copy pathUrlConfigExtensionsTest.cs
File metadata and controls
227 lines (197 loc) · 5.48 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
using System;
using Xunit;
using TestUtils;
using ModuleManager.Extensions;
namespace ModuleManagerTests.Extensions
{
public class UrlConfigExtensionsTest
{
[Fact]
public void TestSafeUrl()
{
ConfigNode node = new TestConfigNode("SOME_NODE")
{
{ "name", "this shouldn't show up" },
};
UrlDir.UrlConfig url = UrlBuilder.CreateConfig("abc/def", node);
Assert.Equal("abc/def/SOME_NODE", url.SafeUrl());
}
[Fact]
public void TestSafeUrl__Null()
{
UrlDir.UrlConfig url = null;
Assert.Equal("<null>", url.SafeUrl());
}
[Fact]
public void TestSafeUrl__NullParent()
{
UrlDir.UrlConfig url = new UrlDir.UrlConfig(null, new ConfigNode("SOME_NODE"));
Assert.Equal("SOME_NODE", url.SafeUrl());
}
[Fact]
public void TestSafeUrl__NullParent__NullName()
{
ConfigNode node = new ConfigNode
{
name = null
};
UrlDir.UrlConfig url = new UrlDir.UrlConfig(null, node);
Assert.Equal("<null>", url.SafeUrl());
}
[Fact]
public void TestSafeUrl__NullParent__BlankName()
{
UrlDir.UrlConfig url = new UrlDir.UrlConfig(null, new ConfigNode(" "));
Assert.Equal("<blank>", url.SafeUrl());
}
[Fact]
public void TestSafeUrl__NullName()
{
ConfigNode node = new TestConfigNode()
{
{ "name", "this shouldn't show up" },
};
node.name = null;
UrlDir.UrlConfig url = UrlBuilder.CreateConfig("abc/def", node);
Assert.Equal("abc/def/<null>", url.SafeUrl());
}
[Fact]
public void TestSafeUrl__BlankName()
{
ConfigNode node = new TestConfigNode(" ")
{
{ "name", "this shouldn't show up" },
};
UrlDir.UrlConfig url = UrlBuilder.CreateConfig("abc/def", node);
Assert.Equal("abc/def/<blank>", url.SafeUrl());
}
[Fact]
public void TestPrettyPrint()
{
ConfigNode node = new TestConfigNode("SOME_NODE")
{
{ "abc", "def" },
{ "ghi", "jkl" },
new TestConfigNode("INNER_NODE_1")
{
{ "mno", "pqr" },
},
};
UrlDir.UrlConfig url = UrlBuilder.CreateConfig("abc/def.cfg", node);
string expected = @"
abc/def/SOME_NODE
SOME_NODE
{
abc = def
ghi = jkl
INNER_NODE_1
{
mno = pqr
}
}
".TrimStart().Replace("\r", null);
Assert.Equal(expected, url.PrettyPrint());
}
[Fact]
public void TestPrettyPrint__NullName()
{
ConfigNode node = new TestConfigNode()
{
{ "abc", "def" },
{ "ghi", "jkl" },
new TestConfigNode("INNER_NODE_1")
{
{ "mno", "pqr" },
},
};
node.name = null;
UrlDir.UrlConfig url = UrlBuilder.CreateConfig("abc/def.cfg", node);
string expected = @"
abc/def/<null>
<null>
{
abc = def
ghi = jkl
INNER_NODE_1
{
mno = pqr
}
}
".TrimStart().Replace("\r", null);
Assert.Equal(expected, url.PrettyPrint());
}
[Fact]
public void TestPrettyPrint__BlankName()
{
ConfigNode node = new TestConfigNode(" ")
{
{ "abc", "def" },
{ "ghi", "jkl" },
new TestConfigNode("INNER_NODE_1")
{
{ "mno", "pqr" },
},
};
UrlDir.UrlConfig url = UrlBuilder.CreateConfig("abc/def.cfg", node);
string expected = @"
abc/def/<blank>
{
abc = def
ghi = jkl
INNER_NODE_1
{
mno = pqr
}
}
".TrimStart().Replace("\r", null);
Assert.Equal(expected, url.PrettyPrint());
}
[Fact]
public void TestPrettyPrint__NullNameValue()
{
ConfigNode node = new TestConfigNode("SOME_NODE")
{
{ "name", "temp" },
{ "abc", "def" },
{ "ghi", "jkl" },
new TestConfigNode("INNER_NODE_1")
{
{ "mno", "pqr" },
},
};
node.values[0].value = null;
UrlDir.UrlConfig url = UrlBuilder.CreateConfig("abc/def.cfg", node);
string expected = @"
abc/def/SOME_NODE
SOME_NODE
{
name = <null>
abc = def
ghi = jkl
INNER_NODE_1
{
mno = pqr
}
}
".TrimStart().Replace("\r", null);
Assert.Equal(expected, url.PrettyPrint());
}
[Fact]
public void TestPrettyPrint__NullNode()
{
UrlDir.UrlConfig url = UrlBuilder.CreateConfig("abc/def.cfg", new ConfigNode("SOME_NODE"));
url.config = null;
string expected = @"
abc/def/SOME_NODE
<null node>
".TrimStart().Replace("\r", null);
Assert.Equal(expected, url.PrettyPrint());
}
[Fact]
public void TestPrettyPrint__Null()
{
UrlDir.UrlConfig url = null;
Assert.Equal("<null UrlConfig>", url.PrettyPrint());
}
}
}