blob: 4cb1783bfb914484a1b52ec9ec2105bded757f5e [file] [log] [blame]
drha5c14162013-12-17 15:03:06 +00001# 2013-12-17
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
6# May you do good and not evil.
7# May you find forgiveness for yourself and forgive others.
8# May you share freely, never taking more than you give.
9#
10#***********************************************************************
11# This file implements regression tests for SQLite library. The
12# focus of this file is testing the printf() SQL function.
13#
drh3a8aec52013-12-17 16:32:56 +000014#
15# EVIDENCE-OF: R-63057-40065 The printf(FORMAT,...) SQL function works
16# like the sqlite3_mprintf() C-language function and the printf()
17# function from the standard C library.
18#
drha5c14162013-12-17 15:03:06 +000019
20set testdir [file dirname $argv0]
21source $testdir/tester.tcl
22
drh3a8aec52013-12-17 16:32:56 +000023# EVIDENCE-OF: R-40086-60101 If the FORMAT argument is missing or NULL
24# then the result is NULL.
25#
drha5c14162013-12-17 15:03:06 +000026do_execsql_test printf2-1.1 {
drh3a8aec52013-12-17 16:32:56 +000027 SELECT quote(printf()), quote(printf(NULL,1,2,3));
28} {NULL NULL}
29
30
drha5c14162013-12-17 15:03:06 +000031do_execsql_test printf2-1.2 {
32 SELECT printf('hello');
33} {hello}
34do_execsql_test printf2-1.3 {
35 SELECT printf('%d,%d,%d',55,-11,3421);
36} {55,-11,3421}
37do_execsql_test printf2-1.4 {
38 SELECT printf('%d,%d,%d',55,'-11',3421);
39} {55,-11,3421}
40do_execsql_test printf2-1.5 {
41 SELECT printf('%d,%d,%d,%d',55,'-11',3421);
42} {55,-11,3421,0}
43do_execsql_test printf2-1.6 {
44 SELECT printf('%.2f',3.141592653);
45} {3.14}
46do_execsql_test printf2-1.7 {
47 SELECT printf('%.*f',2,3.141592653);
48} {3.14}
49do_execsql_test printf2-1.8 {
50 SELECT printf('%*.*f',5,2,3.141592653);
51} {{ 3.14}}
52do_execsql_test printf2-1.9 {
53 SELECT printf('%d',314159.2653);
54} {314159}
55do_execsql_test printf2-1.10 {
56 SELECT printf('%lld',314159.2653);
57} {314159}
58do_execsql_test printf2-1.11 {
59 SELECT printf('%lld%n',314159.2653,'hi');
60} {314159}
drh3a8aec52013-12-17 16:32:56 +000061
drha820c052014-01-27 15:02:07 +000062# EVIDENCE-OF: R-17002-27534 The %z format is interchangeable with %s.
drh3a8aec52013-12-17 16:32:56 +000063#
drha5c14162013-12-17 15:03:06 +000064do_execsql_test printf2-1.12 {
65 SELECT printf('%.*z',5,'abcdefghijklmnop');
66} {abcde}
drhfc6ee9d2013-12-17 15:58:42 +000067do_execsql_test printf2-1.13 {
68 SELECT printf('%c','abcdefghijklmnop');
69} {a}
drha5c14162013-12-17 15:03:06 +000070
drh3a8aec52013-12-17 16:32:56 +000071# EVIDENCE-OF: R-02347-27622 The %n format is silently ignored and does
72# not consume an argument.
73#
74do_execsql_test printf2-2.1 {
75 CREATE TABLE t1(a,b,c);
76 INSERT INTO t1 VALUES(1,2,3);
77 INSERT INTO t1 VALUES(-1,-2,-3);
78 INSERT INTO t1 VALUES('abc','def','ghi');
79 INSERT INTO t1 VALUES(1.5,2.25,3.125);
80 SELECT printf('(%s)-%n-(%s)',a,b,c) FROM t1 ORDER BY rowid;
81} {(1)--(2) (-1)--(-2) (abc)--(def) (1.5)--(2.25)}
82
83# EVIDENCE-OF: R-56064-04001 The %p format is an alias for %X.
84#
85do_execsql_test printf2-2.2 {
86 SELECT printf('%s=(%p)',a,a) FROM t1 ORDER BY a;
87} {-1=(FFFFFFFFFFFFFFFF) 1=(1) 1.5=(1) abc=(0)}
88
89# EVIDENCE-OF: R-29410-53018 If there are too few arguments in the
90# argument list, missing arguments are assumed to have a NULL value,
91# which is translated into 0 or 0.0 for numeric formats or an empty
92# string for %s.
93#
94do_execsql_test printf2-2.3 {
95 SELECT printf('%s=(%d/%g/%s)',a) FROM t1 ORDER BY a;
96} {-1=(0/0/) 1=(0/0/) 1.5=(0/0/) abc=(0/0/)}
97
drha5c14162013-12-17 15:03:06 +000098
99finish_test