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