]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/rust-log-filter.rs
Merge pull request #20452 from brson/rustup
[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 use std::sync::mpsc::{channel, Sender, Receiver};
18 use std::thread::Thread;
19
20 pub struct ChannelLogger {
21     tx: Sender<String>
22 }
23
24 impl ChannelLogger {
25     pub fn new() -> (Box<ChannelLogger>, Receiver<String>) {
26         let (tx, rx) = channel();
27         (box ChannelLogger { tx: tx }, rx)
28     }
29 }
30
31 impl log::Logger for ChannelLogger {
32     fn log(&mut self, record: &log::LogRecord) {
33         self.tx.send(format!("{}", record.args)).unwrap();
34     }
35 }
36
37 pub fn main() {
38     let (logger, rx) = ChannelLogger::new();
39
40     let _t = Thread::spawn(move|| {
41         log::set_logger(logger);
42
43         // our regex is "f.o"
44         // ensure it is a regex, and isn't anchored
45         info!("foo");
46         info!("bar");
47         info!("foo bar");
48         info!("bar foo");
49         info!("f1o");
50     });
51
52     assert_eq!(rx.recv().unwrap().as_slice(), "foo");
53     assert_eq!(rx.recv().unwrap().as_slice(), "foo bar");
54     assert_eq!(rx.recv().unwrap().as_slice(), "bar foo");
55     assert_eq!(rx.recv().unwrap().as_slice(), "f1o");
56     assert!(rx.recv().is_err());
57 }