xref: /onnv-gate/usr/src/lib/libsqlite/test/printf.test (revision 4520:7dbeadedd7fe)
1*4520Snw141292
2*4520Snw141292#pragma ident	"%Z%%M%	%I%	%E% SMI"
3*4520Snw141292
4*4520Snw141292# 2001 September 15
5*4520Snw141292#
6*4520Snw141292# The author disclaims copyright to this source code.  In place of
7*4520Snw141292# a legal notice, here is a blessing:
8*4520Snw141292#
9*4520Snw141292#    May you do good and not evil.
10*4520Snw141292#    May you find forgiveness for yourself and forgive others.
11*4520Snw141292#    May you share freely, never taking more than you give.
12*4520Snw141292#
13*4520Snw141292#***********************************************************************
14*4520Snw141292# This file implements regression tests for SQLite library.  The
15*4520Snw141292# focus of this file is testing the sqlite_*_printf() interface.
16*4520Snw141292#
17*4520Snw141292# $Id: printf.test,v 1.8 2004/02/21 19:41:05 drh Exp $
18*4520Snw141292
19*4520Snw141292set testdir [file dirname $argv0]
20*4520Snw141292source $testdir/tester.tcl
21*4520Snw141292
22*4520Snw141292set n 1
23*4520Snw141292foreach v {1 2 5 10 99 100 1000000 999999999 0 -1 -2 -5 -10 -99 -100 -9999999} {
24*4520Snw141292  do_test printf-1.$n.1 [subst {
25*4520Snw141292    sqlite_mprintf_int {Three integers: %d %x %o} $v $v $v
26*4520Snw141292  }] [format {Three integers: %d %x %o} $v $v $v]
27*4520Snw141292  do_test printf-1.$n.2 [subst {
28*4520Snw141292    sqlite_mprintf_int {Three integers: (%6d) (%6x) (%6o)} $v $v $v
29*4520Snw141292  }] [format {Three integers: (%6d) (%6x) (%6o)} $v $v $v]
30*4520Snw141292  do_test printf-1.$n.3 [subst {
31*4520Snw141292    sqlite_mprintf_int {Three integers: (%-6d) (%-6x) (%-6o)} $v $v $v
32*4520Snw141292  }] [format {Three integers: (%-6d) (%-6x) (%-6o)} $v $v $v]
33*4520Snw141292  do_test printf-1.$n.4 [subst {
34*4520Snw141292    sqlite_mprintf_int {Three integers: (%+6d) (%+6x) (%+6o)} $v $v $v
35*4520Snw141292  }] [format {Three integers: (%+6d) (%+6x) (%+6o)} $v $v $v]
36*4520Snw141292  do_test printf-1.$n.5 [subst {
37*4520Snw141292    sqlite_mprintf_int {Three integers: (%06d) (%06x) (%06o)} $v $v $v
38*4520Snw141292  }] [format {Three integers: (%06d) (%06x) (%06o)} $v $v $v]
39*4520Snw141292  do_test printf-1.$n.6 [subst {
40*4520Snw141292    sqlite_mprintf_int {Three integers: (% 6d) (% 6x) (% 6o)} $v $v $v
41*4520Snw141292  }] [format {Three integers: (% 6d) (% 6x) (% 6o)} $v $v $v]
42*4520Snw141292  incr n
43*4520Snw141292}
44*4520Snw141292
45*4520Snw141292
46*4520Snw141292if {$::tcl_platform(platform)!="windows"} {
47*4520Snw141292
48*4520Snw141292set m 1
49*4520Snw141292foreach {a b} {1 1 5 5 10 10 10 5} {
50*4520Snw141292  set n 1
51*4520Snw141292  foreach x {0.001 1.0e-20 1.0 0.0 100.0 9.99999 -0.00543 -1.0 -99.99999} {
52*4520Snw141292    do_test printf-2.$m.$n.1 [subst {
53*4520Snw141292      sqlite_mprintf_double {A double: %*.*f} $a $b $x
54*4520Snw141292    }] [format {A double: %*.*f} $a $b $x]
55*4520Snw141292    do_test printf-2.$m.$n.2 [subst {
56*4520Snw141292      sqlite_mprintf_double {A double: %*.*e} $a $b $x
57*4520Snw141292    }] [format {A double: %*.*e} $a $b $x]
58*4520Snw141292    do_test printf-2.$m.$n.3 [subst {
59*4520Snw141292      sqlite_mprintf_double {A double: %*.*g} $a $b $x
60*4520Snw141292    }] [format {A double: %*.*g} $a $b $x]
61*4520Snw141292    do_test printf-2.$m.$n.4 [subst {
62*4520Snw141292      sqlite_mprintf_double {A double: %d %d %g} $a $b $x
63*4520Snw141292    }] [format {A double: %d %d %g} $a $b $x]
64*4520Snw141292    do_test printf-2.$m.$n.5 [subst {
65*4520Snw141292      sqlite_mprintf_double {A double: %d %d %#g} $a $b $x
66*4520Snw141292    }] [format {A double: %d %d %#g} $a $b $x]
67*4520Snw141292    incr n
68*4520Snw141292  }
69*4520Snw141292  incr m
70*4520Snw141292}
71*4520Snw141292
72*4520Snw141292}
73*4520Snw141292
74*4520Snw141292do_test printf-3.1 {
75*4520Snw141292  sqlite_mprintf_str {A String: (%*.*s)} 10 10 {This is the string}
76*4520Snw141292} [format {A String: (%*.*s)} 10 10 {This is the string}]
77*4520Snw141292do_test printf-3.2 {
78*4520Snw141292  sqlite_mprintf_str {A String: (%*.*s)} 10 5 {This is the string}
79*4520Snw141292} [format {A String: (%*.*s)} 10 5 {This is the string}]
80*4520Snw141292do_test printf-3.3 {
81*4520Snw141292  sqlite_mprintf_str {A String: (%*.*s)} -10 5 {This is the string}
82*4520Snw141292} [format {A String: (%*.*s)} -10 5 {This is the string}]
83*4520Snw141292do_test printf-3.4 {
84*4520Snw141292  sqlite_mprintf_str {%d %d A String: (%s)} 1 2 {This is the string}
85*4520Snw141292} [format {%d %d A String: (%s)} 1 2 {This is the string}]
86*4520Snw141292do_test printf-3.5 {
87*4520Snw141292  sqlite_mprintf_str {%d %d A String: (%30s)} 1 2 {This is the string}
88*4520Snw141292} [format {%d %d A String: (%30s)} 1 2 {This is the string}]
89*4520Snw141292do_test printf-3.6 {
90*4520Snw141292  sqlite_mprintf_str {%d %d A String: (%-30s)} 1 2 {This is the string}
91*4520Snw141292} [format {%d %d A String: (%-30s)} 1 2 {This is the string}]
92*4520Snw141292
93*4520Snw141292do_test printf-4.1 {
94*4520Snw141292  sqlite_mprintf_str {%d %d A quoted string: '%q'} 1 2 {Hi Y'all}
95*4520Snw141292} {1 2 A quoted string: 'Hi Y''all'}
96*4520Snw141292do_test printf-4.2 {
97*4520Snw141292  sqlite_mprintf_str {%d %d A NULL pointer in %%q: '%q'} 1 2
98*4520Snw141292} {1 2 A NULL pointer in %q: '(NULL)'}
99*4520Snw141292do_test printf-4.3 {
100*4520Snw141292  sqlite_mprintf_str {%d %d A quoted string: %Q} 1 2 {Hi Y'all}
101*4520Snw141292} {1 2 A quoted string: 'Hi Y''all'}
102*4520Snw141292do_test printf-4.4 {
103*4520Snw141292  sqlite_mprintf_str {%d %d A NULL pointer in %%Q: %Q} 1 2
104*4520Snw141292} {1 2 A NULL pointer in %Q: NULL}
105*4520Snw141292
106*4520Snw141292do_test printf-5.1 {
107*4520Snw141292  set x [sqlite_mprintf_str {%d %d %100000s} 0 0 {Hello}]
108*4520Snw141292  string length $x
109*4520Snw141292} {994}
110*4520Snw141292do_test printf-5.2 {
111*4520Snw141292  sqlite_mprintf_str {%d %d (%-10.10s) %} -9 -10 {HelloHelloHello}
112*4520Snw141292} {-9 -10 (HelloHello) %}
113*4520Snw141292
114*4520Snw141292do_test printf-6.1 {
115*4520Snw141292  sqlite_mprintf_z_test , one two three four five six
116*4520Snw141292} {,one,two,three,four,five,six}
117*4520Snw141292
118*4520Snw141292
119*4520Snw141292do_test printf-7.1 {
120*4520Snw141292  sqlite_mprintf_scaled {A double: %g} 1.0e307 1.0
121*4520Snw141292} {A double: 1e+307}
122*4520Snw141292do_test printf-7.2 {
123*4520Snw141292  sqlite_mprintf_scaled {A double: %g} 1.0e307 10.0
124*4520Snw141292} {A double: 1e+308}
125*4520Snw141292do_test printf-7.3 {
126*4520Snw141292  sqlite_mprintf_scaled {A double: %g} 1.0e307 100.0
127*4520Snw141292} {A double: NaN}
128*4520Snw141292
129*4520Snw141292finish_test
130