2015-03-08 03:36:36 +00:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-07 05:16:44 +00:00
|
|
|
mod debug_struct {
|
|
|
|
use std::fmt;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_struct("Foo").finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("Foo", format!("{:?}", Foo));
|
|
|
|
assert_eq!("Foo", format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_struct("Foo")
|
|
|
|
.field("bar", &true)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("Foo { bar: true }", format!("{:?}", Foo));
|
|
|
|
assert_eq!(
|
|
|
|
"Foo {
|
|
|
|
bar: true
|
|
|
|
}",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_struct("Foo")
|
|
|
|
.field("bar", &true)
|
|
|
|
.field("baz", &format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("Foo { bar: true, baz: 10/20 }", format!("{:?}", Foo));
|
|
|
|
assert_eq!(
|
|
|
|
"Foo {
|
|
|
|
bar: true,
|
|
|
|
baz: 10/20
|
|
|
|
}",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nested() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_struct("Foo")
|
|
|
|
.field("bar", &true)
|
|
|
|
.field("baz", &format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl fmt::Debug for Bar {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_struct("Bar")
|
|
|
|
.field("foo", &Foo)
|
|
|
|
.field("hello", &"world")
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("Bar { foo: Foo { bar: true, baz: 10/20 }, hello: \"world\" }",
|
|
|
|
format!("{:?}", Bar));
|
|
|
|
assert_eq!(
|
|
|
|
"Bar {
|
|
|
|
foo: Foo {
|
|
|
|
bar: true,
|
|
|
|
baz: 10/20
|
|
|
|
},
|
|
|
|
hello: \"world\"
|
|
|
|
}",
|
|
|
|
format!("{:#?}", Bar));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod debug_tuple {
|
|
|
|
use std::fmt;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_tuple("Foo").finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("Foo", format!("{:?}", Foo));
|
|
|
|
assert_eq!("Foo", format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_tuple("Foo")
|
|
|
|
.field(&true)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("Foo(true)", format!("{:?}", Foo));
|
|
|
|
assert_eq!(
|
|
|
|
"Foo(
|
|
|
|
true
|
|
|
|
)",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_tuple("Foo")
|
|
|
|
.field(&true)
|
|
|
|
.field(&format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("Foo(true, 10/20)", format!("{:?}", Foo));
|
|
|
|
assert_eq!(
|
|
|
|
"Foo(
|
|
|
|
true,
|
|
|
|
10/20
|
|
|
|
)",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nested() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_tuple("Foo")
|
|
|
|
.field(&true)
|
|
|
|
.field(&format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl fmt::Debug for Bar {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_tuple("Bar")
|
|
|
|
.field(&Foo)
|
|
|
|
.field(&"world")
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("Bar(Foo(true, 10/20), \"world\")",
|
|
|
|
format!("{:?}", Bar));
|
|
|
|
assert_eq!(
|
|
|
|
"Bar(
|
|
|
|
Foo(
|
|
|
|
true,
|
|
|
|
10/20
|
|
|
|
),
|
|
|
|
\"world\"
|
|
|
|
)",
|
|
|
|
format!("{:#?}", Bar));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod debug_map {
|
|
|
|
use std::fmt;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_map().finish()
|
2015-03-07 05:16:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 05:42:29 +00:00
|
|
|
assert_eq!("{}", format!("{:?}", Foo));
|
|
|
|
assert_eq!("{}", format!("{:#?}", Foo));
|
2015-03-07 05:16:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_map()
|
2015-03-07 05:16:44 +00:00
|
|
|
.entry(&"bar", &true)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 05:42:29 +00:00
|
|
|
assert_eq!("{\"bar\": true}", format!("{:?}", Foo));
|
2015-03-07 05:16:44 +00:00
|
|
|
assert_eq!(
|
2015-03-27 05:42:29 +00:00
|
|
|
"{
|
2015-03-07 05:16:44 +00:00
|
|
|
\"bar\": true
|
|
|
|
}",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_map()
|
2015-03-07 05:16:44 +00:00
|
|
|
.entry(&"bar", &true)
|
|
|
|
.entry(&10i32, &format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 05:42:29 +00:00
|
|
|
assert_eq!("{\"bar\": true, 10: 10/20}", format!("{:?}", Foo));
|
2015-03-07 05:16:44 +00:00
|
|
|
assert_eq!(
|
2015-03-27 05:42:29 +00:00
|
|
|
"{
|
2015-03-07 05:16:44 +00:00
|
|
|
\"bar\": true,
|
|
|
|
10: 10/20
|
|
|
|
}",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nested() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_map()
|
2015-03-07 05:16:44 +00:00
|
|
|
.entry(&"bar", &true)
|
|
|
|
.entry(&10i32, &format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl fmt::Debug for Bar {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_map()
|
2015-03-07 05:16:44 +00:00
|
|
|
.entry(&"foo", &Foo)
|
|
|
|
.entry(&Foo, &"world")
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 05:42:29 +00:00
|
|
|
assert_eq!("{\"foo\": {\"bar\": true, 10: 10/20}, \
|
|
|
|
{\"bar\": true, 10: 10/20}: \"world\"}",
|
2015-03-07 05:16:44 +00:00
|
|
|
format!("{:?}", Bar));
|
|
|
|
assert_eq!(
|
2015-03-27 05:42:29 +00:00
|
|
|
"{
|
|
|
|
\"foo\": {
|
2015-03-07 05:16:44 +00:00
|
|
|
\"bar\": true,
|
|
|
|
10: 10/20
|
|
|
|
},
|
2015-03-27 05:42:29 +00:00
|
|
|
{
|
2015-03-07 05:16:44 +00:00
|
|
|
\"bar\": true,
|
|
|
|
10: 10/20
|
|
|
|
}: \"world\"
|
|
|
|
}",
|
|
|
|
format!("{:#?}", Bar));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod debug_set {
|
|
|
|
use std::fmt;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_set().finish()
|
2015-03-07 05:16:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 05:42:29 +00:00
|
|
|
assert_eq!("{}", format!("{:?}", Foo));
|
|
|
|
assert_eq!("{}", format!("{:#?}", Foo));
|
2015-03-07 05:16:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_set()
|
2015-03-07 05:16:44 +00:00
|
|
|
.entry(&true)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 05:42:29 +00:00
|
|
|
assert_eq!("{true}", format!("{:?}", Foo));
|
2015-03-07 05:16:44 +00:00
|
|
|
assert_eq!(
|
2015-03-27 05:42:29 +00:00
|
|
|
"{
|
2015-03-07 05:16:44 +00:00
|
|
|
true
|
|
|
|
}",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_set()
|
2015-03-07 05:16:44 +00:00
|
|
|
.entry(&true)
|
|
|
|
.entry(&format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 05:42:29 +00:00
|
|
|
assert_eq!("{true, 10/20}", format!("{:?}", Foo));
|
2015-03-07 05:16:44 +00:00
|
|
|
assert_eq!(
|
2015-03-27 05:42:29 +00:00
|
|
|
"{
|
2015-03-07 05:16:44 +00:00
|
|
|
true,
|
|
|
|
10/20
|
|
|
|
}",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nested() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_set()
|
2015-03-07 05:16:44 +00:00
|
|
|
.entry(&true)
|
|
|
|
.entry(&format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl fmt::Debug for Bar {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-03-27 05:42:29 +00:00
|
|
|
fmt.debug_set()
|
2015-03-07 05:16:44 +00:00
|
|
|
.entry(&Foo)
|
|
|
|
.entry(&"world")
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 05:42:29 +00:00
|
|
|
assert_eq!("{{true, 10/20}, \"world\"}",
|
2015-03-07 05:16:44 +00:00
|
|
|
format!("{:?}", Bar));
|
|
|
|
assert_eq!(
|
2015-03-27 05:42:29 +00:00
|
|
|
"{
|
|
|
|
{
|
2015-03-07 05:16:44 +00:00
|
|
|
true,
|
|
|
|
10/20
|
|
|
|
},
|
|
|
|
\"world\"
|
|
|
|
}",
|
|
|
|
format!("{:#?}", Bar));
|
|
|
|
}
|
|
|
|
}
|
2015-03-27 05:42:29 +00:00
|
|
|
|
|
|
|
mod debug_list {
|
|
|
|
use std::fmt;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_list().finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("[]", format!("{:?}", Foo));
|
|
|
|
assert_eq!("[]", format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_list()
|
|
|
|
.entry(&true)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("[true]", format!("{:?}", Foo));
|
|
|
|
assert_eq!(
|
|
|
|
"[
|
|
|
|
true
|
|
|
|
]",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_list()
|
|
|
|
.entry(&true)
|
|
|
|
.entry(&format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("[true, 10/20]", format!("{:?}", Foo));
|
|
|
|
assert_eq!(
|
|
|
|
"[
|
|
|
|
true,
|
|
|
|
10/20
|
|
|
|
]",
|
|
|
|
format!("{:#?}", Foo));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nested() {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl fmt::Debug for Foo {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_list()
|
|
|
|
.entry(&true)
|
|
|
|
.entry(&format_args!("{}/{}", 10i32, 20i32))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl fmt::Debug for Bar {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_list()
|
|
|
|
.entry(&Foo)
|
|
|
|
.entry(&"world")
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!("[[true, 10/20], \"world\"]",
|
|
|
|
format!("{:?}", Bar));
|
|
|
|
assert_eq!(
|
|
|
|
"[
|
|
|
|
[
|
|
|
|
true,
|
|
|
|
10/20
|
|
|
|
],
|
|
|
|
\"world\"
|
|
|
|
]",
|
|
|
|
format!("{:#?}", Bar));
|
|
|
|
}
|
|
|
|
}
|