forked from dlang/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rdmd_test.d
336 lines (266 loc) · 11.8 KB
/
rdmd_test.d
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
/*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
module rdmd_test;
/**
RDMD Test-suite.
Authors: Andrej Mitrovic
Notes:
Use the --compiler switch to specify a custom compiler to build RDMD and run the tests with.
Use the --rdmd switch to specify the path to RDMD.
*/
import std.algorithm;
import std.exception;
import std.file;
import std.getopt;
import std.path;
import std.process;
import std.range;
import std.string;
version (Posix)
{
enum objExt = ".o";
enum binExt = "";
}
else version (Windows)
{
enum objExt = ".obj";
enum binExt = ".exe";
}
else
{
static assert(0, "Unsupported operating system.");
}
string rdmdApp; // path/to/rdmd.exe (once built)
string compiler = "dmd"; // e.g. dmd/gdmd/ldmd
void main(string[] args)
{
string rdmd = "rdmd.d";
bool concurrencyTest;
getopt(args,
"compiler", &compiler,
"rdmd", &rdmd,
"concurrency", &concurrencyTest,
);
enforce(rdmd.exists, "Path to rdmd does not exist: %s".format(rdmd));
rdmdApp = tempDir().buildPath("rdmd_app_") ~ binExt;
if (rdmdApp.exists) std.file.remove(rdmdApp);
auto res = execute([compiler, "-of" ~ rdmdApp, rdmd]);
enforce(res.status == 0, res.output);
enforce(rdmdApp.exists);
runTests();
if (concurrencyTest)
runConcurrencyTest();
}
@property string compilerSwitch() { return "--compiler=" ~ compiler; }
void runTests()
{
/* Test help string output when no arguments passed. */
auto res = execute([rdmdApp]);
assert(res.status == 1, res.output);
assert(res.output.canFind("Usage: rdmd [RDMD AND DMD OPTIONS]... program [PROGRAM OPTIONS]..."));
/* Test --help. */
res = execute([rdmdApp, "--help"]);
assert(res.status == 0, res.output);
assert(res.output.canFind("Usage: rdmd [RDMD AND DMD OPTIONS]... program [PROGRAM OPTIONS]..."));
/* Test --force. */
string forceSrc = tempDir().buildPath("force_src_.d");
std.file.write(forceSrc, `void main() { pragma(msg, "compile_force_src"); }`);
res = execute([rdmdApp, compilerSwitch, forceSrc]);
assert(res.status == 0, res.output);
assert(res.output.canFind("compile_force_src"));
res = execute([rdmdApp, compilerSwitch, forceSrc]);
assert(res.status == 0, res.output);
assert(!res.output.canFind("compile_force_src")); // second call will not re-compile
res = execute([rdmdApp, compilerSwitch, "--force", forceSrc]);
assert(res.status == 0, res.output);
assert(res.output.canFind("compile_force_src")); // force will re-compile
/* Test --build-only. */
string failRuntime = tempDir().buildPath("fail_runtime_.d");
std.file.write(failRuntime, "void main() { assert(0); }");
res = execute([rdmdApp, compilerSwitch, "--force", "--build-only", failRuntime]);
assert(res.status == 0, res.output); // only built, assert(0) not called.
res = execute([rdmdApp, compilerSwitch, "--force", failRuntime]);
assert(res.status == 1, res.output); // assert(0) called, rdmd execution failed.
string failComptime = tempDir().buildPath("fail_comptime_.d");
std.file.write(failComptime, "void main() { static assert(0); }");
res = execute([rdmdApp, compilerSwitch, "--force", "--build-only", failComptime]);
assert(res.status == 1, res.output); // building will fail for static assert(0).
res = execute([rdmdApp, compilerSwitch, "--force", failComptime]);
assert(res.status == 1, res.output); // ditto.
/* Test --chatty. */
string voidMain = tempDir().buildPath("void_main_.d");
std.file.write(voidMain, "void main() { }");
res = execute([rdmdApp, compilerSwitch, "--force", "--chatty", voidMain]);
assert(res.status == 0, res.output);
assert(res.output.canFind("stat ")); // stat should be called.
/* Test --dry-run. */
res = execute([rdmdApp, compilerSwitch, "--force", "--dry-run", failComptime]);
assert(res.status == 0, res.output); // static assert(0) not called since we did not build.
assert(res.output.canFind("mkdirRecurse "), res.output); // --dry-run implies chatty
/* Test --eval. */
res = execute([rdmdApp, compilerSwitch, "--force", "--eval=writeln(`eval_works`);"]);
assert(res.status == 0, res.output);
assert(res.output.canFind("eval_works")); // there could be a "DMD v2.xxx header in the output"
// compiler flags
res = execute([rdmdApp, compilerSwitch, "--force", "-debug",
"--eval=debug {} else assert(false);"]);
assert(res.status == 0, res.output);
// vs program file
res = execute([rdmdApp, compilerSwitch, "--force",
"--eval=assert(true);", voidMain]);
assert(res.status != 0);
assert(res.output.canFind("Cannot have both --eval and a program file ('" ~
voidMain ~ "')."));
/* Test --exclude. */
string packFolder = tempDir().buildPath("dsubpack");
if (packFolder.exists) packFolder.rmdirRecurse();
packFolder.mkdirRecurse();
scope (exit) packFolder.rmdirRecurse();
string subModObj = packFolder.buildPath("submod") ~ objExt;
string subModSrc = packFolder.buildPath("submod.d");
std.file.write(subModSrc, "module dsubpack.submod; void foo() { }");
// build an object file out of the dependency
res = execute([compiler, "-c", "-of" ~ subModObj, subModSrc]);
assert(res.status == 0, res.output);
string subModUser = tempDir().buildPath("subModUser_.d");
std.file.write(subModUser, "module subModUser_; import dsubpack.submod; void main() { foo(); }");
res = execute([rdmdApp, compilerSwitch, "--force", "--exclude=dsubpack", subModUser]);
assert(res.status == 1, res.output); // building without the dependency fails
res = execute([rdmdApp, compilerSwitch, "--force", "--exclude=dsubpack", subModObj, subModUser]);
assert(res.status == 0, res.output); // building with the dependency succeeds
/* Test --extra-file. */
string extraFileDi = tempDir().buildPath("extraFile_.di");
std.file.write(extraFileDi, "module extraFile_; void f();");
string extraFileD = tempDir().buildPath("extraFile_.d");
std.file.write(extraFileD, "module extraFile_; void f() { return; }");
string extraFileMain = tempDir().buildPath("extraFileMain_.d");
std.file.write(extraFileMain,
"module extraFileMain_; import extraFile_; void main() { f(); }");
res = execute([rdmdApp, compilerSwitch, "--force", extraFileMain]);
assert(res.status == 1, res.output); // undefined reference to f()
res = execute([rdmdApp, compilerSwitch, "--force",
"--extra-file=" ~ extraFileD, extraFileMain]);
assert(res.status == 0, res.output); // now OK
/* Test --loop. */
{
auto testLines = "foo\nbar\ndoo".split("\n");
auto pipes = pipeProcess([rdmdApp, compilerSwitch, "--force", "--loop=writeln(line);"], Redirect.stdin | Redirect.stdout);
foreach (input; testLines)
pipes.stdin.writeln(input);
pipes.stdin.close();
while (!testLines.empty)
{
auto line = pipes.stdout.readln.strip;
if (line.empty || line.startsWith("DMD v")) continue; // git-head header
assert(line == testLines.front, "Expected %s, got %s".format(testLines.front, line));
testLines.popFront;
}
auto status = pipes.pid.wait();
assert(status == 0);
}
// vs program file
res = execute([rdmdApp, compilerSwitch, "--force",
"--loop=assert(true);", voidMain]);
assert(res.status != 0);
assert(res.output.canFind("Cannot have both --loop and a program file ('" ~
voidMain ~ "')."));
/* Test --main. */
string noMain = tempDir().buildPath("no_main_.d");
std.file.write(noMain, "module no_main_; void foo() { }");
// test disabled: Optlink creates a dialog box here instead of erroring.
/+ res = execute([rdmdApp, " %s", noMain));
assert(res.status == 1, res.output); // main missing +/
res = execute([rdmdApp, compilerSwitch, "--main", noMain]);
assert(res.status == 0, res.output); // main added
string intMain = tempDir().buildPath("int_main_.d");
std.file.write(intMain, "int main(string[] args) { return args.length; }");
res = execute([rdmdApp, compilerSwitch, "--main", intMain]);
assert(res.status == 1, res.output); // duplicate main
/* Test --makedepend. */
string packRoot = packFolder.buildPath("../").buildNormalizedPath();
string depMod = packRoot.buildPath("depMod_.d");
std.file.write(depMod, "module depMod_; import dsubpack.submod; void main() { }");
res = execute([rdmdApp, compilerSwitch, "-I" ~ packRoot, "--makedepend",
"-of" ~ depMod[0..$-2], depMod]);
import std.ascii : newline;
// simplistic checks
assert(res.output.canFind(depMod[0..$-2] ~ ": \\" ~ newline));
assert(res.output.canFind(newline ~ " " ~ depMod ~ " \\" ~ newline));
assert(res.output.canFind(newline ~ " " ~ subModSrc));
assert(res.output.canFind(newline ~ subModSrc ~ ":" ~ newline));
assert(!res.output.canFind("\\" ~ newline ~ newline));
/* Test --makedepfile. */
string depModFail = packRoot.buildPath("depModFail_.d");
std.file.write(depModFail, "module depMod_; import dsubpack.submod; void main() { assert(0); }");
string depMak = packRoot.buildPath("depMak_.mak");
res = execute([rdmdApp, compilerSwitch, "--force", "--build-only",
"-I" ~ packRoot, "--makedepfile=" ~ depMak,
"-of" ~ depModFail[0..$-2], depModFail]);
scope (exit) std.file.remove(depMak);
string output = std.file.readText(depMak);
// simplistic checks
assert(output.canFind(depModFail[0..$-2] ~ ": \\" ~ newline));
assert(output.canFind(newline ~ " " ~ depModFail ~ " \\" ~ newline));
assert(output.canFind(newline ~ " " ~ subModSrc));
assert(output.canFind(newline ~ "" ~ subModSrc ~ ":" ~ newline));
assert(!output.canFind("\\" ~ newline ~ newline));
assert(res.status == 0, res.output); // only built, assert(0) not called.
/* Test signal propagation through exit codes */
version (Posix)
{
import core.sys.posix.signal;
string crashSrc = tempDir().buildPath("crash_src_.d");
std.file.write(crashSrc, `void main() { int *p; *p = 0; }`);
res = execute([rdmdApp, compilerSwitch, crashSrc]);
assert(res.status == -SIGSEGV, format("%s", res));
}
/* -of doesn't append .exe on Windows: https://d.puremagic.com/issues/show_bug.cgi?id=12149 */
version (Windows)
{
string outPath = tempDir().buildPath("test_of_app");
string exePath = outPath ~ ".exe";
res = execute([rdmdApp, "--build-only", "-of" ~ outPath, voidMain]);
enforce(exePath.exists(), exePath);
}
/* Current directory change should not trigger rebuild */
res = execute([rdmdApp, compilerSwitch, forceSrc]);
assert(res.status == 0, res.output);
assert(!res.output.canFind("compile_force_src"));
{
auto cwd = getcwd();
scope(exit) chdir(cwd);
chdir(tempDir);
res = execute([rdmdApp, compilerSwitch, forceSrc.baseName()]);
assert(res.status == 0, res.output);
assert(!res.output.canFind("compile_force_src"));
}
}
void runConcurrencyTest()
{
string sleep100 = tempDir().buildPath("delay_.d");
std.file.write(sleep100, "void main() { import core.thread; Thread.sleep(100.msecs); }");
auto argsVariants =
[
[rdmdApp, compilerSwitch, sleep100],
[rdmdApp, compilerSwitch, "--force", sleep100],
];
import std.parallelism, std.range, std.random;
foreach (rnd; rndGen.parallel(1))
{
try
{
auto args = argsVariants[rnd % $];
auto res = execute(args);
assert(res.status == 0, res.output);
}
catch (Exception e)
{
import std.stdio;
writeln(e);
break;
}
}
}