forked from zalando/go-keyring
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathkeyring_test.go
More file actions
98 lines (83 loc) · 2.27 KB
/
keyring_test.go
File metadata and controls
98 lines (83 loc) · 2.27 KB
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
package keyring
import "testing"
const (
service = "test-service"
user = "test-user"
password = "test-password"
)
// TestSet tests setting a user and password in the keyring.
func TestSet(t *testing.T) {
err := Set(service, user, password)
if err != nil {
t.Errorf("Should not fail, got: %s", err)
}
}
// TestGetMultiline tests getting a multi-line password from the keyring
func TestGetMultiLine(t *testing.T) {
multilinePassword := `this password
has multiple
lines and will be
encoded by some keyring implementiations
like osx`
err := Set(service, user, multilinePassword)
if err != nil {
t.Errorf("Should not fail, got: %s", err)
}
pw, err := Get(service, user)
if err != nil {
t.Errorf("Should not fail, got: %s", err)
}
if multilinePassword != pw {
t.Errorf("Expected password %s, got %s", multilinePassword, pw)
}
}
// TestGetSingleLineHex tests getting a single line hex string password from the keyring.
func TestGetSingleLineHex(t *testing.T) {
hexPassword := "abcdef123abcdef123"
err := Set(service, user, hexPassword)
if err != nil {
t.Errorf("Should not fail, got: %s", err)
}
pw, err := Get(service, user)
if err != nil {
t.Errorf("Should not fail, got: %s", err)
}
if hexPassword != pw {
t.Errorf("Expected password %s, got %s", hexPassword, pw)
}
}
// TestGet tests getting a password from the keyring.
func TestGet(t *testing.T) {
err := Set(service, user, password)
if err != nil {
t.Errorf("Should not fail, got: %s", err)
}
pw, err := Get(service, user)
if err != nil {
t.Errorf("Should not fail, got: %s", err)
}
if password != pw {
t.Errorf("Expected password %s, got %s", password, pw)
}
}
// TestGetNonExisting tests getting a secret not in the keyring.
func TestGetNonExisting(t *testing.T) {
_, err := Get(service, user+"fake")
if err != ErrNotFound {
t.Errorf("Expected error ErrNotFound, got %s", err)
}
}
// TestDelete tests deleting a secret from the keyring.
func TestDelete(t *testing.T) {
err := Delete(service, user)
if err != nil {
t.Errorf("Should not fail, got: %s", err)
}
}
// TestDeleteNonExisting tests deleting a secret not in the keyring.
func TestDeleteNonExisting(t *testing.T) {
err := Delete(service, user+"fake")
if err != ErrNotFound {
t.Errorf("Expected error ErrNotFound, got %s", err)
}
}