test.rs 11.3 KB
Newer Older
1
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 3 4 5 6 7 8 9 10
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

11
use std::cell::RefCell;
12
use std::char;
13
use std::io;
14
use std::io::{Command, TempDir};
15 16
use std::os;
use std::str;
17
use std::strbuf::StrBuf;
F
Felix S. Klock II 已提交
18
use std::unstable::dynamic_lib::DynamicLibrary;
19

20
use collections::{HashSet, HashMap};
L
Liigo Zhuang 已提交
21
use testing;
A
Alex Crichton 已提交
22
use rustc::back::link;
N
Nick Cameron 已提交
23
use rustc::driver::config;
24 25
use rustc::driver::driver;
use rustc::driver::session;
26
use rustc::metadata::creader::Loader;
27 28
use syntax::ast;
use syntax::codemap::{CodeMap, dummy_spanned};
29
use syntax::diagnostic;
30
use syntax::parse::token;
31 32 33 34 35 36 37 38 39

use core;
use clean;
use clean::Clean;
use fold::DocFolder;
use html::markdown;
use passes;
use visit_ast::RustdocVisitor;

40
pub fn run(input: &str,
41
           cfgs: Vec<StrBuf>,
42
           libs: HashSet<Path>,
43
           mut test_args: Vec<StrBuf>)
44
           -> int {
45 46
    let input_path = Path::new(input);
    let input = driver::FileInput(input_path.clone());
47

N
Nick Cameron 已提交
48
    let sessopts = config::Options {
E
Eduard Burtescu 已提交
49 50
        maybe_sysroot: Some(os::self_exe_path().unwrap().dir_path()),
        addl_lib_search_paths: RefCell::new(libs.clone()),
N
Nick Cameron 已提交
51 52
        crate_types: vec!(config::CrateTypeDylib),
        ..config::basic_options().clone()
53 54 55
    };


E
Eduard Burtescu 已提交
56
    let codemap = CodeMap::new();
57
    let diagnostic_handler = diagnostic::default_handler(diagnostic::Auto);
58
    let span_diagnostic_handler =
E
Eduard Burtescu 已提交
59
    diagnostic::mk_span_handler(diagnostic_handler, codemap);
60

N
Nick Cameron 已提交
61
    let sess = session::build_session_(sessopts,
62
                                      Some(input_path.clone()),
63 64
                                      span_diagnostic_handler);

N
Nick Cameron 已提交
65
    let mut cfg = config::build_configuration(&sess);
66
    cfg.extend(cfgs.move_iter().map(|cfg_| {
67
        let cfg_ = token::intern_and_get_ident(cfg_.as_slice());
68 69
        @dummy_spanned(ast::MetaWord(cfg_))
    }));
E
Eduard Burtescu 已提交
70
    let krate = driver::phase_1_parse_input(&sess, cfg, &input);
E
Eduard Burtescu 已提交
71
    let (krate, _) = driver::phase_2_configure_and_expand(&sess, &mut Loader::new(&sess), krate,
E
Eduard Burtescu 已提交
72
                                                          &from_str("rustdoc-test").unwrap());
73 74

    let ctx = @core::DocContext {
75
        krate: krate,
E
Eduard Burtescu 已提交
76
        maybe_typed: core::NotTyped(sess),
77
        src: input_path,
78
        external_paths: RefCell::new(Some(HashMap::new())),
79 80
        external_traits: RefCell::new(None),
        external_typarams: RefCell::new(None),
81
    };
82
    super::ctxtkey.replace(Some(ctx));
83

A
Alex Crichton 已提交
84
    let mut v = RustdocVisitor::new(ctx, None);
85 86 87 88
    v.visit(&ctx.krate);
    let krate = v.clean();
    let (krate, _) = passes::unindent_comments(krate);
    let (krate, _) = passes::collapse_docs(krate);
89

90
    let mut collector = Collector::new(krate.name.to_strbuf(),
91 92 93
                                       libs,
                                       false,
                                       false);
94
    collector.fold_crate(krate);
95

96
    test_args.unshift("rustdoctest".to_strbuf());
97

98
    testing::test_main(test_args.as_slice(),
99
                       collector.tests.move_iter().collect());
100 101 102
    0
}

103
fn runtest(test: &str, cratename: &str, libs: HashSet<Path>, should_fail: bool,
104 105
           no_run: bool, loose_feature_gating: bool) {
    let test = maketest(test, cratename, loose_feature_gating);
106
    let input = driver::StrInput(test.to_strbuf());
107

N
Nick Cameron 已提交
108
    let sessopts = config::Options {
E
Eduard Burtescu 已提交
109 110
        maybe_sysroot: Some(os::self_exe_path().unwrap().dir_path()),
        addl_lib_search_paths: RefCell::new(libs),
N
Nick Cameron 已提交
111
        crate_types: vec!(config::CrateTypeExecutable),
112
        output_types: vec!(link::OutputTypeExe),
113
        no_trans: no_run,
N
Nick Cameron 已提交
114
        cg: config::CodegenOptions {
115
            prefer_dynamic: true,
N
Nick Cameron 已提交
116
            .. config::basic_codegen_options()
117
        },
N
Nick Cameron 已提交
118
        ..config::basic_options().clone()
119 120
    };

121 122 123 124 125 126 127 128 129 130 131
    // Shuffle around a few input and output handles here. We're going to pass
    // an explicit handle into rustc to collect output messages, but we also
    // want to catch the error message that rustc prints when it fails.
    //
    // We take our task-local stderr (likely set by the test runner), and move
    // it into another task. This helper task then acts as a sink for both the
    // stderr of this task and stderr of rustc itself, copying all the info onto
    // the stderr channel we originally started with.
    //
    // The basic idea is to not use a default_handler() for rustc, and then also
    // not print things by default to the actual stderr.
132 133
    let (tx, rx) = channel();
    let w1 = io::ChanWriter::new(tx);
134
    let w2 = w1.clone();
135
    let old = io::stdio::set_stderr(box w1);
136
    spawn(proc() {
137
        let mut p = io::ChanReader::new(rx);
138
        let mut err = old.unwrap_or(box io::stderr() as Box<Writer:Send>);
139 140
        io::util::copy(&mut p, &mut err).unwrap();
    });
141
    let emitter = diagnostic::EmitterWriter::new(box w2);
142 143

    // Compile the code
E
Eduard Burtescu 已提交
144
    let codemap = CodeMap::new();
145
    let diagnostic_handler = diagnostic::mk_handler(box emitter);
146
    let span_diagnostic_handler =
E
Eduard Burtescu 已提交
147
        diagnostic::mk_span_handler(diagnostic_handler, codemap);
148

N
Nick Cameron 已提交
149
    let sess = session::build_session_(sessopts,
150
                                      None,
151 152 153 154
                                      span_diagnostic_handler);

    let outdir = TempDir::new("rustdoctest").expect("rustdoc needs a tempdir");
    let out = Some(outdir.path().clone());
N
Nick Cameron 已提交
155
    let cfg = config::build_configuration(&sess);
F
Felix S. Klock II 已提交
156
    let libdir = sess.target_filesearch().get_lib_path();
157 158
    driver::compile_input(sess, cfg, &input, &out, &None);

159 160
    if no_run { return }

161
    // Run the code!
F
Felix S. Klock II 已提交
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
    //
    // We're careful to prepend the *target* dylib search path to the child's
    // environment to ensure that the target loads the right libraries at
    // runtime. It would be a sad day if the *host* libraries were loaded as a
    // mistake.
    let exe = outdir.path().join("rust_out");
    let env = {
        let mut path = DynamicLibrary::search_path();
        path.insert(0, libdir.clone());

        // Remove the previous dylib search path var
        let var = DynamicLibrary::envvar();
        let mut env: Vec<(~str,~str)> = os::env().move_iter().collect();
        match env.iter().position(|&(ref k, _)| k.as_slice() == var) {
            Some(i) => { env.remove(i); }
            None => {}
        };

        // Add the new dylib search path var
        let newpath = DynamicLibrary::create_path(path.as_slice());
        env.push((var.to_owned(),
                  str::from_utf8(newpath.as_slice()).unwrap().to_owned()));
        env
    };
    match Command::new(exe).env(env.as_slice()).output() {
187 188 189 190
        Err(e) => fail!("couldn't run the test: {}{}", e,
                        if e.kind == io::PermissionDenied {
                            " - maybe your tempdir is mounted with noexec?"
                        } else { "" }),
A
Alex Crichton 已提交
191
        Ok(out) => {
192 193 194
            if should_fail && out.status.success() {
                fail!("test executable succeeded when it should have failed");
            } else if !should_fail && !out.status.success() {
S
Steven Fackler 已提交
195 196
                fail!("test executable failed:\n{}",
                      str::from_utf8(out.error.as_slice()));
197 198 199 200 201
            }
        }
    }
}

202
fn maketest(s: &str, cratename: &str, loose_feature_gating: bool) -> StrBuf {
203
    let mut prog = StrBuf::from_str(r"
204 205
#![deny(warnings)]
#![allow(unused_variable, dead_assignment, unused_mut, attribute_usage, dead_code)]
206
");
207 208 209 210

    if loose_feature_gating {
        // FIXME #12773: avoid inserting these when the tutorial & manual
        // etc. have been updated to not use them so prolifically.
211
        prog.push_str("#![feature(macro_rules, globs, struct_variant, managed_boxes) ]\n");
212 213
    }

214 215
    if !s.contains("extern crate") {
        if s.contains(cratename) {
216 217
            prog.push_str(format!("extern crate {};\n",
                                  cratename).as_slice());
218
        }
219 220 221 222 223 224 225 226 227
    }
    if s.contains("fn main") {
        prog.push_str(s);
    } else {
        prog.push_str("fn main() {\n");
        prog.push_str(s);
        prog.push_str("\n}");
    }

228
    return prog
229 230 231
}

pub struct Collector {
232
    pub tests: Vec<testing::TestDescAndFn>,
233
    names: Vec<StrBuf>,
234 235 236
    libs: HashSet<Path>,
    cnt: uint,
    use_headers: bool,
237 238
    current_header: Option<StrBuf>,
    cratename: StrBuf,
239 240

    loose_feature_gating: bool
241 242 243
}

impl Collector {
244
    pub fn new(cratename: StrBuf, libs: HashSet<Path>,
245
               use_headers: bool, loose_feature_gating: bool) -> Collector {
246
        Collector {
247 248
            tests: Vec::new(),
            names: Vec::new(),
249 250 251 252
            libs: libs,
            cnt: 0,
            use_headers: use_headers,
            current_header: None,
253 254 255
            cratename: cratename,

            loose_feature_gating: loose_feature_gating
256 257 258
        }
    }

259
    pub fn add_test(&mut self, test: StrBuf, should_fail: bool, no_run: bool, should_ignore: bool) {
260 261
        let name = if self.use_headers {
            let s = self.current_header.as_ref().map(|s| s.as_slice()).unwrap_or("");
262
            format_strbuf!("{}_{}", s, self.cnt)
263
        } else {
264
            format_strbuf!("{}_{}", self.names.connect("::"), self.cnt)
265
        };
266
        self.cnt += 1;
E
Eduard Burtescu 已提交
267
        let libs = self.libs.clone();
268
        let cratename = self.cratename.to_owned();
269
        let loose_feature_gating = self.loose_feature_gating;
270
        debug!("Creating test {}: {}", name, test);
L
Liigo Zhuang 已提交
271 272 273
        self.tests.push(testing::TestDescAndFn {
            desc: testing::TestDesc {
                name: testing::DynTestName(name),
274
                ignore: should_ignore,
275
                should_fail: false, // compiler failures are test failures
276
            },
L
Liigo Zhuang 已提交
277
            testfn: testing::DynTestFn(proc() {
278 279 280 281 282 283
                runtest(test.as_slice(),
                        cratename,
                        libs,
                        should_fail,
                        no_run,
                        loose_feature_gating);
284 285 286
            }),
        });
    }
287 288 289 290 291 292 293 294 295 296 297 298

    pub fn register_header(&mut self, name: &str, level: u32) {
        if self.use_headers && level == 1 {
            // we use these headings as test names, so it's good if
            // they're valid identifiers.
            let name = name.chars().enumerate().map(|(i, c)| {
                    if (i == 0 && char::is_XID_start(c)) ||
                        (i != 0 && char::is_XID_continue(c)) {
                        c
                    } else {
                        '_'
                    }
299
                }).collect::<StrBuf>();
300 301 302 303 304 305

            // new header => reset count.
            self.cnt = 0;
            self.current_header = Some(name);
        }
    }
306 307 308 309 310 311
}

impl DocFolder for Collector {
    fn fold_item(&mut self, item: clean::Item) -> Option<clean::Item> {
        let pushed = match item.name {
            Some(ref name) if name.len() == 0 => false,
312
            Some(ref name) => { self.names.push(name.to_strbuf()); true }
313 314 315 316 317
            None => false
        };
        match item.doc_value() {
            Some(doc) => {
                self.cnt = 0;
318
                markdown::find_testable_code(doc, &mut *self);
319 320 321 322 323 324 325 326 327 328
            }
            None => {}
        }
        let ret = self.fold_item_recur(item);
        if pushed {
            self.names.pop();
        }
        return ret;
    }
}