-
Notifications
You must be signed in to change notification settings - Fork 0
/
gam_test.go
65 lines (58 loc) · 1.07 KB
/
gam_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
package main
import (
"io/ioutil"
"os"
"testing"
)
func TestCreateTmpAliasFile(t *testing.T) {
aliasFile = "/tmp/.gam_profile"
err := ioutil.WriteFile(aliasFile, []byte{}, 0644)
if err != nil {
t.Error(err)
}
}
func TestCreateAlias(t *testing.T) {
alias := alias{name: "foo", value: "bar"}
err := alias.persist()
if err != nil {
t.Error(err)
}
}
func TestReadAlias(t *testing.T) {
alias, err := readOne("foo")
if err != nil {
t.Error(err)
}
if alias.value != "bar" {
t.Error(`expected bar as alias value got`, alias.value)
}
}
func TestUpdateAlias(t *testing.T) {
alias := alias{name: "foo", value: "baz"}
err := alias.persist()
if err != nil {
t.Error(err)
}
}
func TestDeleteAlias(t *testing.T) {
alias := alias{name: "foo"}
err := alias.remove()
if err != nil {
t.Error(err)
}
}
func TestReadAll(t *testing.T) {
aliases, err := readAll()
if err != nil {
t.Error(err)
}
if len(aliases) > 0 {
t.Error("no any aliases expected")
}
}
func TestDeleteAliasFile(t *testing.T) {
err := os.Remove(aliasFile)
if err != nil {
t.Error(err)
}
}