blob: 0eab16706256abbdd85bd25fb61b4b24e895a7e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include "null.h"
#include "printf.h"
#include "str.h"
#include <util/generic/string.h>
#include <library/cpp/testing/unittest/registar.h>
Y_UNIT_TEST_SUITE(TStreamPrintfTest) {
Y_UNIT_TEST(TestPrintf) {
TStringStream ss;
UNIT_ASSERT_EQUAL(Printf(ss, "qw %s %d", "er", 1), 7);
UNIT_ASSERT_EQUAL(ss.Str(), "qw er 1");
}
#ifdef __GNUC__
#pragma GCC diagnostic ignored "-Wformat-zero-length"
#endif // __GNUC__
Y_UNIT_TEST(TestZeroString) {
UNIT_ASSERT_EQUAL(Printf(Cnull, ""), 0);
}
Y_UNIT_TEST(TestLargePrintf) {
TString s = NUnitTest::RandomString(1000000);
TStringStream ss;
Printf(ss, "%s", s.data());
UNIT_ASSERT_EQUAL(ss.Str(), s);
}
}
|