forked from rust-lang/rust-bindgen
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtests.rs
479 lines (409 loc) · 14.4 KB
/
tests.rs
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
extern crate bindgen;
extern crate clap;
extern crate diff;
#[cfg(feature = "logging")]
extern crate env_logger;
extern crate shlex;
use bindgen::{clang_version, Builder};
use std::env;
use std::fs;
use std::io::{self, BufRead, BufReader, Error, ErrorKind, Read, Write};
use std::path::PathBuf;
use std::process;
use std::sync::Once;
#[path = "../src/options.rs"]
mod options;
use options::builder_from_flags;
/// The environment variable that determines if test expectations are overwritten.
static OVERWRITE_ENV_VAR: &str = "BINDGEN_OVERWRITE_EXPECTED";
// Run `rustfmt` on the given source string and return a tuple of the formatted
// bindings, and rustfmt's stderr.
fn rustfmt(source: String) -> (String, String) {
static CHECK_RUSTFMT: Once = Once::new();
CHECK_RUSTFMT.call_once(|| {
let have_working_rustfmt = process::Command::new("rustup")
.args(&["run", "nightly", "rustfmt", "--version"])
.stdout(process::Stdio::null())
.stderr(process::Stdio::null())
.status()
.ok()
.map_or(false, |status| status.success());
if !have_working_rustfmt {
panic!(
"
The latest `rustfmt` is required to run the `bindgen` test suite. Install
`rustfmt` with:
$ rustup update nightly
$ rustup run nightly cargo install -f rustfmt-nightly
"
);
}
});
let mut child = process::Command::new("rustup")
.args(&[
"run",
"nightly",
"rustfmt",
"--config-path",
concat!(env!("CARGO_MANIFEST_DIR"), "/tests/rustfmt.toml"),
])
.stdin(process::Stdio::piped())
.stdout(process::Stdio::piped())
.stderr(process::Stdio::piped())
.spawn()
.expect("should spawn `rustup run nightly rustfmt`");
let mut stdin = child.stdin.take().unwrap();
let mut stdout = child.stdout.take().unwrap();
let mut stderr = child.stderr.take().unwrap();
// Write to stdin in a new thread, so that we can read from stdout on this
// thread. This keeps the child from blocking on writing to its stdout which
// might block us from writing to its stdin.
let stdin_handle =
::std::thread::spawn(move || stdin.write_all(source.as_bytes()));
// Read stderr on a new thread for similar reasons.
let stderr_handle = ::std::thread::spawn(move || {
let mut output = vec![];
io::copy(&mut stderr, &mut output)
.map(|_| String::from_utf8_lossy(&output).to_string())
});
let mut output = vec![];
io::copy(&mut stdout, &mut output).expect("Should copy stdout into vec OK");
// Ignore actual rustfmt status because it is often non-zero for trivial
// things.
let _ = child.wait().expect("should wait on rustfmt child OK");
stdin_handle
.join()
.expect("writer thread should not have panicked")
.expect("should have written to child rustfmt's stdin OK");
let bindings = String::from_utf8(output)
.expect("rustfmt should only emit valid utf-8");
let stderr = stderr_handle
.join()
.expect("stderr reader thread should not have panicked")
.expect("should have read child rustfmt's stderr OK");
(bindings, stderr)
}
fn compare_generated_header(
header: &PathBuf,
builder: Builder,
) -> Result<(), Error> {
let file_name = header.file_name().ok_or(Error::new(
ErrorKind::Other,
"compare_generated_header expects a file",
))?;
let mut expectation = PathBuf::from(header);
expectation.pop();
expectation.pop();
expectation.push("expectations");
expectation.push("tests");
let mut looked_at = vec![];
let mut expectation_file;
// Try more specific expectations first.
{
let mut expectation = expectation.clone();
if cfg!(feature = "testing_only_libclang_9") {
expectation.push("libclang-9");
} else if cfg!(feature = "testing_only_libclang_5") {
expectation.push("libclang-5");
} else if cfg!(feature = "testing_only_libclang_4") {
expectation.push("libclang-4");
} else if cfg!(feature = "testing_only_libclang_3_9") {
expectation.push("libclang-3.9");
} else if cfg!(feature = "testing_only_libclang_3_8") {
expectation.push("libclang-3.8");
} else {
match clang_version().parsed {
None => {}
Some(version) => {
let (maj, min) = version;
let version_str = if maj >= 9 {
"9".to_owned()
} else if maj >= 5 {
"5".to_owned()
} else if maj >= 4 {
"4".to_owned()
} else {
format!("{}.{}", maj, min)
};
expectation.push(format!("libclang-{}", version_str));
}
}
}
expectation.push(file_name);
expectation.set_extension("rs");
expectation_file = fs::File::open(&expectation).ok();
looked_at.push(expectation);
}
// Try the default path otherwise.
if expectation_file.is_none() {
expectation.push(file_name);
expectation.set_extension("rs");
expectation_file = fs::File::open(&expectation).ok();
looked_at.push(expectation);
}
let mut expected = String::new();
match expectation_file {
Some(f) => {
BufReader::new(f).read_to_string(&mut expected)?;
}
None => panic!(
"missing test expectation file and/or 'testing_only_libclang_$VERSION' \
feature for header '{}'; looking for expectation file at '{:?}'",
header.display(),
looked_at,
),
};
// We skip the generate() error here so we get a full diff below
let (actual, rustfmt_stderr) = match builder.generate() {
Ok(bindings) => {
let actual = bindings.to_string();
rustfmt(actual)
}
Err(()) => ("<error generating bindings>".to_string(), "".to_string()),
};
println!("{}", rustfmt_stderr);
let (expected, rustfmt_stderr) = rustfmt(expected);
println!("{}", rustfmt_stderr);
if actual == expected {
if !actual.is_empty() {
return Ok(());
}
return Err(Error::new(
ErrorKind::Other,
"Something's gone really wrong!",
));
}
println!("{}", rustfmt_stderr);
println!("diff expected generated");
println!("--- expected: {:?}", looked_at.last().unwrap());
println!("+++ generated from: {:?}", header);
for diff in diff::lines(&expected, &actual) {
match diff {
diff::Result::Left(l) => println!("-{}", l),
diff::Result::Both(l, _) => println!(" {}", l),
diff::Result::Right(r) => println!("+{}", r),
}
}
// Overwrite the expectation with actual output.
if env::var_os(OVERWRITE_ENV_VAR).is_some() {
let mut expectation_file = fs::File::create(looked_at.last().unwrap())?;
expectation_file.write_all(actual.as_bytes())?;
}
Err(Error::new(ErrorKind::Other, "Header and binding differ! Run with BINDGEN_OVERWRITE_EXPECTED=1 in the environment to automatically overwrite the expectation."))
}
fn builder() -> Builder {
#[cfg(feature = "logging")]
let _ = env_logger::try_init();
bindgen::builder()
}
fn create_bindgen_builder(header: &PathBuf) -> Result<Option<Builder>, Error> {
#[cfg(feature = "logging")]
let _ = env_logger::try_init();
let source = fs::File::open(header)?;
let reader = BufReader::new(source);
// Scoop up bindgen-flags from test header
let mut flags = Vec::with_capacity(2);
for line in reader.lines() {
let line = line?;
if !line.starts_with("// bindgen") {
continue;
}
if line.contains("bindgen-flags: ") {
let extra_flags = line
.split("bindgen-flags: ")
.last()
.and_then(shlex::split)
.unwrap();
flags.extend(extra_flags.into_iter());
} else if line.contains("bindgen-osx-only") {
let prepend_flags = ["--raw-line", "#![cfg(target_os=\"macos\")]"];
flags = prepend_flags
.iter()
.map(ToString::to_string)
.chain(flags)
.collect();
}
}
// Different platforms have various different conventions like struct padding, mangling, etc.
// We make the default target as x86_64-unknown-linux
if flags.iter().all(|flag| !flag.starts_with("--target=")) {
if !flags.iter().any(|flag| flag == "--") {
flags.push("--".into());
}
flags.push("--target=x86_64-unknown-linux".into());
}
// Fool builder_from_flags() into believing it has real env::args_os...
// - add "bindgen" as executable name 0th element
// - add header filename as 1st element
// - prepend raw lines so they're in the right order for expected output
// - append the test header's bindgen flags
let header_str = header
.to_str()
.ok_or(Error::new(ErrorKind::Other, "Invalid header file name"))?;
let prepend = [
"bindgen",
// We format in `compare_generated_header` ourselves to have a little
// more control.
"--no-rustfmt-bindings",
"--with-derive-default",
header_str,
"--raw-line",
"",
"--raw-line",
"#![allow(dead_code, non_snake_case, non_camel_case_types, non_upper_case_globals)]",
"--raw-line",
"",
];
let args = prepend
.iter()
.map(ToString::to_string)
.chain(flags.into_iter());
builder_from_flags(args).map(|(builder, _, _)| Some(builder))
}
macro_rules! test_header {
($function:ident, $header:expr) => {
#[test]
fn $function() {
let header = PathBuf::from($header);
let result = create_bindgen_builder(&header).and_then(|builder| {
if let Some(builder) = builder {
compare_generated_header(&header, builder)
} else {
Ok(())
}
});
if let Err(err) = result {
panic!("{}", err);
}
}
};
}
// This file is generated by build.rs
include!(concat!(env!("OUT_DIR"), "/tests.rs"));
#[test]
fn test_clang_env_args() {
std::env::set_var(
"BINDGEN_EXTRA_CLANG_ARGS",
"-D_ENV_ONE=1 -D_ENV_TWO=\"2 -DNOT_THREE=1\"",
);
let actual = builder()
.header_contents(
"test.hpp",
"#ifdef _ENV_ONE\nextern const int x[] = { 42 };\n#endif\n\
#ifdef _ENV_TWO\nextern const int y[] = { 42 };\n#endif\n\
#ifdef NOT_THREE\nextern const int z[] = { 42 };\n#endif\n",
)
.generate()
.unwrap()
.to_string();
let (actual, stderr) = rustfmt(actual);
println!("{}", stderr);
let (expected, _) = rustfmt(
"/* automatically generated by rust-bindgen */
extern \"C\" {
pub static x: [::std::os::raw::c_int; 1usize];
}
extern \"C\" {
pub static y: [::std::os::raw::c_int; 1usize];
}
"
.to_string(),
);
assert_eq!(expected, actual);
}
#[test]
fn test_header_contents() {
let actual = builder()
.header_contents("test.h", "int foo(const char* a);")
.clang_arg("--target=x86_64-unknown-linux")
.generate()
.unwrap()
.to_string();
let (actual, stderr) = rustfmt(actual);
println!("{}", stderr);
let (expected, _) = rustfmt(
"/* automatically generated by rust-bindgen */
extern \"C\" {
pub fn foo(a: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;
}
"
.to_string(),
);
assert_eq!(expected, actual);
}
#[test]
fn test_multiple_header_calls_in_builder() {
let actual = builder()
.header(concat!(
env!("CARGO_MANIFEST_DIR"),
"/tests/headers/func_ptr.h"
))
.header(concat!(env!("CARGO_MANIFEST_DIR"), "/tests/headers/char.h"))
.clang_arg("--target=x86_64-unknown-linux")
.generate()
.unwrap()
.to_string();
let (actual, stderr) = rustfmt(actual);
println!("{}", stderr);
let expected = include_str!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/tests/expectations/tests/test_multiple_header_calls_in_builder.rs"
));
let (expected, _) = rustfmt(expected.to_string());
if actual != expected {
println!("Generated bindings differ from expected!");
for diff in diff::lines(&actual, &expected) {
match diff {
diff::Result::Left(l) => println!("-{}", l),
diff::Result::Both(l, _) => println!(" {}", l),
diff::Result::Right(r) => println!("+{}", r),
}
}
panic!();
}
}
#[test]
// Doesn't support executing sh file on Windows.
// We may want to implement it in Rust so that we support all systems.
#[cfg(not(target_os = "windows"))]
fn no_system_header_includes() {
use std::process::Command;
assert!(Command::new("./ci/no-includes.sh")
.current_dir(env!("CARGO_MANIFEST_DIR"))
.spawn()
.expect("should spawn ./ci/no-includes.sh OK")
.wait()
.expect("should wait for ./ci/no-includes OK")
.success());
}
#[test]
fn dump_preprocessed_input() {
let arg_keyword =
concat!(env!("CARGO_MANIFEST_DIR"), "/tests/headers/arg_keyword.hpp");
let empty_layout = concat!(
env!("CARGO_MANIFEST_DIR"),
"/tests/headers/cpp-empty-layout.hpp"
);
builder()
.header(arg_keyword)
.header(empty_layout)
.dump_preprocessed_input()
.expect("should dump preprocessed input");
fn slurp(p: &str) -> String {
let mut contents = String::new();
let mut file = fs::File::open(p).unwrap();
file.read_to_string(&mut contents).unwrap();
contents
}
let bindgen_ii = slurp("__bindgen.ii");
let arg_keyword = slurp(arg_keyword);
let empty_layout = slurp(empty_layout);
assert!(
bindgen_ii.find(&arg_keyword).is_some(),
"arg_keyword.hpp is in the preprocessed file"
);
assert!(
bindgen_ii.find(&empty_layout).is_some(),
"cpp-empty-layout.hpp is in the preprocessed file"
);
}