File: number_test.go

package info (click to toggle)
golang-github-dustin-go-humanize 0.0~git20151125.0.8929fe9-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 144 kB
  • ctags: 134
  • sloc: makefile: 2
file content (78 lines) | stat: -rw-r--r-- 2,196 bytes parent folder | download
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
package humanize

import (
	"math"
	"testing"
)

type TestStruct struct {
	name      string
	format    string
	num       float64
	formatted string
}

func TestFormatFloat(t *testing.T) {
	tests := []TestStruct{
		{"default", "", 12345.6789, "12,345.68"},
		{"#", "#", 12345.6789, "12345.678900000"},
		{"#.", "#.", 12345.6789, "12346"},
		{"#,#", "#,#", 12345.6789, "12345,7"},
		{"#,##", "#,##", 12345.6789, "12345,68"},
		{"#,###", "#,###", 12345.6789, "12345,679"},
		{"#,###.", "#,###.", 12345.6789, "12,346"},
		{"#,###.##", "#,###.##", 12345.6789, "12,345.68"},
		{"#,###.###", "#,###.###", 12345.6789, "12,345.679"},
		{"#,###.####", "#,###.####", 12345.6789, "12,345.6789"},
		{"#.###,######", "#.###,######", 12345.6789, "12.345,678900"},
		{"#\u202f###,##", "#\u202f###,##", 12345.6789, "12 345,68"},

		// special cases
		{"NaN", "#", math.NaN(), "NaN"},
		{"+Inf", "#", math.Inf(1), "Infinity"},
		{"-Inf", "#", math.Inf(-1), "-Infinity"},
		{"signStr <= -0.000000001", "", -0.000000002, "-0.00"},
		{"signStr = 0", "", 0, "0.00"},
		{"Format directive must start with +", "+000", 12345.6789, "+12345.678900000"},
	}

	for _, test := range tests {
		got := FormatFloat(test.format, test.num)
		if got != test.formatted {
			t.Errorf("On %v (%v, %v), got %v, wanted %v",
				test.name, test.format, test.num, got, test.formatted)
		}
	}
	// Test a single integer
	got := FormatInteger("#", 12345)
	if got != "12345.000000000" {
		t.Errorf("On %v (%v, %v), got %v, wanted %v",
			"integerTest", "#", 12345, got, "12345.000000000")
	}
	// Test the things that could panic
	panictests := []TestStruct{
		{"RenderFloat(): invalid positive sign directive", "-", 12345.6789, "12,345.68"},
		{"RenderFloat(): thousands separator directive must be followed by 3 digit-specifiers", "0.01", 12345.6789, "12,345.68"},
	}
	for _, test := range panictests {
		didPanic := false
		var message interface{}
		func() {

			defer func() {
				if message = recover(); message != nil {
					didPanic = true
				}
			}()

			// call the target function
			_ = FormatFloat(test.format, test.num)

		}()
		if didPanic != true {
			t.Errorf("On %v, should have panic and did not.",
				test.name)
		}
	}

}