]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/rust-log-filter.rs
regex: Remove in-tree version
[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/foo
12
13 #![allow(unknown_features)]
14 #![feature(box_syntax)]
15
16 #[macro_use]
17 extern crate log;
18
19 use std::sync::mpsc::{channel, Sender, Receiver};
20 use std::thread::Thread;
21
22 pub struct ChannelLogger {
23     tx: Sender<String>
24 }
25
26 impl ChannelLogger {
27     pub fn new() -> (Box<ChannelLogger>, Receiver<String>) {
28         let (tx, rx) = channel();
29         (box ChannelLogger { tx: tx }, rx)
30     }
31 }
32
33 impl log::Logger for ChannelLogger {
34     fn log(&mut self, record: &log::LogRecord) {
35         self.tx.send(format!("{}", record.args)).unwrap();
36     }
37 }
38
39 pub fn main() {
40     let (logger, rx) = ChannelLogger::new();
41
42     let _t = Thread::spawn(move|| {
43         log::set_logger(logger);
44
45         info!("foo");
46         info!("bar");
47         info!("foo bar");
48         info!("bar foo");
49     });
50
51     assert_eq!(rx.recv().unwrap().as_slice(), "foo");
52     assert_eq!(rx.recv().unwrap().as_slice(), "foo bar");
53     assert_eq!(rx.recv().unwrap().as_slice(), "bar foo");
54     assert!(rx.recv().is_err());
55 }