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
|
package parth
import "testing"
func TestUnitFirstFloatFromString(t *testing.T) {
tests := []struct {
s string
want string
okWant bool
}{
{"/0.1", "0.1", true},
{"/0.2a", "0.2", true},
{"/aaaa1.3", "1.3", true},
{"/4", "4", true},
{"/5aaaa", "5", true},
{"/aaa6aa", "6", true},
{"/.7.aaaa", ".7", true},
{"/.8aa", ".8", true},
{"/-9", "-9", true},
{"/10-", "10", true},
{"/3.14e+11", "3.14e+11", true},
{"/3.14e.+12", "3.14", true},
{"/3.14e+.13", "3.14", true},
{"/3.14e+.13", "3.14", true},
{"/error", "", false},
{"/.", "", false},
}
for _, tt := range tests {
got, okGot := firstFloatFromString(tt.s)
if okGot != tt.okWant {
t.Errorf(gwxFmt, tt.s, okGot, tt.okWant)
continue
}
if got != tt.want {
t.Errorf(gwxFmt, tt.s, got, tt.want)
}
}
}
func TestUnitFirstIntFromString(t *testing.T) {
var tests = []struct {
s string
want string
okWant bool
}{
{"0.1", "0", true},
{"0.2a", "0", true},
{"aaaa1.3", "1", true},
{"4", "4", true},
{"5aaaa", "5", true},
{"aaa6aa", "6", true},
{".7.aaaa", "0", true},
{".8aa", "0", true},
{"-9", "-9", true},
{"10-", "10", true},
{"3.14e+11", "3", true},
{"3.14e.+12", "3", true},
{"3.14e+.13", "3", true},
{"18446744073709551615", "18446744073709551615", true},
{".", "", false},
{"error", "", false},
}
for _, tt := range tests {
got, okGot := firstIntFromString(tt.s)
if okGot != tt.okWant {
t.Errorf(gwxFmt, tt.s, okGot, tt.okWant)
continue
}
if got != tt.want {
t.Errorf(gwxFmt, tt.s, got, tt.want)
}
}
}
func TestUnitFirstUintFromString(t *testing.T) {
var tests = []struct {
s string
want string
okWant bool
}{
{"0.1", "0", true},
{"0.2a", "0", true},
{"aaaa1.3", "1", true},
{"4", "4", true},
{"5aaaa", "5", true},
{"aaa6aa", "6", true},
{".7.aaaa", "0", true},
{".8aa", "0", true},
{"-9", "9", true},
{"10-", "10", true},
{"3.14e+11", "3", true},
{"3.14e.+12", "3", true},
{"3.14e+.13", "3", true},
{"18446744073709551615", "18446744073709551615", true},
{".", "", false},
{"error", "", false},
}
for _, tt := range tests {
got, okGot := firstUintFromString(tt.s)
if okGot != tt.okWant {
t.Errorf(gwxFmt, tt.s, okGot, tt.okWant)
continue
}
if got != tt.want {
t.Errorf(gwxFmt, tt.s, got, tt.want)
}
}
}
|