]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/rust-log-filter.rs
rollup merge of #19849: alexcrichton/second-pass-option
[rust.git] / src / test / run-pass / rust-log-filter.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // exec-env:RUST_LOG=rust-log-filter/f.o
12
13 #![feature(phase)]
14 #[phase(plugin,link)]
15 extern crate log;
16
17 pub struct ChannelLogger {
18     tx: Sender<String>
19 }
20
21 impl ChannelLogger {
22     pub fn new() -> (Box<ChannelLogger>, Receiver<String>) {
23         let (tx, rx) = channel();
24         (box ChannelLogger { tx: tx }, rx)
25     }
26 }
27
28 impl log::Logger for ChannelLogger {
29     fn log(&mut self, record: &log::LogRecord) {
30         self.tx.send(format!("{}", record.args));
31     }
32 }
33
34 pub fn main() {
35     let (logger, rx) = ChannelLogger::new();
36
37     spawn(move|| {
38         log::set_logger(logger);
39
40         // our regex is "f.o"
41         // ensure it is a regex, and isn't anchored
42         info!("foo");
43         info!("bar");
44         info!("foo bar");
45         info!("bar foo");
46         info!("f1o");
47     });
48
49     assert_eq!(rx.recv().as_slice(), "foo");
50     assert_eq!(rx.recv().as_slice(), "foo bar");
51     assert_eq!(rx.recv().as_slice(), "bar foo");
52     assert_eq!(rx.recv().as_slice(), "f1o");
53     assert!(rx.recv_opt().is_err());
54 }