forked from brianvoe/gofakeit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
finance_test.go
114 lines (97 loc) · 1.92 KB
/
finance_test.go
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 gofakeit
import (
"fmt"
"testing"
)
// CUSIP Tests
func ExampleCusip() {
Seed(11)
fmt.Println(Cusip())
// Output: 64HHTI0T8
}
func ExampleFaker_Cusip() {
f := New(11)
fmt.Println(f.Cusip())
// Output: 64HHTI0T8
}
func TestCusip(t *testing.T) {
Seed(11)
cusip := Cusip()
if cusip == "" {
t.Error("Valid Cusips are not blank")
}
if len(cusip) != 9 {
t.Error("Valid Cusips are 9 characters in length")
}
if cusipChecksumDigit(cusip[:8]) != string(cusip[8]) {
t.Error("Generated Cusip has invalid checksum")
}
}
func TestCusipCheckDigit(t *testing.T) {
type test struct {
base string
want string
}
tests := []test{
{base: "03783310", want: "0"},
{base: "17275R10", want: "2"},
{base: "38259P50", want: "8"},
}
for _, tc := range tests {
digit := cusipChecksumDigit(tc.base)
if digit != tc.want {
t.Errorf("Expected check digit of %s, got %s", tc.want, digit)
}
}
}
func BenchmarkCusip(b *testing.B) {
for i := 0; i < b.N; i++ {
Cusip()
}
}
// ISIN Tests
func ExampleIsin() {
Seed(11)
fmt.Println(Isin())
// Output: TO4HHTI0T819
}
func ExampleFaker_Isin() {
f := New(11)
fmt.Println(f.Isin())
// Output: TO4HHTI0T819
}
func TestIsin(t *testing.T) {
Seed(11)
isin := Isin()
if isin == "" {
t.Error("Valid ISINs are not blank")
}
if len(isin) != 12 {
t.Error("Valid ISINs are 12 characters in length")
}
if isinChecksumDigit(isin[:11]) != string(isin[11]) {
t.Error("Generated ISIN has invalid check digit")
}
}
func TestIsinCheckDigit(t *testing.T) {
type test struct {
base string
want string
}
tests := []test{
{base: "US037833100", want: "5"},
{base: "GB000263494", want: "6"},
{base: "US000402625", want: "0"},
}
for _, tc := range tests {
digit := isinChecksumDigit(tc.base)
if digit != tc.want {
t.Errorf("Expected check digit of %s, got %s", tc.want, digit)
}
}
}
func BenchmarkIsin(b *testing.B) {
for i := 0; i < b.N; i++ {
Isin()
}
}