-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_for_factory_and_set_test.go
70 lines (64 loc) · 1.33 KB
/
map_for_factory_and_set_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
package main
import (
"fmt"
"testing"
)
type Set map[int]bool
type Factory struct {
m map[string]func(op int) int
}
func (f Factory) GetFunc(fn string) (func(int) int, error) {
v, ok := f.m[fn]
if !ok {
return nil, fmt.Errorf("no func found: %s\n", fn)
}
return v, nil
}
func TestMapForFuncFactory(t *testing.T) {
f := Factory{
m: map[string]func(op int) int{
"oneTimes": func(op int) int { return op },
"twoTimes": func(op int) int { return op * 2 },
"threeTimes": func(op int) int { return op * 3 },
},
}
oneTimes, twoTimes, threeTimes := "oneTimes", "twoTimes", "threeTimes"
fn, err := f.GetFunc(oneTimes)
if err != nil {
t.Log(err)
}
fmt.Println(fn(2))
fn, err = f.GetFunc(twoTimes)
if err != nil {
t.Log(err)
}
fmt.Println(fn(2))
fn, err = f.GetFunc(threeTimes)
if err != nil {
t.Log(err)
}
fmt.Println(fn(2))
}
func TestMapForset(t *testing.T) {
// use map[type]bool as set
// set := map[int]bool{}
set := Set{}
set[1] = true // create or update
n := 1
if set[n] {
t.Logf("%d exist in set: %v\n", n, set)
}
n = 3
if set[n] { // get
t.Logf("%d exist in set: %v\n", n, set)
} else {
t.Logf("%d doesn't exist in set: %v\n", n, set)
}
n = 1
delete(set, n) // delete
if set[n] {
t.Logf("%d exist in set: %v\n", n, set)
} else {
t.Logf("%d doesn't exist in set: %v\n", n, set)
}
}