| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  printf tests. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  Copyright (c) 2012-2014, Victor Zverovich | 
					
						
							|  |  |  |  All rights reserved. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  modification, are permitted provided that the following conditions are met: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  1. Redistributions of source code must retain the above copyright notice, this | 
					
						
							|  |  |  |     list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  2. Redistributions in binary form must reproduce the above copyright notice, | 
					
						
							|  |  |  |     this list of conditions and the following disclaimer in the documentation | 
					
						
							|  |  |  |     and/or other materials provided with the distribution. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | 
					
						
							|  |  |  |  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
					
						
							|  |  |  |  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | 
					
						
							|  |  |  |  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
					
						
							|  |  |  |  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
					
						
							|  |  |  |  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 
					
						
							|  |  |  |  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
					
						
							|  |  |  |  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
					
						
							|  |  |  |  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-21 07:29:23 -07:00
										 |  |  | #include <cctype>
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | #include <climits>
 | 
					
						
							|  |  |  | #include <cstring>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "format.h"
 | 
					
						
							|  |  |  | #include "gtest-extra.h"
 | 
					
						
							|  |  |  | #include "util.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  | using fmt::format; | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | using fmt::FormatError; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const unsigned BIG_NUM = INT_MAX + 1u; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 08:01:25 -07:00
										 |  |  | // Makes format string argument positional.
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | std::string make_positional(fmt::StringRef format) { | 
					
						
							| 
									
										
										
										
											2015-06-17 07:59:41 -07:00
										 |  |  |   std::string s(format.to_string()); | 
					
						
							| 
									
										
										
										
											2014-06-06 08:01:25 -07:00
										 |  |  |   s.replace(s.find('%'), 1, "%1$"); | 
					
						
							|  |  |  |   return s; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define EXPECT_PRINTF(expected_output, format, arg) \
 | 
					
						
							| 
									
										
										
										
											2014-07-30 10:59:23 -07:00
										 |  |  |   EXPECT_EQ(expected_output, fmt::sprintf(format, arg)) \ | 
					
						
							| 
									
										
										
										
											2014-07-31 06:47:24 -07:00
										 |  |  |     << "format: " << format; \ | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   EXPECT_EQ(expected_output, fmt::sprintf(make_positional(format), arg)) | 
					
						
							| 
									
										
										
										
											2014-06-06 08:01:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | TEST(PrintfTest, NoArgs) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("test", fmt::sprintf("test")); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, Escape) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("%", fmt::sprintf("%%")); | 
					
						
							|  |  |  |   EXPECT_EQ("before %", fmt::sprintf("before %%")); | 
					
						
							|  |  |  |   EXPECT_EQ("% after", fmt::sprintf("%% after")); | 
					
						
							|  |  |  |   EXPECT_EQ("before % after", fmt::sprintf("before %% after")); | 
					
						
							|  |  |  |   EXPECT_EQ("%s", fmt::sprintf("%%s")); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, PositionalArgs) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::sprintf("%1$d", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42", fmt::sprintf("before %1$d", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42 after", fmt::sprintf("%1$d after",42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42 after", fmt::sprintf("before %1$d after", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("answer = 42", fmt::sprintf("%1$s = %2$d", "answer", 42)); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_EQ("42 is the answer", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       fmt::sprintf("%2$d is the %1$s", "answer", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("abracadabra", fmt::sprintf("%1$s%2$s%1$s", "abra", "cad")); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, AutomaticArgIndexing) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("abc", fmt::sprintf("%c%c%c", 'a', 'b', 'c')); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, NumberIsTooBigInArgIndex) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%{}$", BIG_NUM)), | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       FormatError, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%{}$d", BIG_NUM)), | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       FormatError, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, SwitchArgIndexing) { | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%1$d%", 1, 2), | 
					
						
							|  |  |  |       FormatError, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%1$d%{}d", BIG_NUM), 1, 2), | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       FormatError, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%1$d%d", 1, 2), | 
					
						
							|  |  |  |       FormatError, "cannot switch from manual to automatic argument indexing"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%d%1$", 1, 2), | 
					
						
							|  |  |  |       FormatError, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%d%{}$d", BIG_NUM), 1, 2), | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       FormatError, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%d%1$d", 1, 2), | 
					
						
							|  |  |  |       FormatError, "cannot switch from automatic to manual argument indexing"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Indexing errors override width errors.
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%d%1${}d", BIG_NUM), 1, 2), | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       FormatError, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%1$d%{}d", BIG_NUM), 1, 2), | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       FormatError, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, InvalidArgIndex) { | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%0$d", 42), FormatError, | 
					
						
							| 
									
										
										
										
											2014-08-29 07:45:55 -07:00
										 |  |  |       "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%2$d", 42), FormatError, | 
					
						
							| 
									
										
										
										
											2014-08-29 07:45:55 -07:00
										 |  |  |       "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%{}$d", INT_MAX), 42), | 
					
						
							| 
									
										
										
										
											2014-08-29 07:45:55 -07:00
										 |  |  |       FormatError, "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%2$", 42), | 
					
						
							|  |  |  |       FormatError, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%{}$d", BIG_NUM), 42), | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       FormatError, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  | TEST(PrintfTest, DefaultAlignRight) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("   42", "%5d", 42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("  abc", "%5s", "abc"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 07:07:57 -07:00
										 |  |  | TEST(PrintfTest, ZeroFlag) { | 
					
						
							| 
									
										
										
										
											2014-06-06 08:01:25 -07:00
										 |  |  |   EXPECT_PRINTF("00042", "%05d", 42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("-0042", "%05d", -42); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_PRINTF("00042", "%05d", 42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("-0042", "%05d", -42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("-004.2", "%06g", -4.2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_PRINTF("+00042", "%00+6d", 42); | 
					
						
							| 
									
										
										
										
											2014-06-06 07:07:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  |   // '0' flag is ignored for non-numeric types.
 | 
					
						
							|  |  |  |   EXPECT_PRINTF("    x", "%05c", 'x'); | 
					
						
							| 
									
										
										
										
											2014-06-06 07:07:57 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  | TEST(PrintfTest, PlusFlag) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("+42", "%+d", 42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("-42", "%+d", -42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("+0042", "%+05d", 42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("+0042", "%0++5d", 42); | 
					
						
							| 
									
										
										
										
											2014-06-10 06:21:41 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // '+' flag is ignored for non-numeric types.
 | 
					
						
							|  |  |  |   EXPECT_PRINTF("x", "%+c", 'x'); | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  | TEST(PrintfTest, MinusFlag) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("abc  ", "%-5s", "abc"); | 
					
						
							|  |  |  |   EXPECT_PRINTF("abc  ", "%0--5s", "abc"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  | TEST(PrintfTest, SpaceFlag) { | 
					
						
							|  |  |  |   EXPECT_PRINTF(" 42", "% d", 42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("-42", "% d", -42); | 
					
						
							|  |  |  |   EXPECT_PRINTF(" 0042", "% 05d", 42); | 
					
						
							|  |  |  |   EXPECT_PRINTF(" 0042", "%0  5d", 42); | 
					
						
							| 
									
										
										
										
											2014-06-10 06:21:41 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // ' ' flag is ignored for non-numeric types.
 | 
					
						
							|  |  |  |   EXPECT_PRINTF("x", "% c", 'x'); | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, HashFlag) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("042", "%#o", 042); | 
					
						
							| 
									
										
										
										
											2014-08-19 08:49:10 -07:00
										 |  |  |   EXPECT_PRINTF(fmt::format("0{:o}", static_cast<unsigned>(-042)), "%#o", -042); | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  |   EXPECT_PRINTF("0", "%#o", 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_PRINTF("0x42", "%#x", 0x42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("0X42", "%#X", 0x42); | 
					
						
							| 
									
										
										
										
											2014-08-19 08:49:10 -07:00
										 |  |  |   EXPECT_PRINTF( | 
					
						
							|  |  |  |         fmt::format("0x{:x}", static_cast<unsigned>(-0x42)), "%#x", -0x42); | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  |   EXPECT_PRINTF("0", "%#x", 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-10 06:21:41 -07:00
										 |  |  |   EXPECT_PRINTF("0x0042", "%#06x", 0x42); | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  |   EXPECT_PRINTF("0x0042", "%0##6x", 0x42); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-10 06:21:41 -07:00
										 |  |  |   EXPECT_PRINTF("-42.000000", "%#f", -42.0); | 
					
						
							|  |  |  |   EXPECT_PRINTF("-42.000000", "%#F", -42.0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%#e", -42.0); | 
					
						
							| 
									
										
										
										
											2014-06-10 06:21:41 -07:00
										 |  |  |   EXPECT_PRINTF(buffer, "%#e", -42.0); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%#E", -42.0); | 
					
						
							| 
									
										
										
										
											2014-06-10 06:21:41 -07:00
										 |  |  |   EXPECT_PRINTF(buffer, "%#E", -42.0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  |   EXPECT_PRINTF("-42.0000", "%#g", -42.0); | 
					
						
							| 
									
										
										
										
											2014-06-10 06:21:41 -07:00
										 |  |  |   EXPECT_PRINTF("-42.0000", "%#G", -42.0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%#a", 16.0); | 
					
						
							| 
									
										
										
										
											2014-06-10 07:36:23 -07:00
										 |  |  |   EXPECT_PRINTF(buffer, "%#a", 16.0); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%#A", 16.0); | 
					
						
							| 
									
										
										
										
											2014-06-10 07:36:23 -07:00
										 |  |  |   EXPECT_PRINTF(buffer, "%#A", 16.0); | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-10 06:21:41 -07:00
										 |  |  |   // '#' flag is ignored for non-numeric types.
 | 
					
						
							|  |  |  |   EXPECT_PRINTF("x", "%#c", 'x'); | 
					
						
							| 
									
										
										
										
											2014-06-09 07:40:51 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-20 07:34:02 -07:00
										 |  |  | TEST(PrintfTest, Width) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("  abc", "%5s", "abc"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Width cannot be specified twice.
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%5-5d", 42), FormatError, | 
					
						
							|  |  |  |       "unknown format code '-' for integer"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%{}d", BIG_NUM), 42), | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       FormatError, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf(format("%1${}d", BIG_NUM), 42), | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       FormatError, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-20 07:34:02 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, DynamicWidth) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("   42", fmt::sprintf("%*d", 5, 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", fmt::sprintf("%*d", -5, 42)); | 
					
						
							| 
									
										
										
										
											2014-06-20 07:34:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%*d", 5.0, 42), FormatError, | 
					
						
							|  |  |  |       "width is not integer"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%*d"), FormatError, | 
					
						
							| 
									
										
										
										
											2014-08-29 07:45:55 -07:00
										 |  |  |       "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%*d", BIG_NUM, 42), FormatError, | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-20 07:34:02 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 07:07:10 -07:00
										 |  |  | TEST(PrintfTest, IntPrecision) { | 
					
						
							| 
									
										
										
										
											2014-06-20 07:34:02 -07:00
										 |  |  |   EXPECT_PRINTF("00042", "%.5d", 42); | 
					
						
							| 
									
										
										
										
											2014-06-20 08:04:44 -07:00
										 |  |  |   EXPECT_PRINTF("-00042", "%.5d", -42); | 
					
						
							| 
									
										
										
										
											2014-06-20 07:59:23 -07:00
										 |  |  |   EXPECT_PRINTF("00042", "%.5x", 0x42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("0x00042", "%#.5x", 0x42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("00042", "%.5o", 042); | 
					
						
							|  |  |  |   EXPECT_PRINTF("00042", "%#.5o", 042); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_PRINTF("  00042", "%7.5d", 42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("  00042", "%7.5x", 0x42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("   0x00042", "%#10.5x", 0x42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("  00042", "%7.5o", 042); | 
					
						
							|  |  |  |   EXPECT_PRINTF("     00042", "%#10.5o", 042); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-21 08:18:05 -07:00
										 |  |  |   EXPECT_PRINTF("00042  ", "%-7.5d", 42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("00042  ", "%-7.5x", 0x42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("0x00042   ", "%-#10.5x", 0x42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("00042  ", "%-7.5o", 042); | 
					
						
							|  |  |  |   EXPECT_PRINTF("00042     ", "%-#10.5o", 042); | 
					
						
							| 
									
										
										
										
											2014-06-20 07:34:02 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 07:07:10 -07:00
										 |  |  | TEST(PrintfTest, FloatPrecision) { | 
					
						
							|  |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%.3e", 1234.5678); | 
					
						
							| 
									
										
										
										
											2014-06-23 07:07:10 -07:00
										 |  |  |   EXPECT_PRINTF(buffer, "%.3e", 1234.5678); | 
					
						
							|  |  |  |   EXPECT_PRINTF("1234.568", "%.3f", 1234.5678); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%.3g", 1234.5678); | 
					
						
							| 
									
										
										
										
											2014-06-23 07:07:10 -07:00
										 |  |  |   EXPECT_PRINTF(buffer, "%.3g", 1234.5678); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%.3a", 1234.5678); | 
					
						
							| 
									
										
										
										
											2014-06-23 07:07:10 -07:00
										 |  |  |   EXPECT_PRINTF(buffer, "%.3a", 1234.5678); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, IgnorePrecisionForNonNumericArg) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("abc", "%.5s", "abc"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 07:16:46 -07:00
										 |  |  | TEST(PrintfTest, DynamicPrecision) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("00042", fmt::sprintf("%.*d", 5, 42)); | 
					
						
							| 
									
										
										
										
											2014-07-30 06:51:35 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::sprintf("%.*d", -5, 42)); | 
					
						
							| 
									
										
										
										
											2014-06-23 07:17:58 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%.*d", 5.0, 42), FormatError, | 
					
						
							|  |  |  |       "precision is not integer"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%.*d"), FormatError, | 
					
						
							| 
									
										
										
										
											2014-08-29 07:45:55 -07:00
										 |  |  |       "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2014-07-30 06:51:35 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::sprintf("%.*d", BIG_NUM, 42), FormatError, | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |       "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-30 06:51:35 -07:00
										 |  |  |   if (sizeof(fmt::LongLong) != sizeof(int)) { | 
					
						
							|  |  |  |     fmt::LongLong prec = static_cast<fmt::LongLong>(INT_MIN) - 1; | 
					
						
							|  |  |  |     EXPECT_THROW_MSG(fmt::sprintf("%.*d", prec, 42), FormatError, | 
					
						
							| 
									
										
										
										
											2014-08-28 06:50:52 -07:00
										 |  |  |         "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-30 06:51:35 -07:00
										 |  |  |  } | 
					
						
							| 
									
										
										
										
											2014-06-23 07:16:46 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-06 08:21:12 -07:00
										 |  |  | template <typename T> | 
					
						
							|  |  |  | struct MakeSigned { typedef T Type; }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SPECIALIZE_MAKE_SIGNED(T, S) \
 | 
					
						
							|  |  |  |   template <> \ | 
					
						
							|  |  |  |   struct MakeSigned<T> { typedef S Type; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SPECIALIZE_MAKE_SIGNED(char, signed char); | 
					
						
							|  |  |  | SPECIALIZE_MAKE_SIGNED(unsigned char, signed char); | 
					
						
							|  |  |  | SPECIALIZE_MAKE_SIGNED(unsigned short, short); | 
					
						
							|  |  |  | SPECIALIZE_MAKE_SIGNED(unsigned, int); | 
					
						
							|  |  |  | SPECIALIZE_MAKE_SIGNED(unsigned long, long); | 
					
						
							|  |  |  | SPECIALIZE_MAKE_SIGNED(fmt::ULongLong, fmt::LongLong); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-05 07:52:59 -07:00
										 |  |  | template <typename T, typename U> | 
					
						
							| 
									
										
										
										
											2014-08-11 08:34:17 -07:00
										 |  |  | void TestLength(const char *length_spec, U value) { | 
					
						
							| 
									
										
										
										
											2014-08-12 08:15:39 -07:00
										 |  |  |   fmt::LongLong signed_value = value; | 
					
						
							|  |  |  |   fmt::ULongLong unsigned_value = value; | 
					
						
							|  |  |  |   // Apply integer promotion to the argument.
 | 
					
						
							| 
									
										
										
										
											2014-08-19 07:29:30 -07:00
										 |  |  |   fmt::ULongLong max = std::numeric_limits<U>::max(); | 
					
						
							|  |  |  |   if (max <= static_cast<unsigned>(std::numeric_limits<int>::max())) { | 
					
						
							| 
									
										
										
										
											2014-08-12 08:15:39 -07:00
										 |  |  |     signed_value = static_cast<int>(value); | 
					
						
							|  |  |  |     unsigned_value = static_cast<int>(value); | 
					
						
							| 
									
										
										
										
											2014-08-19 07:29:30 -07:00
										 |  |  |   } else if (max <= std::numeric_limits<unsigned>::max()) { | 
					
						
							| 
									
										
										
										
											2014-08-12 08:15:39 -07:00
										 |  |  |     signed_value = static_cast<unsigned>(value); | 
					
						
							|  |  |  |     unsigned_value = static_cast<unsigned>(value); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   using fmt::internal::MakeUnsigned; | 
					
						
							|  |  |  |   if (sizeof(U) <= sizeof(int) && sizeof(int) < sizeof(T)) { | 
					
						
							|  |  |  |     signed_value = unsigned_value = | 
					
						
							|  |  |  |         static_cast<typename MakeUnsigned<unsigned>::Type>(value); | 
					
						
							|  |  |  |   } else { | 
					
						
							|  |  |  |     signed_value = static_cast<typename MakeSigned<T>::Type>(value); | 
					
						
							|  |  |  |     unsigned_value = static_cast<typename MakeUnsigned<T>::Type>(value); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-08-11 08:34:17 -07:00
										 |  |  |   std::ostringstream os; | 
					
						
							| 
									
										
										
										
											2014-08-12 08:15:39 -07:00
										 |  |  |   os << signed_value; | 
					
						
							| 
									
										
										
										
											2014-08-11 08:34:17 -07:00
										 |  |  |   EXPECT_PRINTF(os.str(), fmt::format("%{}d", length_spec), value); | 
					
						
							|  |  |  |   EXPECT_PRINTF(os.str(), fmt::format("%{}i", length_spec), value); | 
					
						
							|  |  |  |   os.str(""); | 
					
						
							|  |  |  |   os << unsigned_value; | 
					
						
							|  |  |  |   EXPECT_PRINTF(os.str(), fmt::format("%{}u", length_spec), value); | 
					
						
							|  |  |  |   os.str(""); | 
					
						
							|  |  |  |   os << std::oct << unsigned_value; | 
					
						
							|  |  |  |   EXPECT_PRINTF(os.str(), fmt::format("%{}o", length_spec), value); | 
					
						
							|  |  |  |   os.str(""); | 
					
						
							|  |  |  |   os << std::hex << unsigned_value; | 
					
						
							|  |  |  |   EXPECT_PRINTF(os.str(), fmt::format("%{}x", length_spec), value); | 
					
						
							|  |  |  |   os.str(""); | 
					
						
							|  |  |  |   os << std::hex << std::uppercase << unsigned_value; | 
					
						
							|  |  |  |   EXPECT_PRINTF(os.str(), fmt::format("%{}X", length_spec), value); | 
					
						
							| 
									
										
										
										
											2014-07-30 08:08:08 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename T> | 
					
						
							|  |  |  | void TestLength(const char *length_spec) { | 
					
						
							|  |  |  |   T min = std::numeric_limits<T>::min(), max = std::numeric_limits<T>::max(); | 
					
						
							| 
									
										
										
										
											2014-08-11 08:34:17 -07:00
										 |  |  |   TestLength<T>(length_spec, 42); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, -42); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, min); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, max); | 
					
						
							| 
									
										
										
										
											2014-08-18 07:03:12 -07:00
										 |  |  |   if (min >= 0 || static_cast<fmt::LongLong>(min) > | 
					
						
							|  |  |  |       std::numeric_limits<fmt::LongLong>::min()) { | 
					
						
							| 
									
										
										
										
											2014-08-13 06:42:15 -07:00
										 |  |  |     TestLength<T>(length_spec, fmt::LongLong(min) - 1); | 
					
						
							| 
									
										
										
										
											2014-08-18 07:03:12 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-08-19 07:14:25 -07:00
										 |  |  |   fmt::ULongLong long_long_max = std::numeric_limits<fmt::LongLong>::max(); | 
					
						
							|  |  |  |   if (max < 0 || static_cast<fmt::ULongLong>(max) < long_long_max) | 
					
						
							| 
									
										
										
										
											2014-08-13 06:42:15 -07:00
										 |  |  |     TestLength<T>(length_spec, fmt::LongLong(max) + 1); | 
					
						
							| 
									
										
										
										
											2014-08-11 08:34:17 -07:00
										 |  |  |   TestLength<T>(length_spec, std::numeric_limits<short>::min()); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, std::numeric_limits<unsigned short>::max()); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, std::numeric_limits<int>::min()); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, std::numeric_limits<int>::max()); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, std::numeric_limits<unsigned>::min()); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, std::numeric_limits<unsigned>::max()); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, std::numeric_limits<fmt::LongLong>::min()); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, std::numeric_limits<fmt::LongLong>::max()); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, std::numeric_limits<fmt::ULongLong>::min()); | 
					
						
							|  |  |  |   TestLength<T>(length_spec, std::numeric_limits<fmt::ULongLong>::max()); | 
					
						
							| 
									
										
										
										
											2014-07-30 08:08:08 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-30 08:39:07 -07:00
										 |  |  | TEST(PrintfTest, Length) { | 
					
						
							| 
									
										
										
										
											2014-08-11 08:34:17 -07:00
										 |  |  |   TestLength<char>("hh"); | 
					
						
							| 
									
										
										
										
											2014-08-05 08:21:47 -07:00
										 |  |  |   TestLength<signed char>("hh"); | 
					
						
							| 
									
										
										
										
											2014-08-08 06:59:17 -07:00
										 |  |  |   TestLength<unsigned char>("hh"); | 
					
						
							| 
									
										
										
										
											2014-08-12 06:49:27 -07:00
										 |  |  |   TestLength<short>("h"); | 
					
						
							| 
									
										
										
										
											2014-08-09 08:53:14 -07:00
										 |  |  |   TestLength<unsigned short>("h"); | 
					
						
							| 
									
										
										
										
											2014-08-12 08:15:39 -07:00
										 |  |  |   TestLength<long>("l"); | 
					
						
							|  |  |  |   TestLength<unsigned long>("l"); | 
					
						
							| 
									
										
										
										
											2014-08-13 06:59:29 -07:00
										 |  |  |   TestLength<fmt::LongLong>("ll"); | 
					
						
							|  |  |  |   TestLength<fmt::ULongLong>("ll"); | 
					
						
							| 
									
										
										
										
											2014-08-13 06:42:15 -07:00
										 |  |  |   TestLength<intmax_t>("j"); | 
					
						
							|  |  |  |   TestLength<std::size_t>("z"); | 
					
						
							|  |  |  |   TestLength<std::ptrdiff_t>("t"); | 
					
						
							| 
									
										
										
										
											2014-08-15 06:58:24 -07:00
										 |  |  |   long double max = std::numeric_limits<long double>::max(); | 
					
						
							|  |  |  |   EXPECT_PRINTF(fmt::format("{}", max), "%g", max); | 
					
						
							|  |  |  |   EXPECT_PRINTF(fmt::format("{}", max), "%Lg", max); | 
					
						
							| 
									
										
										
										
											2014-08-19 08:14:21 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-19 08:49:10 -07:00
										 |  |  | TEST(PrintfTest, Int) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("-42", "%d", -42); | 
					
						
							|  |  |  |   EXPECT_PRINTF("-42", "%i", -42); | 
					
						
							|  |  |  |   unsigned u = -42; | 
					
						
							|  |  |  |   EXPECT_PRINTF(fmt::format("{}", u), "%u", -42); | 
					
						
							|  |  |  |   EXPECT_PRINTF(fmt::format("{:o}", u), "%o", -42); | 
					
						
							|  |  |  |   EXPECT_PRINTF(fmt::format("{:x}", u), "%x", -42); | 
					
						
							|  |  |  |   EXPECT_PRINTF(fmt::format("{:X}", u), "%X", -42); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-20 08:21:06 -07:00
										 |  |  | TEST(PrintfTest, Float) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("392.650000", "%f", 392.65); | 
					
						
							|  |  |  |   EXPECT_PRINTF("392.650000", "%F", 392.65); | 
					
						
							|  |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							|  |  |  |   safe_sprintf(buffer, "%e", 392.65); | 
					
						
							|  |  |  |   EXPECT_PRINTF(buffer, "%e", 392.65); | 
					
						
							|  |  |  |   safe_sprintf(buffer, "%E", 392.65); | 
					
						
							|  |  |  |   EXPECT_PRINTF(buffer, "%E", 392.65); | 
					
						
							|  |  |  |   EXPECT_PRINTF("392.65", "%g", 392.65); | 
					
						
							|  |  |  |   EXPECT_PRINTF("392.65", "%G", 392.65); | 
					
						
							| 
									
										
										
										
											2014-08-21 07:14:02 -07:00
										 |  |  |   safe_sprintf(buffer, "%a", -392.65); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer, format("{:a}", -392.65)); | 
					
						
							|  |  |  |   safe_sprintf(buffer, "%A", -392.65); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer, format("{:A}", -392.65)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, Inf) { | 
					
						
							|  |  |  |   double inf = std::numeric_limits<double>::infinity(); | 
					
						
							|  |  |  |   for (const char* type = "fega"; *type; ++type) { | 
					
						
							|  |  |  |     EXPECT_PRINTF("inf", fmt::format("%{}", *type), inf); | 
					
						
							|  |  |  |     char upper = std::toupper(*type); | 
					
						
							|  |  |  |     EXPECT_PRINTF("INF", fmt::format("%{}", upper), inf); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-08-20 08:21:06 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-19 08:14:21 -07:00
										 |  |  | TEST(PrintfTest, Char) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("x", "%c", 'x'); | 
					
						
							|  |  |  |   int max = std::numeric_limits<int>::max(); | 
					
						
							|  |  |  |   EXPECT_PRINTF(fmt::format("{}", static_cast<char>(max)), "%c", max); | 
					
						
							| 
									
										
										
										
											2014-08-20 08:21:06 -07:00
										 |  |  |   //EXPECT_PRINTF("x", "%lc", L'x');
 | 
					
						
							| 
									
										
										
										
											2014-08-19 08:14:21 -07:00
										 |  |  |   // TODO: test wchar_t
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-20 08:21:06 -07:00
										 |  |  | TEST(PrintfTest, String) { | 
					
						
							| 
									
										
										
										
											2014-08-21 07:14:02 -07:00
										 |  |  |   EXPECT_PRINTF("abc", "%s", "abc"); | 
					
						
							|  |  |  |   // TODO: wide string
 | 
					
						
							| 
									
										
										
										
											2014-08-20 08:21:06 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, Pointer) { | 
					
						
							| 
									
										
										
										
											2014-08-21 07:14:02 -07:00
										 |  |  |   int n; | 
					
						
							|  |  |  |   void *p = &n; | 
					
						
							|  |  |  |   EXPECT_PRINTF(fmt::format("{}", p), "%p", p); | 
					
						
							| 
									
										
										
										
											2014-08-20 08:21:06 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-08 08:36:20 -07:00
										 |  |  | TEST(PrintfTest, Custom) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("abc", "%s", TestString("abc")); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-20 08:21:06 -07:00
										 |  |  | TEST(PrintfTest, Location) { | 
					
						
							| 
									
										
										
										
											2014-08-21 07:14:02 -07:00
										 |  |  |   // TODO: test %n
 | 
					
						
							| 
									
										
										
										
											2014-08-20 08:21:06 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-08-28 06:42:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 07:53:46 -07:00
										 |  |  | enum E { A = 42 }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, Enum) { | 
					
						
							|  |  |  |   EXPECT_PRINTF("42", "%d", A); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-28 06:42:59 -07:00
										 |  |  | #if FMT_USE_FILE_DESCRIPTORS
 | 
					
						
							|  |  |  | TEST(PrintfTest, Examples) { | 
					
						
							|  |  |  |   const char *weekday = "Thursday"; | 
					
						
							|  |  |  |   const char *month = "August"; | 
					
						
							|  |  |  |   int day = 21; | 
					
						
							|  |  |  |   EXPECT_WRITE(stdout, fmt::printf("%1$s, %3$d %2$s", weekday, month, day), | 
					
						
							|  |  |  |                "Thursday, 21 August"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-11-14 09:40:01 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, PrintfError) { | 
					
						
							|  |  |  |   fmt::File read_end, write_end; | 
					
						
							|  |  |  |   fmt::File::pipe(read_end, write_end); | 
					
						
							|  |  |  |   int result = fmt::fprintf(read_end.fdopen("r").get(), "test"); | 
					
						
							|  |  |  |   EXPECT_LT(result, 0); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-08-28 06:42:59 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-09-18 16:26:41 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(PrintfTest, WideString) { | 
					
						
							|  |  |  |   EXPECT_EQ(L"abc", fmt::sprintf(L"%s", TestWString(L"abc"))); | 
					
						
							|  |  |  | } |