]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/capturing-logging.rs
fallout: run-pass tests that use box. (many could be ported to `Box::new` instead...
[rust.git] / src / test / run-pass / capturing-logging.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 // ignore-android (FIXME #11419)
12 // exec-env:RUST_LOG=info
13
14 #![allow(unknown_features)]
15 #![feature(box_syntax)]
16
17 #[macro_use]
18 extern crate log;
19
20 use log::{set_logger, Logger, LogRecord};
21 use std::sync::mpsc::channel;
22 use std::fmt;
23 use std::io::{ChanReader, ChanWriter};
24 use std::thread::Thread;
25
26 struct MyWriter(ChanWriter);
27
28 impl Logger for MyWriter {
29     fn log(&mut self, record: &LogRecord) {
30         let MyWriter(ref mut inner) = *self;
31         write!(inner, "{}", record.args);
32     }
33 }
34
35 fn main() {
36     let (tx, rx) = channel();
37     let (mut r, w) = (ChanReader::new(rx), ChanWriter::new(tx));
38     let _t = Thread::spawn(move|| {
39         set_logger(box MyWriter(w) as Box<Logger+Send>);
40         debug!("debug");
41         info!("info");
42     });
43     let s = r.read_to_string().unwrap();
44     assert!(s.as_slice().contains("info"));
45     assert!(!s.as_slice().contains("debug"));
46 }