Source file src/internal/strconv/atof_test.go

     1  // Copyright 2009 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package strconv_test
     6  
     7  import (
     8  	"math"
     9  	"math/rand"
    10  	"reflect"
    11  	. "internal/strconv"
    12  	"strings"
    13  	"sync"
    14  	"testing"
    15  )
    16  
    17  type atofTest struct {
    18  	in  string
    19  	out string
    20  	err error
    21  }
    22  
    23  var atoftests = []atofTest{
    24  	{"", "0", ErrSyntax},
    25  	{"1", "1", nil},
    26  	{"+1", "1", nil},
    27  	{"1x", "0", ErrSyntax},
    28  	{"1.1.", "0", ErrSyntax},
    29  	{"1e23", "1e+23", nil},
    30  	{"1E23", "1e+23", nil},
    31  	{"100000000000000000000000", "1e+23", nil},
    32  	{"1e-100", "1e-100", nil},
    33  	{"123456700", "1.234567e+08", nil},
    34  	{"99999999999999974834176", "9.999999999999997e+22", nil},
    35  	{"100000000000000000000001", "1.0000000000000001e+23", nil},
    36  	{"100000000000000008388608", "1.0000000000000001e+23", nil},
    37  	{"100000000000000016777215", "1.0000000000000001e+23", nil},
    38  	{"100000000000000016777216", "1.0000000000000003e+23", nil},
    39  	{"-1", "-1", nil},
    40  	{"-0.1", "-0.1", nil},
    41  	{"-0", "-0", nil},
    42  	{"1e-20", "1e-20", nil},
    43  	{"625e-3", "0.625", nil},
    44  
    45  	// Hexadecimal floating-point.
    46  	{"0x1p0", "1", nil},
    47  	{"0x1p1", "2", nil},
    48  	{"0x1p-1", "0.5", nil},
    49  	{"0x1ep-1", "15", nil},
    50  	{"-0x1ep-1", "-15", nil},
    51  	{"-0x1_ep-1", "-15", nil},
    52  	{"0x1p-200", "6.223015277861142e-61", nil},
    53  	{"0x1p200", "1.6069380442589903e+60", nil},
    54  	{"0x1fFe2.p0", "131042", nil},
    55  	{"0x1fFe2.P0", "131042", nil},
    56  	{"-0x2p3", "-16", nil},
    57  	{"0x0.fp4", "15", nil},
    58  	{"0x0.fp0", "0.9375", nil},
    59  	{"0x1e2", "0", ErrSyntax},
    60  	{"1p2", "0", ErrSyntax},
    61  
    62  	// zeros
    63  	{"0", "0", nil},
    64  	{"0e0", "0", nil},
    65  	{"-0e0", "-0", nil},
    66  	{"+0e0", "0", nil},
    67  	{"0e-0", "0", nil},
    68  	{"-0e-0", "-0", nil},
    69  	{"+0e-0", "0", nil},
    70  	{"0e+0", "0", nil},
    71  	{"-0e+0", "-0", nil},
    72  	{"+0e+0", "0", nil},
    73  	{"0e+01234567890123456789", "0", nil},
    74  	{"0.00e-01234567890123456789", "0", nil},
    75  	{"-0e+01234567890123456789", "-0", nil},
    76  	{"-0.00e-01234567890123456789", "-0", nil},
    77  	{"0x0p+01234567890123456789", "0", nil},
    78  	{"0x0.00p-01234567890123456789", "0", nil},
    79  	{"-0x0p+01234567890123456789", "-0", nil},
    80  	{"-0x0.00p-01234567890123456789", "-0", nil},
    81  
    82  	{"0e291", "0", nil}, // issue 15364
    83  	{"0e292", "0", nil}, // issue 15364
    84  	{"0e347", "0", nil}, // issue 15364
    85  	{"0e348", "0", nil}, // issue 15364
    86  	{"-0e291", "-0", nil},
    87  	{"-0e292", "-0", nil},
    88  	{"-0e347", "-0", nil},
    89  	{"-0e348", "-0", nil},
    90  	{"0x0p126", "0", nil},
    91  	{"0x0p127", "0", nil},
    92  	{"0x0p128", "0", nil},
    93  	{"0x0p129", "0", nil},
    94  	{"0x0p130", "0", nil},
    95  	{"0x0p1022", "0", nil},
    96  	{"0x0p1023", "0", nil},
    97  	{"0x0p1024", "0", nil},
    98  	{"0x0p1025", "0", nil},
    99  	{"0x0p1026", "0", nil},
   100  	{"-0x0p126", "-0", nil},
   101  	{"-0x0p127", "-0", nil},
   102  	{"-0x0p128", "-0", nil},
   103  	{"-0x0p129", "-0", nil},
   104  	{"-0x0p130", "-0", nil},
   105  	{"-0x0p1022", "-0", nil},
   106  	{"-0x0p1023", "-0", nil},
   107  	{"-0x0p1024", "-0", nil},
   108  	{"-0x0p1025", "-0", nil},
   109  	{"-0x0p1026", "-0", nil},
   110  
   111  	// NaNs
   112  	{"nan", "NaN", nil},
   113  	{"NaN", "NaN", nil},
   114  	{"NAN", "NaN", nil},
   115  
   116  	// Infs
   117  	{"inf", "+Inf", nil},
   118  	{"-Inf", "-Inf", nil},
   119  	{"+INF", "+Inf", nil},
   120  	{"-Infinity", "-Inf", nil},
   121  	{"+INFINITY", "+Inf", nil},
   122  	{"Infinity", "+Inf", nil},
   123  
   124  	// largest float64
   125  	{"1.7976931348623157e308", "1.7976931348623157e+308", nil},
   126  	{"-1.7976931348623157e308", "-1.7976931348623157e+308", nil},
   127  	{"0x1.fffffffffffffp1023", "1.7976931348623157e+308", nil},
   128  	{"-0x1.fffffffffffffp1023", "-1.7976931348623157e+308", nil},
   129  	{"0x1fffffffffffffp+971", "1.7976931348623157e+308", nil},
   130  	{"-0x1fffffffffffffp+971", "-1.7976931348623157e+308", nil},
   131  	{"0x.1fffffffffffffp1027", "1.7976931348623157e+308", nil},
   132  	{"-0x.1fffffffffffffp1027", "-1.7976931348623157e+308", nil},
   133  
   134  	// next float64 - too large
   135  	{"1.7976931348623159e308", "+Inf", ErrRange},
   136  	{"-1.7976931348623159e308", "-Inf", ErrRange},
   137  	{"0x1p1024", "+Inf", ErrRange},
   138  	{"-0x1p1024", "-Inf", ErrRange},
   139  	{"0x2p1023", "+Inf", ErrRange},
   140  	{"-0x2p1023", "-Inf", ErrRange},
   141  	{"0x.1p1028", "+Inf", ErrRange},
   142  	{"-0x.1p1028", "-Inf", ErrRange},
   143  	{"0x.2p1027", "+Inf", ErrRange},
   144  	{"-0x.2p1027", "-Inf", ErrRange},
   145  
   146  	// the border is ...158079
   147  	// borderline - okay
   148  	{"1.7976931348623158e308", "1.7976931348623157e+308", nil},
   149  	{"-1.7976931348623158e308", "-1.7976931348623157e+308", nil},
   150  	{"0x1.fffffffffffff7fffp1023", "1.7976931348623157e+308", nil},
   151  	{"-0x1.fffffffffffff7fffp1023", "-1.7976931348623157e+308", nil},
   152  	// borderline - too large
   153  	{"1.797693134862315808e308", "+Inf", ErrRange},
   154  	{"-1.797693134862315808e308", "-Inf", ErrRange},
   155  	{"0x1.fffffffffffff8p1023", "+Inf", ErrRange},
   156  	{"-0x1.fffffffffffff8p1023", "-Inf", ErrRange},
   157  	{"0x1fffffffffffff.8p+971", "+Inf", ErrRange},
   158  	{"-0x1fffffffffffff8p+967", "-Inf", ErrRange},
   159  	{"0x.1fffffffffffff8p1027", "+Inf", ErrRange},
   160  	{"-0x.1fffffffffffff9p1027", "-Inf", ErrRange},
   161  
   162  	// a little too large
   163  	{"1e308", "1e+308", nil},
   164  	{"2e308", "+Inf", ErrRange},
   165  	{"1e309", "+Inf", ErrRange},
   166  	{"0x1p1025", "+Inf", ErrRange},
   167  
   168  	// way too large
   169  	{"1e310", "+Inf", ErrRange},
   170  	{"-1e310", "-Inf", ErrRange},
   171  	{"1e400", "+Inf", ErrRange},
   172  	{"-1e400", "-Inf", ErrRange},
   173  	{"1e400000", "+Inf", ErrRange},
   174  	{"-1e400000", "-Inf", ErrRange},
   175  	{"0x1p1030", "+Inf", ErrRange},
   176  	{"0x1p2000", "+Inf", ErrRange},
   177  	{"0x1p2000000000", "+Inf", ErrRange},
   178  	{"-0x1p1030", "-Inf", ErrRange},
   179  	{"-0x1p2000", "-Inf", ErrRange},
   180  	{"-0x1p2000000000", "-Inf", ErrRange},
   181  
   182  	// denormalized
   183  	{"1e-305", "1e-305", nil},
   184  	{"1e-306", "1e-306", nil},
   185  	{"1e-307", "1e-307", nil},
   186  	{"1e-308", "1e-308", nil},
   187  	{"1e-309", "1e-309", nil},
   188  	{"1e-310", "1e-310", nil},
   189  	{"1e-322", "1e-322", nil},
   190  	// smallest denormal
   191  	{"5e-324", "5e-324", nil},
   192  	{"4e-324", "5e-324", nil},
   193  	{"3e-324", "5e-324", nil},
   194  	// too small
   195  	{"2e-324", "0", nil},
   196  	// way too small
   197  	{"1e-350", "0", nil},
   198  	{"1e-400000", "0", nil},
   199  
   200  	// Near denormals and denormals.
   201  	{"0x2.00000000000000p-1010", "1.8227805048890994e-304", nil}, // 0x00e0000000000000
   202  	{"0x1.fffffffffffff0p-1010", "1.8227805048890992e-304", nil}, // 0x00dfffffffffffff
   203  	{"0x1.fffffffffffff7p-1010", "1.8227805048890992e-304", nil}, // rounded down
   204  	{"0x1.fffffffffffff8p-1010", "1.8227805048890994e-304", nil}, // rounded up
   205  	{"0x1.fffffffffffff9p-1010", "1.8227805048890994e-304", nil}, // rounded up
   206  
   207  	{"0x2.00000000000000p-1022", "4.450147717014403e-308", nil},  // 0x0020000000000000
   208  	{"0x1.fffffffffffff0p-1022", "4.4501477170144023e-308", nil}, // 0x001fffffffffffff
   209  	{"0x1.fffffffffffff7p-1022", "4.4501477170144023e-308", nil}, // rounded down
   210  	{"0x1.fffffffffffff8p-1022", "4.450147717014403e-308", nil},  // rounded up
   211  	{"0x1.fffffffffffff9p-1022", "4.450147717014403e-308", nil},  // rounded up
   212  
   213  	{"0x1.00000000000000p-1022", "2.2250738585072014e-308", nil}, // 0x0010000000000000
   214  	{"0x0.fffffffffffff0p-1022", "2.225073858507201e-308", nil},  // 0x000fffffffffffff
   215  	{"0x0.ffffffffffffe0p-1022", "2.2250738585072004e-308", nil}, // 0x000ffffffffffffe
   216  	{"0x0.ffffffffffffe7p-1022", "2.2250738585072004e-308", nil}, // rounded down
   217  	{"0x1.ffffffffffffe8p-1023", "2.225073858507201e-308", nil},  // rounded up
   218  	{"0x1.ffffffffffffe9p-1023", "2.225073858507201e-308", nil},  // rounded up
   219  
   220  	{"0x0.00000003fffff0p-1022", "2.072261e-317", nil},  // 0x00000000003fffff
   221  	{"0x0.00000003456780p-1022", "1.694649e-317", nil},  // 0x0000000000345678
   222  	{"0x0.00000003456787p-1022", "1.694649e-317", nil},  // rounded down
   223  	{"0x0.00000003456788p-1022", "1.694649e-317", nil},  // rounded down (half to even)
   224  	{"0x0.00000003456790p-1022", "1.6946496e-317", nil}, // 0x0000000000345679
   225  	{"0x0.00000003456789p-1022", "1.6946496e-317", nil}, // rounded up
   226  
   227  	{"0x0.0000000345678800000000000000000000000001p-1022", "1.6946496e-317", nil}, // rounded up
   228  
   229  	{"0x0.000000000000f0p-1022", "7.4e-323", nil}, // 0x000000000000000f
   230  	{"0x0.00000000000060p-1022", "3e-323", nil},   // 0x0000000000000006
   231  	{"0x0.00000000000058p-1022", "3e-323", nil},   // rounded up
   232  	{"0x0.00000000000057p-1022", "2.5e-323", nil}, // rounded down
   233  	{"0x0.00000000000050p-1022", "2.5e-323", nil}, // 0x0000000000000005
   234  
   235  	{"0x0.00000000000010p-1022", "5e-324", nil},  // 0x0000000000000001
   236  	{"0x0.000000000000081p-1022", "5e-324", nil}, // rounded up
   237  	{"0x0.00000000000008p-1022", "0", nil},       // rounded down
   238  	{"0x0.00000000000007fp-1022", "0", nil},      // rounded down
   239  
   240  	// try to overflow exponent
   241  	{"1e-4294967296", "0", nil},
   242  	{"1e+4294967296", "+Inf", ErrRange},
   243  	{"1e-18446744073709551616", "0", nil},
   244  	{"1e+18446744073709551616", "+Inf", ErrRange},
   245  	{"0x1p-4294967296", "0", nil},
   246  	{"0x1p+4294967296", "+Inf", ErrRange},
   247  	{"0x1p-18446744073709551616", "0", nil},
   248  	{"0x1p+18446744073709551616", "+Inf", ErrRange},
   249  
   250  	// Parse errors
   251  	{"1e", "0", ErrSyntax},
   252  	{"1e-", "0", ErrSyntax},
   253  	{".e-1", "0", ErrSyntax},
   254  	{"1\x00.2", "0", ErrSyntax},
   255  	{"0x", "0", ErrSyntax},
   256  	{"0x.", "0", ErrSyntax},
   257  	{"0x1", "0", ErrSyntax},
   258  	{"0x.1", "0", ErrSyntax},
   259  	{"0x1p", "0", ErrSyntax},
   260  	{"0x.1p", "0", ErrSyntax},
   261  	{"0x1p+", "0", ErrSyntax},
   262  	{"0x.1p+", "0", ErrSyntax},
   263  	{"0x1p-", "0", ErrSyntax},
   264  	{"0x.1p-", "0", ErrSyntax},
   265  	{"0x1p+2", "4", nil},
   266  	{"0x.1p+2", "0.25", nil},
   267  	{"0x1p-2", "0.25", nil},
   268  	{"0x.1p-2", "0.015625", nil},
   269  
   270  	// https://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/
   271  	{"2.2250738585072012e-308", "2.2250738585072014e-308", nil},
   272  	// https://www.exploringbinary.com/php-hangs-on-numeric-value-2-2250738585072011e-308/
   273  	{"2.2250738585072011e-308", "2.225073858507201e-308", nil},
   274  
   275  	// A very large number (initially wrongly parsed by the fast algorithm).
   276  	{"4.630813248087435e+307", "4.630813248087435e+307", nil},
   277  
   278  	// A different kind of very large number.
   279  	{"22.222222222222222", "22.22222222222222", nil},
   280  	{"2." + strings.Repeat("2", 4000) + "e+1", "22.22222222222222", nil},
   281  	{"0x1.1111111111111p222", "7.18931911124017e+66", nil},
   282  	{"0x2.2222222222222p221", "7.18931911124017e+66", nil},
   283  	{"0x2." + strings.Repeat("2", 4000) + "p221", "7.18931911124017e+66", nil},
   284  
   285  	// Exactly halfway between 1 and math.Nextafter(1, 2).
   286  	// Round to even (down).
   287  	{"1.00000000000000011102230246251565404236316680908203125", "1", nil},
   288  	{"0x1.00000000000008p0", "1", nil},
   289  	// Slightly lower; still round down.
   290  	{"1.00000000000000011102230246251565404236316680908203124", "1", nil},
   291  	{"0x1.00000000000007Fp0", "1", nil},
   292  	// Slightly higher; round up.
   293  	{"1.00000000000000011102230246251565404236316680908203126", "1.0000000000000002", nil},
   294  	{"0x1.000000000000081p0", "1.0000000000000002", nil},
   295  	{"0x1.00000000000009p0", "1.0000000000000002", nil},
   296  	// Slightly higher, but you have to read all the way to the end.
   297  	{"1.00000000000000011102230246251565404236316680908203125" + strings.Repeat("0", 10000) + "1", "1.0000000000000002", nil},
   298  	{"0x1.00000000000008" + strings.Repeat("0", 10000) + "1p0", "1.0000000000000002", nil},
   299  
   300  	// Halfway between x := math.Nextafter(1, 2) and math.Nextafter(x, 2)
   301  	// Round to even (up).
   302  	{"1.00000000000000033306690738754696212708950042724609375", "1.0000000000000004", nil},
   303  	{"0x1.00000000000018p0", "1.0000000000000004", nil},
   304  
   305  	// Halfway between 1090544144181609278303144771584 and 1090544144181609419040633126912
   306  	// (15497564393479157p+46, should round to even 15497564393479156p+46, issue 36657)
   307  	{"1090544144181609348671888949248", "1.0905441441816093e+30", nil},
   308  	// slightly above, rounds up
   309  	{"1090544144181609348835077142190", "1.0905441441816094e+30", nil},
   310  
   311  	// Underscores.
   312  	{"1_23.50_0_0e+1_2", "1.235e+14", nil},
   313  	{"-_123.5e+12", "0", ErrSyntax},
   314  	{"+_123.5e+12", "0", ErrSyntax},
   315  	{"_123.5e+12", "0", ErrSyntax},
   316  	{"1__23.5e+12", "0", ErrSyntax},
   317  	{"123_.5e+12", "0", ErrSyntax},
   318  	{"123._5e+12", "0", ErrSyntax},
   319  	{"123.5_e+12", "0", ErrSyntax},
   320  	{"123.5__0e+12", "0", ErrSyntax},
   321  	{"123.5e_+12", "0", ErrSyntax},
   322  	{"123.5e+_12", "0", ErrSyntax},
   323  	{"123.5e_-12", "0", ErrSyntax},
   324  	{"123.5e-_12", "0", ErrSyntax},
   325  	{"123.5e+1__2", "0", ErrSyntax},
   326  	{"123.5e+12_", "0", ErrSyntax},
   327  
   328  	{"0x_1_2.3_4_5p+1_2", "74565", nil},
   329  	{"-_0x12.345p+12", "0", ErrSyntax},
   330  	{"+_0x12.345p+12", "0", ErrSyntax},
   331  	{"_0x12.345p+12", "0", ErrSyntax},
   332  	{"0x__12.345p+12", "0", ErrSyntax},
   333  	{"0x1__2.345p+12", "0", ErrSyntax},
   334  	{"0x12_.345p+12", "0", ErrSyntax},
   335  	{"0x12._345p+12", "0", ErrSyntax},
   336  	{"0x12.3__45p+12", "0", ErrSyntax},
   337  	{"0x12.345_p+12", "0", ErrSyntax},
   338  	{"0x12.345p_+12", "0", ErrSyntax},
   339  	{"0x12.345p+_12", "0", ErrSyntax},
   340  	{"0x12.345p_-12", "0", ErrSyntax},
   341  	{"0x12.345p-_12", "0", ErrSyntax},
   342  	{"0x12.345p+1__2", "0", ErrSyntax},
   343  	{"0x12.345p+12_", "0", ErrSyntax},
   344  
   345  	{"1e100x", "0", ErrSyntax},
   346  	{"1e1000x", "0", ErrSyntax},
   347  }
   348  
   349  var atof32tests = []atofTest{
   350  	// Hex
   351  	{"0x1p-100", "7.888609e-31", nil},
   352  	{"0x1p100", "1.2676506e+30", nil},
   353  
   354  	// Exactly halfway between 1 and the next float32.
   355  	// Round to even (down).
   356  	{"1.000000059604644775390625", "1", nil},
   357  	{"0x1.000001p0", "1", nil},
   358  	// Slightly lower.
   359  	{"1.000000059604644775390624", "1", nil},
   360  	{"0x1.0000008p0", "1", nil},
   361  	{"0x1.000000fp0", "1", nil},
   362  	// Slightly higher.
   363  	{"1.000000059604644775390626", "1.0000001", nil},
   364  	{"0x1.000002p0", "1.0000001", nil},
   365  	{"0x1.0000018p0", "1.0000001", nil},
   366  	{"0x1.0000011p0", "1.0000001", nil},
   367  	// Slightly higher, but you have to read all the way to the end.
   368  	{"1.000000059604644775390625" + strings.Repeat("0", 10000) + "1", "1.0000001", nil},
   369  	{"0x1.000001" + strings.Repeat("0", 10000) + "1p0", "1.0000001", nil},
   370  
   371  	// largest float32: (1<<128) * (1 - 2^-24)
   372  	{"340282346638528859811704183484516925440", "3.4028235e+38", nil},
   373  	{"-340282346638528859811704183484516925440", "-3.4028235e+38", nil},
   374  	{"0x.ffffffp128", "3.4028235e+38", nil},
   375  	{"-340282346638528859811704183484516925440", "-3.4028235e+38", nil},
   376  	{"-0x.ffffffp128", "-3.4028235e+38", nil},
   377  	// next float32 - too large
   378  	{"3.4028236e38", "+Inf", ErrRange},
   379  	{"-3.4028236e38", "-Inf", ErrRange},
   380  	{"0x1.0p128", "+Inf", ErrRange},
   381  	{"-0x1.0p128", "-Inf", ErrRange},
   382  	// the border is 3.40282356779...e+38
   383  	// borderline - okay
   384  	{"3.402823567e38", "3.4028235e+38", nil},
   385  	{"-3.402823567e38", "-3.4028235e+38", nil},
   386  	{"0x.ffffff7fp128", "3.4028235e+38", nil},
   387  	{"-0x.ffffff7fp128", "-3.4028235e+38", nil},
   388  	// borderline - too large
   389  	{"3.4028235678e38", "+Inf", ErrRange},
   390  	{"-3.4028235678e38", "-Inf", ErrRange},
   391  	{"0x.ffffff8p128", "+Inf", ErrRange},
   392  	{"-0x.ffffff8p128", "-Inf", ErrRange},
   393  
   394  	// Denormals: less than 2^-126
   395  	{"1e-38", "1e-38", nil},
   396  	{"1e-39", "1e-39", nil},
   397  	{"1e-40", "1e-40", nil},
   398  	{"1e-41", "1e-41", nil},
   399  	{"1e-42", "1e-42", nil},
   400  	{"1e-43", "1e-43", nil},
   401  	{"1e-44", "1e-44", nil},
   402  	{"6e-45", "6e-45", nil}, // 4p-149 = 5.6e-45
   403  	{"5e-45", "6e-45", nil},
   404  
   405  	// Smallest denormal
   406  	{"1e-45", "1e-45", nil}, // 1p-149 = 1.4e-45
   407  	{"2e-45", "1e-45", nil},
   408  	{"3e-45", "3e-45", nil},
   409  
   410  	// Near denormals and denormals.
   411  	{"0x0.89aBcDp-125", "1.2643093e-38", nil},  // 0x0089abcd
   412  	{"0x0.8000000p-125", "1.1754944e-38", nil}, // 0x00800000
   413  	{"0x0.1234560p-125", "1.671814e-39", nil},  // 0x00123456
   414  	{"0x0.1234567p-125", "1.671814e-39", nil},  // rounded down
   415  	{"0x0.1234568p-125", "1.671814e-39", nil},  // rounded down
   416  	{"0x0.1234569p-125", "1.671815e-39", nil},  // rounded up
   417  	{"0x0.1234570p-125", "1.671815e-39", nil},  // 0x00123457
   418  	{"0x0.0000010p-125", "1e-45", nil},         // 0x00000001
   419  	{"0x0.00000081p-125", "1e-45", nil},        // rounded up
   420  	{"0x0.0000008p-125", "0", nil},             // rounded down
   421  	{"0x0.0000007p-125", "0", nil},             // rounded down
   422  
   423  	// 2^92 = 8388608p+69 = 4951760157141521099596496896 (4.9517602e27)
   424  	// is an exact power of two that needs 8 decimal digits to be correctly
   425  	// parsed back.
   426  	// The float32 before is 16777215p+68 = 4.95175986e+27
   427  	// The halfway is 4.951760009. A bad algorithm that thinks the previous
   428  	// float32 is 8388607p+69 will shorten incorrectly to 4.95176e+27.
   429  	{"4951760157141521099596496896", "4.9517602e+27", nil},
   430  }
   431  
   432  type atofSimpleTest struct {
   433  	x float64
   434  	s string
   435  }
   436  
   437  var (
   438  	atofOnce               sync.Once
   439  	atofRandomTests        []atofSimpleTest
   440  	benchmarksRandomBits   [1024]string
   441  	benchmarksRandomNormal [1024]string
   442  )
   443  
   444  func initAtof() {
   445  	atofOnce.Do(initAtofOnce)
   446  }
   447  
   448  func initAtofOnce() {
   449  	// Generate random inputs for tests and benchmarks
   450  	if testing.Short() {
   451  		atofRandomTests = make([]atofSimpleTest, 100)
   452  	} else {
   453  		atofRandomTests = make([]atofSimpleTest, 10000)
   454  	}
   455  	for i := range atofRandomTests {
   456  		n := uint64(rand.Uint32())<<32 | uint64(rand.Uint32())
   457  		x := math.Float64frombits(n)
   458  		s := FormatFloat(x, 'g', -1, 64)
   459  		atofRandomTests[i] = atofSimpleTest{x, s}
   460  	}
   461  
   462  	for i := range benchmarksRandomBits {
   463  		bits := uint64(rand.Uint32())<<32 | uint64(rand.Uint32())
   464  		x := math.Float64frombits(bits)
   465  		benchmarksRandomBits[i] = FormatFloat(x, 'g', -1, 64)
   466  	}
   467  
   468  	for i := range benchmarksRandomNormal {
   469  		x := rand.NormFloat64()
   470  		benchmarksRandomNormal[i] = FormatFloat(x, 'g', -1, 64)
   471  	}
   472  }
   473  
   474  func TestParseFloatPrefix(t *testing.T) {
   475  	for i := range atoftests {
   476  		test := &atoftests[i]
   477  		if test.err != nil {
   478  			continue
   479  		}
   480  		// Adding characters that do not extend a number should not invalidate it.
   481  		// Test a few. The "i" and "init" cases test that we accept "infi", "infinit"
   482  		// correctly as "inf" with suffix.
   483  		for _, suffix := range []string{" ", "q", "+", "-", "<", "=", ">", "(", ")", "i", "init"} {
   484  			in := test.in + suffix
   485  			_, n, err := parseFloatPrefix(in, 64)
   486  			if err != nil {
   487  				t.Errorf("ParseFloatPrefix(%q, 64): err = %v; want no error", in, err)
   488  			}
   489  			if n != len(test.in) {
   490  				t.Errorf("ParseFloatPrefix(%q, 64): n = %d; want %d", in, n, len(test.in))
   491  			}
   492  		}
   493  	}
   494  }
   495  
   496  func testAtof(t *testing.T, opt bool) {
   497  	initAtof()
   498  	oldopt := SetOptimize(opt)
   499  	for i := 0; i < len(atoftests); i++ {
   500  		test := &atoftests[i]
   501  		out, err := ParseFloat(test.in, 64)
   502  		outs := FormatFloat(out, 'g', -1, 64)
   503  		if outs != test.out || !reflect.DeepEqual(err, test.err) {
   504  			t.Errorf("ParseFloat(%v, 64) = %v, %v want %v, %v",
   505  				test.in, out, err, test.out, test.err)
   506  		}
   507  
   508  		if float64(float32(out)) == out {
   509  			out, err := ParseFloat(test.in, 32)
   510  			out32 := float32(out)
   511  			if float64(out32) != out {
   512  				t.Errorf("ParseFloat(%v, 32) = %v, not a float32 (closest is %v)", test.in, out, float64(out32))
   513  				continue
   514  			}
   515  			outs := FormatFloat(float64(out32), 'g', -1, 32)
   516  			if outs != test.out || !reflect.DeepEqual(err, test.err) {
   517  				t.Errorf("ParseFloat(%v, 32) = %v, %v want %v, %v  # %v",
   518  					test.in, out32, err, test.out, test.err, out)
   519  			}
   520  		}
   521  	}
   522  	for _, test := range atof32tests {
   523  		out, err := ParseFloat(test.in, 32)
   524  		out32 := float32(out)
   525  		if float64(out32) != out {
   526  			t.Errorf("ParseFloat(%v, 32) = %v, not a float32 (closest is %v)", test.in, out, float64(out32))
   527  			continue
   528  		}
   529  		outs := FormatFloat(float64(out32), 'g', -1, 32)
   530  		if outs != test.out || !reflect.DeepEqual(err, test.err) {
   531  			t.Errorf("ParseFloat(%v, 32) = %v, %v want %v, %v  # %v",
   532  				test.in, out32, err, test.out, test.err, out)
   533  		}
   534  	}
   535  	SetOptimize(oldopt)
   536  }
   537  
   538  func TestAtof(t *testing.T) { testAtof(t, true) }
   539  
   540  func TestAtofSlow(t *testing.T) { testAtof(t, false) }
   541  
   542  func TestAtofRandom(t *testing.T) {
   543  	initAtof()
   544  	for _, test := range atofRandomTests {
   545  		x, _ := ParseFloat(test.s, 64)
   546  		switch {
   547  		default:
   548  			t.Errorf("number %s badly parsed as %b (expected %b)", test.s, x, test.x)
   549  		case x == test.x:
   550  		case math.IsNaN(test.x) && math.IsNaN(x):
   551  		}
   552  	}
   553  	t.Logf("tested %d random numbers", len(atofRandomTests))
   554  }
   555  
   556  var roundTripCases = []struct {
   557  	f float64
   558  	s string
   559  }{
   560  	// Issue 2917.
   561  	// This test will break the optimized conversion if the
   562  	// FPU is using 80-bit registers instead of 64-bit registers,
   563  	// usually because the operating system initialized the
   564  	// thread with 80-bit precision and the Go runtime didn't
   565  	// fix the FP control word.
   566  	{8865794286000691 << 39, "4.87402195346389e+27"},
   567  	{8865794286000692 << 39, "4.8740219534638903e+27"},
   568  }
   569  
   570  func TestRoundTrip(t *testing.T) {
   571  	for _, tt := range roundTripCases {
   572  		old := SetOptimize(false)
   573  		s := FormatFloat(tt.f, 'g', -1, 64)
   574  		if s != tt.s {
   575  			t.Errorf("no-opt FormatFloat(%b) = %s, want %s", tt.f, s, tt.s)
   576  		}
   577  		f, err := ParseFloat(tt.s, 64)
   578  		if f != tt.f || err != nil {
   579  			t.Errorf("no-opt ParseFloat(%s) = %b, %v want %b, nil", tt.s, f, err, tt.f)
   580  		}
   581  		SetOptimize(true)
   582  		s = FormatFloat(tt.f, 'g', -1, 64)
   583  		if s != tt.s {
   584  			t.Errorf("opt FormatFloat(%b) = %s, want %s", tt.f, s, tt.s)
   585  		}
   586  		f, err = ParseFloat(tt.s, 64)
   587  		if f != tt.f || err != nil {
   588  			t.Errorf("opt ParseFloat(%s) = %b, %v want %b, nil", tt.s, f, err, tt.f)
   589  		}
   590  		SetOptimize(old)
   591  	}
   592  }
   593  
   594  // TestRoundTrip32 tries a fraction of all finite positive float32 values.
   595  func TestRoundTrip32(t *testing.T) {
   596  	step := uint32(997)
   597  	if testing.Short() {
   598  		step = 99991
   599  	}
   600  	count := 0
   601  	for i := uint32(0); i < 0xff<<23; i += step {
   602  		f := math.Float32frombits(i)
   603  		if i&1 == 1 {
   604  			f = -f // negative
   605  		}
   606  		s := FormatFloat(float64(f), 'g', -1, 32)
   607  
   608  		parsed, err := ParseFloat(s, 32)
   609  		parsed32 := float32(parsed)
   610  		switch {
   611  		case err != nil:
   612  			t.Errorf("ParseFloat(%q, 32) gave error %s", s, err)
   613  		case float64(parsed32) != parsed:
   614  			t.Errorf("ParseFloat(%q, 32) = %v, not a float32 (nearest is %v)", s, parsed, parsed32)
   615  		case parsed32 != f:
   616  			t.Errorf("ParseFloat(%q, 32) = %b (expected %b)", s, parsed32, f)
   617  		}
   618  		count++
   619  	}
   620  	t.Logf("tested %d float32's", count)
   621  }
   622  
   623  // Issue 42297: a lot of code in the wild accidentally calls ParseFloat(s, 10)
   624  // or ParseFloat(s, 0), so allow bitSize values other than 32 and 64.
   625  func TestParseFloatIncorrectBitSize(t *testing.T) {
   626  	const s = "1.5e308"
   627  	const want = 1.5e308
   628  
   629  	for _, bitSize := range []int{0, 10, 100, 128} {
   630  		f, err := ParseFloat(s, bitSize)
   631  		if err != nil {
   632  			t.Fatalf("ParseFloat(%q, %d) gave error %s", s, bitSize, err)
   633  		}
   634  		if f != want {
   635  			t.Fatalf("ParseFloat(%q, %d) = %g (expected %g)", s, bitSize, f, want)
   636  		}
   637  	}
   638  }
   639  
   640  func BenchmarkAtof64Decimal(b *testing.B) {
   641  	for i := 0; i < b.N; i++ {
   642  		ParseFloat("33909", 64)
   643  	}
   644  }
   645  
   646  func BenchmarkAtof64Float(b *testing.B) {
   647  	for i := 0; i < b.N; i++ {
   648  		ParseFloat("339.7784", 64)
   649  	}
   650  }
   651  
   652  func BenchmarkAtof64FloatExp(b *testing.B) {
   653  	for i := 0; i < b.N; i++ {
   654  		ParseFloat("-5.09e75", 64)
   655  	}
   656  }
   657  
   658  func BenchmarkAtof64Big(b *testing.B) {
   659  	for i := 0; i < b.N; i++ {
   660  		ParseFloat("123456789123456789123456789", 64)
   661  	}
   662  }
   663  
   664  func BenchmarkAtof64RandomBits(b *testing.B) {
   665  	initAtof()
   666  	b.ResetTimer()
   667  	for i := 0; i < b.N; i++ {
   668  		ParseFloat(benchmarksRandomBits[i%1024], 64)
   669  	}
   670  }
   671  
   672  func BenchmarkAtof64RandomFloats(b *testing.B) {
   673  	initAtof()
   674  	b.ResetTimer()
   675  	for i := 0; i < b.N; i++ {
   676  		ParseFloat(benchmarksRandomNormal[i%1024], 64)
   677  	}
   678  }
   679  
   680  func BenchmarkAtof64RandomLongFloats(b *testing.B) {
   681  	initAtof()
   682  	samples := make([]string, len(atofRandomTests))
   683  	for i, t := range atofRandomTests {
   684  		samples[i] = FormatFloat(t.x, 'g', 20, 64)
   685  	}
   686  	b.ResetTimer()
   687  	idx := 0
   688  	for i := 0; i < b.N; i++ {
   689  		ParseFloat(samples[idx], 64)
   690  		idx++
   691  		if idx == len(samples) {
   692  			idx = 0
   693  		}
   694  	}
   695  }
   696  
   697  func BenchmarkAtof32Decimal(b *testing.B) {
   698  	for i := 0; i < b.N; i++ {
   699  		ParseFloat("33909", 32)
   700  	}
   701  }
   702  
   703  func BenchmarkAtof32Float(b *testing.B) {
   704  	for i := 0; i < b.N; i++ {
   705  		ParseFloat("339.778", 32)
   706  	}
   707  }
   708  
   709  func BenchmarkAtof32FloatExp(b *testing.B) {
   710  	for i := 0; i < b.N; i++ {
   711  		ParseFloat("12.3456e32", 32)
   712  	}
   713  }
   714  
   715  func BenchmarkAtof32Random(b *testing.B) {
   716  	n := uint32(997)
   717  	var float32strings [4096]string
   718  	for i := range float32strings {
   719  		n = (99991*n + 42) % (0xff << 23)
   720  		float32strings[i] = FormatFloat(float64(math.Float32frombits(n)), 'g', -1, 32)
   721  	}
   722  	b.ResetTimer()
   723  	for i := 0; i < b.N; i++ {
   724  		ParseFloat(float32strings[i%4096], 32)
   725  	}
   726  }
   727  
   728  func BenchmarkAtof32RandomLong(b *testing.B) {
   729  	n := uint32(997)
   730  	var float32strings [4096]string
   731  	for i := range float32strings {
   732  		n = (99991*n + 42) % (0xff << 23)
   733  		float32strings[i] = FormatFloat(float64(math.Float32frombits(n)), 'g', 20, 32)
   734  	}
   735  	b.ResetTimer()
   736  	for i := 0; i < b.N; i++ {
   737  		ParseFloat(float32strings[i%4096], 32)
   738  	}
   739  }
   740  

View as plain text