-
Notifications
You must be signed in to change notification settings - Fork 2
/
compile_test.go
402 lines (341 loc) · 9.24 KB
/
compile_test.go
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
package cppdep
import (
"bytes"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"testing"
"time"
)
func init() {
supressLogging = true
}
func TestSimpleCompile(t *testing.T) {
outputDir, err := ioutil.TempDir("", "cppdep_compile_test")
if err != nil {
t.Fatalf("Failed to setup output dir")
}
defer os.RemoveAll(outputDir)
st := SourceTree{
SrcRoot: "test_files/simple",
}
st.ProcessDirectory()
mainFile := st.FindSource("main")
c := &Compiler{OutputDir: outputDir}
binaryPath, err := c.Compile(mainFile)
if err != nil {
t.Fatalf("Compile returned error: %v", err)
}
_, err = os.Stat(filepath.Join(outputDir, "obj/main.o"))
if err != nil {
t.Errorf("main.o file was not created in output directory")
}
_, err = os.Stat(filepath.Join(outputDir, "obj/a.o"))
if err != nil {
t.Errorf("a.o file was not created in output directory")
}
_, err = os.Stat(filepath.Join(outputDir, "bin/main"))
if err != nil {
t.Errorf("main file was not created in output directory")
}
buf := &bytes.Buffer{}
cmd := exec.Command(binaryPath)
cmd.Stdout = buf
err = cmd.Run()
switch {
case err != nil:
t.Errorf("Failed to execute %q", binaryPath)
case string(buf.Bytes()) != "Hello World!\n":
t.Errorf("Program output not as expect")
}
objCount := 0
binCount := 0
makeObjectHook = func(file *File) {
objCount++
}
makeBinaryHook = func(file *File) {
binCount++
}
defer func() {
makeBinaryHook = nil
makeObjectHook = nil
}()
_, err = c.Compile(mainFile)
switch {
case err != nil:
t.Fatalf("Second compile failed: %v", err)
case objCount != 0:
t.Errorf("Expected no object files to be built: %d", objCount)
case binCount != 0:
t.Errorf("Expected no binary to be built: %d", binCount)
}
objCount = 0
binCount = 0
var ah *File
for _, dep := range mainFile.Deps {
if strings.LastIndex(dep.Path, "a.h") != -1 {
ah = dep
break
}
}
// NOTE: unfortunately OS X timestamps only have 1 second resolution
if runtime.GOOS == "darwin" {
if testing.Short() {
t.Skip("Skipping rest of the test because we need to sleep for a second on OS X")
}
time.Sleep(time.Second)
}
origModTime := ah.ModTime
ah.ModTime = time.Now()
if err := os.Chtimes(ah.Path, ah.ModTime, ah.ModTime); err != nil {
t.Fatalf("Failed to modify times for %q", ah.Path)
}
_, err = c.Compile(mainFile)
switch {
case err != nil:
t.Fatalf("Third compile failed: %v", err)
case objCount != 2:
t.Errorf("Expected two objects file to be built: %d", objCount)
case binCount != 1:
t.Errorf("Expected a binary to be built")
}
if runtime.GOOS == "darwin" {
time.Sleep(time.Second)
}
ah.ModTime = origModTime
os.Chtimes(ah.Path, ah.ModTime, ah.ModTime)
objCount = 0
binCount = 0
mainFile.ModTime = time.Now()
if err := os.Chtimes(mainFile.Path, mainFile.ModTime, mainFile.ModTime); err != nil {
t.Fatalf("Failed to modify fimes for %q", mainFile.Path)
}
_, err = c.Compile(mainFile)
switch {
case err != nil:
t.Fatalf("Fourth compile failed: %v", err)
case objCount != 1:
t.Errorf("Expected one object file to be built: %d", objCount)
case binCount != 1:
t.Errorf("Expected a binary to be built")
}
}
func TestCompileSourceLib(t *testing.T) {
outputDir, err := ioutil.TempDir("", "cppdep_compile_test")
if err != nil {
t.Fatalf("Failed to setup output dir")
}
defer os.RemoveAll(outputDir)
st := &SourceTree{
SrcRoot: "test_files/source_lib",
SourceLibs: map[string][]string{"lib.h": {"liba.cc", "libb.cc"}},
}
st.ProcessDirectory()
mainFile := st.FindSource("main")
c := &Compiler{OutputDir: outputDir}
_, err = c.Compile(mainFile)
if err != nil {
t.Fatalf("Compile returned error: %v", err)
}
}
func TestCompileLibrary(t *testing.T) {
outputDir, err := ioutil.TempDir("", "cppdep_compile_test")
if err != nil {
t.Fatalf("Failed to setup output dir")
}
defer os.RemoveAll(outputDir)
st := &SourceTree{
SrcRoot: "test_files/library",
Libraries: map[string][]string{"mylib": {"lib.cc"}},
}
st.ProcessDirectory()
libFile := st.FindSource("mylib")
c := &Compiler{
Flags: []string{"-fPIC"},
OutputDir: outputDir,
}
path, err := c.Compile(libFile)
switch {
case err != nil:
t.Errorf("Compile returned error: %v", err)
case path != filepath.Join(outputDir, "bin/mylib.so"):
t.Errorf("output location not as expected: %q", path)
}
}
func TestSystemLibraryCompile(t *testing.T) {
outputDir, err := ioutil.TempDir("", "cppdep_compile_test")
if err != nil {
t.Fatalf("Failed to setup output dir")
}
defer os.RemoveAll(outputDir)
st := &SourceTree{
SrcRoot: "test_files/gzcat",
LinkLibraries: map[string][]string{"zlib.h": {"-lz"}},
}
st.ProcessDirectory()
mainFile := st.FindSource("gzcat")
c := &Compiler{OutputDir: outputDir}
binaryPath, err := c.Compile(mainFile)
if err != nil {
t.Fatalf("Compile returned error: %v", err)
}
buf := &bytes.Buffer{}
cmd := exec.Command(binaryPath, "test_files/gzcat/text.txt.gz")
cmd.Stdout = buf
err = cmd.Run()
switch {
case err != nil:
t.Errorf("Failed to execute %q, %q", binaryPath, string(buf.Bytes()))
case string(buf.Bytes()) != "This is a test file for gzcat.\n":
t.Errorf("Program output not as expect")
}
}
func TestCompileFlags(t *testing.T) {
outputDir, err := ioutil.TempDir("", "cppdep_compile_test")
if err != nil {
t.Fatalf("Failed to setup output dir")
}
defer os.RemoveAll(outputDir)
st := SourceTree{
SrcRoot: "test_files/compiler_warning",
}
st.ProcessDirectory()
mainFile := st.FindSource("main")
c := &Compiler{
Flags: []string{"-Wsign-compare", "-Werror"},
OutputDir: outputDir,
}
_, err = c.Compile(mainFile)
if err == nil {
t.Errorf("Expected compile to fail due to warning and -Werror flag")
}
}
func TestCompileUsingTypeGenerator(t *testing.T) {
outputDir, err := ioutil.TempDir("", "cppdep_compile_test")
if err != nil {
t.Fatalf("Failed to setup output dir")
}
defer os.RemoveAll(outputDir)
cg := &TypeGenerator{
InputExt: ".txtc",
OutputExts: []string{".cc"},
Command: []string{"cp", "$CPPDEP_INPUT_FILE", "$CPPDEP_OUTPUT_PREFIX.cc"},
}
hg := &TypeGenerator{
InputExt: ".txth",
OutputExts: []string{".h"},
Command: []string{"cp", "$CPPDEP_INPUT_FILE", "$CPPDEP_OUTPUT_PREFIX.h"},
}
st := &SourceTree{
SrcRoot: "test_files/generator_compile",
Generators: []Generator{cg, hg},
BuildDir: outputDir,
}
st.ProcessDirectory()
mainFile := st.FindSource("main")
if mainFile == nil {
t.Fatalf("Unable to find main file")
}
c := &Compiler{
IncludeDirs: []string{st.GenDir()},
OutputDir: outputDir,
}
_, err = c.Compile(mainFile)
if err != nil {
t.Errorf("Failed to compile: %v", err)
}
// TODO: test that one input being modified only triggers a single generator
}
func TestCompileUsingShellGenerator(t *testing.T) {
outputDir, err := ioutil.TempDir("", "cppdep_generator_test")
if err != nil {
t.Fatalf("Failed to setup output dir")
}
defer os.RemoveAll(outputDir)
absShellPath, err := filepath.Abs("test_files/shell_generator/script.sh")
if err != nil {
t.Fatalf("Failed to get absolute path of shell script")
}
g := &ShellGenerator{
InputPaths: []string{"dir/firstHalf.txt", "dir/secondHalf.cc", "lib.h", "lib.cc"},
OutputFiles: []string{"main.cc", "modlib.h", "modlib.cc"},
ShellFilePath: absShellPath,
}
st := &SourceTree{
SrcRoot: "test_files/shell_generator",
Generators: []Generator{g},
BuildDir: outputDir,
}
st.ProcessDirectory()
mainFile := st.FindSource("main")
if mainFile == nil {
t.Fatalf("Unable to find main file")
}
c := &Compiler{
IncludeDirs: []string{st.GenDir()},
OutputDir: outputDir,
}
_, err = c.Compile(mainFile)
if err != nil {
t.Errorf("Failed to compile: %v", err)
}
}
func TestCompileAllGeneratesObjectFilesOnce(t *testing.T) {
outputDir, err := ioutil.TempDir("", "cppdep_compile_test")
if err != nil {
t.Fatalf("Failed to setup output dir")
}
defer os.RemoveAll(outputDir)
st := SourceTree{
SrcRoot: "test_files/simple",
}
st.ProcessDirectory()
files := []*File{st.FindSource("main"), st.FindSource("mainb")}
c := &Compiler{OutputDir: outputDir}
objCount := 0
binCount := 0
makeObjectHook = func(file *File) {
objCount++
}
makeBinaryHook = func(file *File) {
binCount++
}
defer func() {
makeBinaryHook = nil
makeObjectHook = nil
}()
_, err = c.CompileAll(files)
switch {
case err != nil:
t.Errorf("CompileAll returned error: %v", err)
case objCount != 3:
t.Errorf("Expected 3 object files to be built, actually %d were built", objCount)
case binCount != 2:
t.Errorf("Expected 2 binary files to be built, actually %d were built", binCount)
}
}
func TestCompileRenamedBinaries(t *testing.T) {
outputDir, err := ioutil.TempDir("", "cppdep_compile_test")
if err != nil {
t.Fatalf("Failed to setup output dir")
}
defer os.RemoveAll(outputDir)
st := SourceTree{
SrcRoot: "test_files/simple",
}
st.ProcessDirectory()
mainFile := st.FindSource("main")
mainFile.BinaryName = "change_bin_name"
c := &Compiler{OutputDir: outputDir}
expectedBinPath := filepath.Join(outputDir, "bin", "change_bin_name")
binaryPath, err := c.Compile(mainFile)
switch {
case err != nil:
t.Errorf("Compile failed: %v", err)
case binaryPath != expectedBinPath:
t.Errorf("Output filename was not changed correctly: %q != %q", binaryPath, expectedBinPath)
}
}