summaryrefslogtreecommitdiff
path: root/src/pkg/strconv/atof_test.go
blob: 30f1b05bab1c8066cd22a992770e6a5c494b4168 (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package strconv_test

import (
	"os"
	"reflect"
	. "strconv"
	"testing"
)

type atofTest struct {
	in  string
	out string
	err os.Error
}

var atoftests = []atofTest{
	atofTest{"", "0", os.EINVAL},
	atofTest{"1", "1", nil},
	atofTest{"+1", "1", nil},
	atofTest{"1x", "0", os.EINVAL},
	atofTest{"1.1.", "0", os.EINVAL},
	atofTest{"1e23", "1e+23", nil},
	atofTest{"100000000000000000000000", "1e+23", nil},
	atofTest{"1e-100", "1e-100", nil},
	atofTest{"123456700", "1.234567e+08", nil},
	atofTest{"99999999999999974834176", "9.999999999999997e+22", nil},
	atofTest{"100000000000000000000001", "1.0000000000000001e+23", nil},
	atofTest{"100000000000000008388608", "1.0000000000000001e+23", nil},
	atofTest{"100000000000000016777215", "1.0000000000000001e+23", nil},
	atofTest{"100000000000000016777216", "1.0000000000000003e+23", nil},
	atofTest{"-1", "-1", nil},
	atofTest{"-0", "-0", nil},
	atofTest{"1e-20", "1e-20", nil},
	atofTest{"625e-3", "0.625", nil},

	// largest float64
	atofTest{"1.7976931348623157e308", "1.7976931348623157e+308", nil},
	atofTest{"-1.7976931348623157e308", "-1.7976931348623157e+308", nil},
	// next float64 - too large
	atofTest{"1.7976931348623159e308", "+Inf", os.ERANGE},
	atofTest{"-1.7976931348623159e308", "-Inf", os.ERANGE},
	// the border is ...158079
	// borderline - okay
	atofTest{"1.7976931348623158e308", "1.7976931348623157e+308", nil},
	atofTest{"-1.7976931348623158e308", "-1.7976931348623157e+308", nil},
	// borderline - too large
	atofTest{"1.797693134862315808e308", "+Inf", os.ERANGE},
	atofTest{"-1.797693134862315808e308", "-Inf", os.ERANGE},

	// a little too large
	atofTest{"1e308", "1e+308", nil},
	atofTest{"2e308", "+Inf", os.ERANGE},
	atofTest{"1e309", "+Inf", os.ERANGE},

	// way too large
	atofTest{"1e310", "+Inf", os.ERANGE},
	atofTest{"-1e310", "-Inf", os.ERANGE},
	atofTest{"1e400", "+Inf", os.ERANGE},
	atofTest{"-1e400", "-Inf", os.ERANGE},
	atofTest{"1e400000", "+Inf", os.ERANGE},
	atofTest{"-1e400000", "-Inf", os.ERANGE},

	// denormalized
	atofTest{"1e-305", "1e-305", nil},
	atofTest{"1e-306", "1e-306", nil},
	atofTest{"1e-307", "1e-307", nil},
	atofTest{"1e-308", "1e-308", nil},
	atofTest{"1e-309", "1e-309", nil},
	atofTest{"1e-310", "1e-310", nil},
	atofTest{"1e-322", "1e-322", nil},
	// smallest denormal
	atofTest{"5e-324", "5e-324", nil},
	// too small
	atofTest{"4e-324", "0", nil},
	// way too small
	atofTest{"1e-350", "0", nil},
	atofTest{"1e-400000", "0", nil},

	// try to overflow exponent
	atofTest{"1e-4294967296", "0", nil},
	atofTest{"1e+4294967296", "+Inf", os.ERANGE},
	atofTest{"1e-18446744073709551616", "0", nil},
	atofTest{"1e+18446744073709551616", "+Inf", os.ERANGE},

	// Parse errors
	atofTest{"1e", "0", os.EINVAL},
	atofTest{"1e-", "0", os.EINVAL},
	atofTest{".e-1", "0", os.EINVAL},
}

func init() {
	// The atof routines return NumErrors wrapping
	// the error and the string.  Convert the table above.
	for i := range atoftests {
		test := &atoftests[i]
		if test.err != nil {
			test.err = &NumError{test.in, test.err}
		}
	}
}

func testAtof(t *testing.T, opt bool) {
	oldopt := SetOptimize(opt)
	for i := 0; i < len(atoftests); i++ {
		test := &atoftests[i]
		out, err := Atof64(test.in)
		outs := Ftoa64(out, 'g', -1)
		if outs != test.out || !reflect.DeepEqual(err, test.err) {
			t.Errorf("Atof64(%v) = %v, %v want %v, %v\n",
				test.in, out, err, test.out, test.err)
		}

		out, err = AtofN(test.in, 64)
		outs = FtoaN(out, 'g', -1, 64)
		if outs != test.out || !reflect.DeepEqual(err, test.err) {
			t.Errorf("AtofN(%v, 64) = %v, %v want %v, %v\n",
				test.in, out, err, test.out, test.err)
		}

		if float64(float32(out)) == out {
			out32, err := Atof32(test.in)
			outs := Ftoa32(out32, 'g', -1)
			if outs != test.out || !reflect.DeepEqual(err, test.err) {
				t.Errorf("Atof32(%v) = %v, %v want %v, %v  # %v\n",
					test.in, out32, err, test.out, test.err, out)
			}

			out, err := AtofN(test.in, 32)
			out32 = float32(out)
			outs = FtoaN(float64(out32), 'g', -1, 32)
			if outs != test.out || !reflect.DeepEqual(err, test.err) {
				t.Errorf("AtofN(%v, 32) = %v, %v want %v, %v  # %v\n",
					test.in, out32, err, test.out, test.err, out)
			}
		}

		if FloatSize == 64 || float64(float32(out)) == out {
			outf, err := Atof(test.in)
			outs := Ftoa(outf, 'g', -1)
			if outs != test.out || !reflect.DeepEqual(err, test.err) {
				t.Errorf("Ftoa(%v) = %v, %v want %v, %v  # %v\n",
					test.in, outf, err, test.out, test.err, out)
			}
		}
	}
	SetOptimize(oldopt)
}

func TestAtof(t *testing.T) { testAtof(t, true) }

func TestAtofSlow(t *testing.T) { testAtof(t, false) }

func BenchmarkAtofDecimal(b *testing.B) {
	for i := 0; i < b.N; i++ {
		Atof("33909")
	}
}

func BenchmarkAtofFloat(b *testing.B) {
	for i := 0; i < b.N; i++ {
		Atof("339.7784")
	}
}

func BenchmarkAtofFloatExp(b *testing.B) {
	for i := 0; i < b.N; i++ {
		Atof("-5.09e75")
	}
}

func BenchmarkAtofBig(b *testing.B) {
	for i := 0; i < b.N; i++ {
		Atof("123456789123456789123456789")
	}
}