Snapshot of upstream SQLite 3.37.2
[sqlcipher.git] / test / atof1.test
bloba68266c9b19a47d87c4cc662b45668c3d44c002b
1 # 2012 June 18
3 # The author disclaims copyright to this source code.  In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
11
12 # Tests of the sqlite3AtoF() function.
15 set testdir [file dirname $argv0]
16 source $testdir/tester.tcl
18 if {$::longdouble_size<=8} {
19   finish_test
20   return
22 if {![info exists tcl_platform(machine)]
23       || $::tcl_platform(machine)!="x86_64"} {
24   finish_test
25   return
28 expr srand(1)
29 for {set i 1} {$i<20000} {incr i} {
30   set pow [expr {int((rand()-0.5)*100)}]
31   set x [expr {pow((rand()-0.5)*2*rand(),$pow)}]
32   set xf [format %.32e $x]
34   # Verify that text->real conversions get exactly same ieee754 floating-
35   # point value in SQLite as they do in TCL.
36   #
37   do_test atof1-1.$i.1 {
38     set y [db eval "SELECT $xf=\$x"]
39     if {!$y} {
40       puts -nonewline \173[db eval "SELECT real2hex($xf), real2hex(\$x)"]\175
41       db eval "SELECT $xf+0.0 AS a, \$x AS b" {
42         puts [format "\n%.60e\n%.60e\n%.60e" $x $a $b]
43       }
44     }
45     set y
46   } {1}
48   # Verify that round-trip real->text->real conversions using the quote()
49   # function preserve the bits of the numeric value exactly.
50   #
51   do_test atof1-1.$i.2 {
52     set y [db eval {SELECT $x=CAST(quote($x) AS real)}]
53     if {!$y} {
54       db eval {SELECT real2hex($x) a, real2hex(CAST(quote($x) AS real)) b} {}
55       puts "\nIN:    $a $xf"
56       puts [format {QUOTE: %16s %s} {} [db eval {SELECT quote($x)}]]
57       db eval {SELECT CAST(quote($x) AS real) c} {}
58       puts "OUT:   $b [format %.32e $c]"
59     }
60     set y
61   } {1}
64 # 2020-01-08 ticket 9eda2697f5cc1aba
65 # When running sqlite3AtoF() on a blob with an odd number of bytes using
66 # UTF16, ignore the last byte so that the string has an integer number of
67 # UTF16 code points.
69 reset_db
70 do_execsql_test atof1-2.10 {
71   PRAGMA encoding = 'UTF16be';
72   CREATE TABLE t1(a, b);
73   INSERT INTO t1(rowid,a) VALUES (1,x'00'),(2,3);
74   SELECT substr(a,',') is true FROM t1 ORDER BY rowid;
75 } {0 1}
76 do_execsql_test atof1-2.20 {
77   SELECT substr(a,',') is true FROM t1 ORDER BY rowid DESC;
78 } {1 0}
79 do_execsql_test atof1-2.30 {
80   CREATE INDEX i1 ON t1(a);
81   SELECT count(*) FROM t1 WHERE substr(a,',');
82 } {1}
83 # 2020-08-27 OSSFuzz find related to the above.
84 do_execsql_test atof1-2.40 {
85   SELECT randomblob(0) - 1;
86 } {-1}
89 finish_test