]> git.lizzy.rs Git - rust.git/blob - src/test/ui/ifmt.rs
Rollup merge of #76275 - FedericoPonzi:immutable-write-impl-73836, r=dtolnay
[rust.git] / src / test / ui / ifmt.rs
1 // run-pass
2
3 #![deny(warnings)]
4 #![allow(unused_must_use)]
5 #![allow(unused_features)]
6 #![feature(box_syntax)]
7
8 use std::cell::RefCell;
9 use std::fmt::{self, Write};
10 use std::usize;
11
12 struct A;
13 struct B;
14 struct C;
15 struct D;
16
17 impl fmt::LowerHex for A {
18     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
19         f.write_str("aloha")
20     }
21 }
22 impl fmt::UpperHex for B {
23     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
24         f.write_str("adios")
25     }
26 }
27 impl fmt::Display for C {
28     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
29         f.pad_integral(true, "☃", "123")
30     }
31 }
32 impl fmt::Binary for D {
33     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
34         f.write_str("aa")?;
35         f.write_char('☃')?;
36         f.write_str("bb")
37     }
38 }
39
40 macro_rules! t {
41     ($a:expr, $b:expr) => { assert_eq!($a, $b) }
42 }
43
44 pub fn main() {
45     // Various edge cases without formats
46     t!(format!(""), "");
47     t!(format!("hello"), "hello");
48     t!(format!("hello {{"), "hello {");
49
50     // default formatters should work
51     t!(format!("{}", 1.0f32), "1");
52     t!(format!("{}", 1.0f64), "1");
53     t!(format!("{}", "a"), "a");
54     t!(format!("{}", "a".to_string()), "a");
55     t!(format!("{}", false), "false");
56     t!(format!("{}", 'a'), "a");
57
58     // At least exercise all the formats
59     t!(format!("{}", true), "true");
60     t!(format!("{}", '☃'), "☃");
61     t!(format!("{}", 10), "10");
62     t!(format!("{}", 10_usize), "10");
63     t!(format!("{:?}", '☃'), "'☃'");
64     t!(format!("{:?}", 10), "10");
65     t!(format!("{:?}", 10_usize), "10");
66     t!(format!("{:?}", "true"), "\"true\"");
67     t!(format!("{:?}", "foo\nbar"), "\"foo\\nbar\"");
68     t!(format!("{:?}", "foo\n\"bar\"\r\n\'baz\'\t\\qux\\"),
69        r#""foo\n\"bar\"\r\n\'baz\'\t\\qux\\""#);
70     t!(format!("{:?}", "foo\0bar\x01baz\u{7f}q\u{75}x"),
71        r#""foo\u{0}bar\u{1}baz\u{7f}qux""#);
72     t!(format!("{:o}", 10_usize), "12");
73     t!(format!("{:x}", 10_usize), "a");
74     t!(format!("{:X}", 10_usize), "A");
75     t!(format!("{}", "foo"), "foo");
76     t!(format!("{}", "foo".to_string()), "foo");
77     if cfg!(target_pointer_width = "32") {
78         t!(format!("{:#p}", 0x1234 as *const isize), "0x00001234");
79         t!(format!("{:#p}", 0x1234 as *mut isize), "0x00001234");
80     } else {
81         t!(format!("{:#p}", 0x1234 as *const isize), "0x0000000000001234");
82         t!(format!("{:#p}", 0x1234 as *mut isize), "0x0000000000001234");
83     }
84     t!(format!("{:p}", 0x1234 as *const isize), "0x1234");
85     t!(format!("{:p}", 0x1234 as *mut isize), "0x1234");
86     t!(format!("{:x}", A), "aloha");
87     t!(format!("{:X}", B), "adios");
88     t!(format!("foo {} ☃☃☃☃☃☃", "bar"), "foo bar ☃☃☃☃☃☃");
89     t!(format!("{1} {0}", 0, 1), "1 0");
90     t!(format!("{foo} {bar}", foo=0, bar=1), "0 1");
91     t!(format!("{foo} {1} {bar} {0}", 0, 1, foo=2, bar=3), "2 1 3 0");
92     t!(format!("{} {0}", "a"), "a a");
93     t!(format!("{_foo}", _foo = 6usize), "6");
94     t!(format!("{foo_bar}", foo_bar=1), "1");
95     t!(format!("{}", 5 + 5), "10");
96     t!(format!("{:#4}", C), "☃123");
97     t!(format!("{:b}", D), "aa☃bb");
98
99     let a: &dyn fmt::Debug = &1;
100     t!(format!("{:?}", a), "1");
101
102     // Formatting strings and their arguments
103     t!(format!("{}", "a"), "a");
104     t!(format!("{:4}", "a"), "a   ");
105     t!(format!("{:4}", "☃"), "☃   ");
106     t!(format!("{:>4}", "a"), "   a");
107     t!(format!("{:<4}", "a"), "a   ");
108     t!(format!("{:^5}", "a"),  "  a  ");
109     t!(format!("{:^5}", "aa"), " aa  ");
110     t!(format!("{:^4}", "a"),  " a  ");
111     t!(format!("{:^4}", "aa"), " aa ");
112     t!(format!("{:.4}", "a"), "a");
113     t!(format!("{:4.4}", "a"), "a   ");
114     t!(format!("{:4.4}", "aaaaaaaaaaaaaaaaaa"), "aaaa");
115     t!(format!("{:<4.4}", "aaaaaaaaaaaaaaaaaa"), "aaaa");
116     t!(format!("{:>4.4}", "aaaaaaaaaaaaaaaaaa"), "aaaa");
117     t!(format!("{:^4.4}", "aaaaaaaaaaaaaaaaaa"), "aaaa");
118     t!(format!("{:>10.4}", "aaaaaaaaaaaaaaaaaa"), "      aaaa");
119     t!(format!("{:2.4}", "aaaaa"), "aaaa");
120     t!(format!("{:2.4}", "aaaa"), "aaaa");
121     t!(format!("{:2.4}", "aaa"), "aaa");
122     t!(format!("{:2.4}", "aa"), "aa");
123     t!(format!("{:2.4}", "a"), "a ");
124     t!(format!("{:0>2}", "a"), "0a");
125     t!(format!("{:.*}", 4, "aaaaaaaaaaaaaaaaaa"), "aaaa");
126     t!(format!("{:.1$}", "aaaaaaaaaaaaaaaaaa", 4), "aaaa");
127     t!(format!("{:.a$}", "aaaaaaaaaaaaaaaaaa", a=4), "aaaa");
128     t!(format!("{:._a$}", "aaaaaaaaaaaaaaaaaa", _a=4), "aaaa");
129     t!(format!("{:1$}", "a", 4), "a   ");
130     t!(format!("{1:0$}", 4, "a"), "a   ");
131     t!(format!("{:a$}", "a", a=4), "a   ");
132     t!(format!("{:-#}", "a"), "a");
133     t!(format!("{:+#}", "a"), "a");
134     t!(format!("{:/^10.8}", "1234567890"), "/12345678/");
135
136     // Some float stuff
137     t!(format!("{:}", 1.0f32), "1");
138     t!(format!("{:}", 1.0f64), "1");
139     t!(format!("{:.3}", 1.0f64), "1.000");
140     t!(format!("{:10.3}", 1.0f64),   "     1.000");
141     t!(format!("{:+10.3}", 1.0f64),  "    +1.000");
142     t!(format!("{:+10.3}", -1.0f64), "    -1.000");
143
144     t!(format!("{:e}", 1.2345e6f32), "1.2345e6");
145     t!(format!("{:e}", 1.2345e6f64), "1.2345e6");
146     t!(format!("{:E}", 1.2345e6f64), "1.2345E6");
147     t!(format!("{:.3e}", 1.2345e6f64), "1.234e6");
148     t!(format!("{:10.3e}", 1.2345e6f64),   "   1.234e6");
149     t!(format!("{:+10.3e}", 1.2345e6f64),  "  +1.234e6");
150     t!(format!("{:+10.3e}", -1.2345e6f64), "  -1.234e6");
151
152     // Float edge cases
153     t!(format!("{}", -0.0), "0");
154     t!(format!("{:?}", -0.0), "-0.0");
155     t!(format!("{:?}", 0.0), "0.0");
156
157     // sign aware zero padding
158     t!(format!("{:<3}", 1), "1  ");
159     t!(format!("{:>3}", 1), "  1");
160     t!(format!("{:^3}", 1), " 1 ");
161     t!(format!("{:03}", 1), "001");
162     t!(format!("{:<03}", 1), "001");
163     t!(format!("{:>03}", 1), "001");
164     t!(format!("{:^03}", 1), "001");
165     t!(format!("{:+03}", 1), "+01");
166     t!(format!("{:<+03}", 1), "+01");
167     t!(format!("{:>+03}", 1), "+01");
168     t!(format!("{:^+03}", 1), "+01");
169     t!(format!("{:#05x}", 1), "0x001");
170     t!(format!("{:<#05x}", 1), "0x001");
171     t!(format!("{:>#05x}", 1), "0x001");
172     t!(format!("{:^#05x}", 1), "0x001");
173     t!(format!("{:05}", 1.2), "001.2");
174     t!(format!("{:<05}", 1.2), "001.2");
175     t!(format!("{:>05}", 1.2), "001.2");
176     t!(format!("{:^05}", 1.2), "001.2");
177     t!(format!("{:05}", -1.2), "-01.2");
178     t!(format!("{:<05}", -1.2), "-01.2");
179     t!(format!("{:>05}", -1.2), "-01.2");
180     t!(format!("{:^05}", -1.2), "-01.2");
181     t!(format!("{:+05}", 1.2), "+01.2");
182     t!(format!("{:<+05}", 1.2), "+01.2");
183     t!(format!("{:>+05}", 1.2), "+01.2");
184     t!(format!("{:^+05}", 1.2), "+01.2");
185
186     // Ergonomic format_args!
187     t!(format!("{0:x} {0:X}", 15), "f F");
188     t!(format!("{0:x} {0:X} {}", 15), "f F 15");
189     t!(format!("{:x}{0:X}{a:x}{:X}{1:x}{a:X}", 13, 14, a=15), "dDfEeF");
190     t!(format!("{a:x} {a:X}", a=15), "f F");
191
192     // And its edge cases
193     t!(format!("{a:.0$} {b:.0$} {0:.0$}\n{a:.c$} {b:.c$} {c:.c$}",
194                4, a="abcdefg", b="hijklmn", c=3),
195                "abcd hijk 4\nabc hij 3");
196     t!(format!("{a:.*} {0} {:.*}", 4, 3, "efgh", a="abcdef"), "abcd 4 efg");
197     t!(format!("{:.a$} {a} {a:#x}", "aaaaaa", a=2), "aa 2 0x2");
198
199     // Test that pointers don't get truncated.
200     {
201         let val = usize::MAX;
202         let exp = format!("{:#x}", val);
203         t!(format!("{:p}", val as *const isize), exp);
204     }
205
206     // Escaping
207     t!(format!("{{"), "{");
208     t!(format!("}}"), "}");
209
210     test_write();
211     test_print();
212     test_order();
213     test_once();
214
215     // make sure that format! doesn't move out of local variables
216     let a: Box<_> = box 3;
217     format!("{}", a);
218     format!("{}", a);
219
220     // make sure that format! doesn't cause spurious unused-unsafe warnings when
221     // it's inside of an outer unsafe block
222     unsafe {
223         let a: isize = ::std::mem::transmute(3_usize);
224         format!("{}", a);
225     }
226
227     test_format_args();
228
229     // test that trailing commas are acceptable
230     format!("{}", "test",);
231     format!("{foo}", foo="test",);
232
233     test_refcell();
234 }
235
236 // Basic test to make sure that we can invoke the `write!` macro with an
237 // fmt::Write instance.
238 fn test_write() {
239     let mut buf = String::new();
240     write!(&mut buf, "{}", 3);
241     {
242         let w = &mut buf;
243         write!(w, "{foo}", foo=4);
244         write!(w, "{}", "hello");
245         writeln!(w, "{}", "line");
246         writeln!(w, "{foo}", foo="bar");
247         w.write_char('☃');
248         w.write_str("str");
249     }
250
251     t!(buf, "34helloline\nbar\n☃str");
252 }
253
254 // Just make sure that the macros are defined, there's not really a lot that we
255 // can do with them just yet (to test the output)
256 fn test_print() {
257     print!("hi");
258     print!("{:?}", vec![0u8]);
259     println!("hello");
260     println!("this is a {}", "test");
261     println!("{foo}", foo="bar");
262 }
263
264 // Just make sure that the macros are defined, there's not really a lot that we
265 // can do with them just yet (to test the output)
266 fn test_format_args() {
267     let mut buf = String::new();
268     {
269         let w = &mut buf;
270         write!(w, "{}", format_args!("{}", 1));
271         write!(w, "{}", format_args!("test"));
272         write!(w, "{}", format_args!("{test}", test=3));
273     }
274     let s = buf;
275     t!(s, "1test3");
276
277     let s = fmt::format(format_args!("hello {}", "world"));
278     t!(s, "hello world");
279     let s = format!("{}: {}", "args were", format_args!("hello {}", "world"));
280     t!(s, "args were: hello world");
281 }
282
283 fn test_order() {
284     // Make sure format!() arguments are always evaluated in a left-to-right
285     // ordering
286     fn foo() -> isize {
287         static mut FOO: isize = 0;
288         unsafe {
289             FOO += 1;
290             FOO
291         }
292     }
293     assert_eq!(format!("{} {} {a} {b} {} {c}",
294                        foo(), foo(), foo(), a=foo(), b=foo(), c=foo()),
295                "1 2 4 5 3 6".to_string());
296 }
297
298 fn test_once() {
299     // Make sure each argument are evaluated only once even though it may be
300     // formatted multiple times
301     fn foo() -> isize {
302         static mut FOO: isize = 0;
303         unsafe {
304             FOO += 1;
305             FOO
306         }
307     }
308     assert_eq!(format!("{0} {0} {0} {a} {a} {a}", foo(), a=foo()),
309                "1 1 1 2 2 2".to_string());
310 }
311
312 fn test_refcell() {
313     let refcell = RefCell::new(5);
314     assert_eq!(format!("{:?}", refcell), "RefCell { value: 5 }");
315     let borrow = refcell.borrow_mut();
316     assert_eq!(format!("{:?}", refcell), "RefCell { value: <borrowed> }");
317     drop(borrow);
318     assert_eq!(format!("{:?}", refcell), "RefCell { value: 5 }");
319 }