]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/ifmt.rs
8b0d7c18fb119b6359ee2210fe2747f293985ef3
[rust.git] / src / test / run-pass / ifmt.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 // no-pretty-expanded unnecessary unsafe block generated
12 // ignore-lexer-test FIXME #15679
13
14 #![deny(warnings)]
15 #![allow(unused_must_use)]
16
17 use std::fmt;
18
19 struct A;
20 struct B;
21 struct C;
22
23 impl fmt::LowerHex for A {
24     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
25         f.write_str("aloha")
26     }
27 }
28 impl fmt::UpperHex for B {
29     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
30         f.write_str("adios")
31     }
32 }
33 impl fmt::String for C {
34     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
35         f.pad_integral(true, "☃", "123")
36     }
37 }
38
39 macro_rules! t {
40     ($a:expr, $b:expr) => { assert_eq!($a.as_slice(), $b) }
41 }
42
43 pub fn main() {
44     // Various edge cases without formats
45     t!(format!(""), "");
46     t!(format!("hello"), "hello");
47     t!(format!("hello {{"), "hello {");
48
49     // default formatters should work
50     t!(format!("{}", 1.0f32), "1");
51     t!(format!("{}", 1.0f64), "1");
52     t!(format!("{}", "a"), "a");
53     t!(format!("{}", "a".to_string()), "a");
54     t!(format!("{}", false), "false");
55     t!(format!("{}", 'a'), "a");
56
57     // At least exercise all the formats
58     t!(format!("{}", true), "true");
59     t!(format!("{}", '☃'), "☃");
60     t!(format!("{}", 10i), "10");
61     t!(format!("{}", 10u), "10");
62     t!(format!("{:?}", '☃'), "'\\u{2603}'");
63     t!(format!("{:?}", 10i), "10i");
64     t!(format!("{:?}", 10u), "10u");
65     t!(format!("{:?}", "true"), "\"true\"");
66     t!(format!("{:?}", "foo\nbar"), "\"foo\\nbar\"");
67     t!(format!("{:o}", 10u), "12");
68     t!(format!("{:x}", 10u), "a");
69     t!(format!("{:X}", 10u), "A");
70     t!(format!("{}", "foo"), "foo");
71     t!(format!("{}", "foo".to_string()), "foo");
72     t!(format!("{:p}", 0x1234 as *const int), "0x1234");
73     t!(format!("{:p}", 0x1234 as *mut int), "0x1234");
74     t!(format!("{:x}", A), "aloha");
75     t!(format!("{:X}", B), "adios");
76     t!(format!("foo {} ☃☃☃☃☃☃", "bar"), "foo bar ☃☃☃☃☃☃");
77     t!(format!("{1} {0}", 0i, 1i), "1 0");
78     t!(format!("{foo} {bar}", foo=0i, bar=1i), "0 1");
79     t!(format!("{foo} {1} {bar} {0}", 0i, 1i, foo=2i, bar=3i), "2 1 3 0");
80     t!(format!("{} {0}", "a"), "a a");
81     t!(format!("{foo_bar}", foo_bar=1i), "1");
82     t!(format!("{}", 5i + 5i), "10");
83     t!(format!("{:#4}", C), "☃123");
84
85     // FIXME(#20676)
86     // let a: &fmt::Show = &1i;
87     // t!(format!("{:?}", a), "1i");
88
89
90     // Formatting strings and their arguments
91     t!(format!("{}", "a"), "a");
92     t!(format!("{:4}", "a"), "a   ");
93     t!(format!("{:4}", "☃"), "☃   ");
94     t!(format!("{:>4}", "a"), "   a");
95     t!(format!("{:<4}", "a"), "a   ");
96     t!(format!("{:^5}", "a"),  "  a  ");
97     t!(format!("{:^5}", "aa"), " aa  ");
98     t!(format!("{:^4}", "a"),  " a  ");
99     t!(format!("{:^4}", "aa"), " aa ");
100     t!(format!("{:.4}", "a"), "a");
101     t!(format!("{:4.4}", "a"), "a   ");
102     t!(format!("{:4.4}", "aaaaaaaaaaaaaaaaaa"), "aaaa");
103     t!(format!("{:<4.4}", "aaaaaaaaaaaaaaaaaa"), "aaaa");
104     t!(format!("{:>4.4}", "aaaaaaaaaaaaaaaaaa"), "aaaa");
105     t!(format!("{:^4.4}", "aaaaaaaaaaaaaaaaaa"), "aaaa");
106     t!(format!("{:>10.4}", "aaaaaaaaaaaaaaaaaa"), "aaaa");
107     t!(format!("{:2.4}", "aaaaa"), "aaaa");
108     t!(format!("{:2.4}", "aaaa"), "aaaa");
109     t!(format!("{:2.4}", "aaa"), "aaa");
110     t!(format!("{:2.4}", "aa"), "aa");
111     t!(format!("{:2.4}", "a"), "a ");
112     t!(format!("{:0>2}", "a"), "0a");
113     t!(format!("{:.*}", 4, "aaaaaaaaaaaaaaaaaa"), "aaaa");
114     t!(format!("{:.1$}", "aaaaaaaaaaaaaaaaaa", 4), "aaaa");
115     t!(format!("{:.a$}", "aaaaaaaaaaaaaaaaaa", a=4), "aaaa");
116     t!(format!("{:1$}", "a", 4), "a   ");
117     t!(format!("{1:0$}", 4, "a"), "a   ");
118     t!(format!("{:a$}", "a", a=4), "a   ");
119     t!(format!("{:-#}", "a"), "a");
120     t!(format!("{:+#}", "a"), "a");
121
122     // Some float stuff
123     t!(format!("{:}", 1.0f32), "1");
124     t!(format!("{:}", 1.0f64), "1");
125     t!(format!("{:.3}", 1.0f64), "1.000");
126     t!(format!("{:10.3}", 1.0f64),   "     1.000");
127     t!(format!("{:+10.3}", 1.0f64),  "    +1.000");
128     t!(format!("{:+10.3}", -1.0f64), "    -1.000");
129
130     t!(format!("{:e}", 1.2345e6f32), "1.2345e6");
131     t!(format!("{:e}", 1.2345e6f64), "1.2345e6");
132     t!(format!("{:E}", 1.2345e6f64), "1.2345E6");
133     t!(format!("{:.3e}", 1.2345e6f64), "1.234e6");
134     t!(format!("{:10.3e}", 1.2345e6f64),   "   1.234e6");
135     t!(format!("{:+10.3e}", 1.2345e6f64),  "  +1.234e6");
136     t!(format!("{:+10.3e}", -1.2345e6f64), "  -1.234e6");
137
138     // Escaping
139     t!(format!("{{"), "{");
140     t!(format!("}}"), "}");
141
142     test_write();
143     test_print();
144     test_order();
145
146     // make sure that format! doesn't move out of local variables
147     let a = box 3i;
148     format!("{}", a);
149     format!("{}", a);
150
151     // make sure that format! doesn't cause spurious unused-unsafe warnings when
152     // it's inside of an outer unsafe block
153     unsafe {
154         let a: int = ::std::mem::transmute(3u);
155         format!("{}", a);
156     }
157
158     test_format_args();
159
160     // test that trailing commas are acceptable
161     format!("{}", "test",);
162     format!("{foo}", foo="test",);
163 }
164
165 // Basic test to make sure that we can invoke the `write!` macro with an
166 // io::Writer instance.
167 fn test_write() {
168     use std::fmt::Writer;
169     let mut buf = String::new();
170     write!(&mut buf, "{}", 3i);
171     {
172         let w = &mut buf;
173         write!(w, "{foo}", foo=4i);
174         write!(w, "{}", "hello");
175         writeln!(w, "{}", "line");
176         writeln!(w, "{foo}", foo="bar");
177     }
178
179     t!(buf, "34helloline\nbar\n");
180 }
181
182 // Just make sure that the macros are defined, there's not really a lot that we
183 // can do with them just yet (to test the output)
184 fn test_print() {
185     print!("hi");
186     print!("{}", vec!(0u8));
187     println!("hello");
188     println!("this is a {}", "test");
189     println!("{foo}", foo="bar");
190 }
191
192 // Just make sure that the macros are defined, there's not really a lot that we
193 // can do with them just yet (to test the output)
194 fn test_format_args() {
195     use std::fmt::Writer;
196     let mut buf = String::new();
197     {
198         let w = &mut buf;
199         write!(w, "{}", format_args!("{}", 1i));
200         write!(w, "{}", format_args!("test"));
201         write!(w, "{}", format_args!("{test}", test=3i));
202     }
203     let s = buf;
204     t!(s, "1test3");
205
206     let s = fmt::format(format_args!("hello {}", "world"));
207     t!(s, "hello world");
208     let s = format!("{}: {}", "args were", format_args!("hello {}", "world"));
209     t!(s, "args were: hello world");
210 }
211
212 fn test_order() {
213     // Make sure format!() arguments are always evaluated in a left-to-right
214     // ordering
215     fn foo() -> int {
216         static mut FOO: int = 0;
217         unsafe {
218             FOO += 1;
219             FOO
220         }
221     }
222     assert_eq!(format!("{} {} {a} {b} {} {c}",
223                        foo(), foo(), foo(), a=foo(), b=foo(), c=foo()),
224                "1 2 4 5 3 6".to_string());
225 }