-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathlist_test.go
49 lines (41 loc) · 959 Bytes
/
list_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
package main
import (
"bytes"
"testing"
"github.com/miquella/vaulted/lib"
)
func TestList(t *testing.T) {
store := NewTestStore()
store.Vaults["one"] = &vaulted.Vault{}
store.Vaults["two"] = &vaulted.Vault{}
output := CaptureStdout(func() {
l := List{}
err := l.Run(store)
if err != nil {
t.Fatal(err)
}
})
expected := []byte("one\ntwo\n")
if bytes.Compare(output, expected) != 0 {
t.Fatalf("Expected:\n%s\nGot:\n%s", expected, output)
}
}
func TestListWithActive(t *testing.T) {
store := NewTestStore()
store.Vaults["first"] = &vaulted.Vault{}
store.Vaults["second"] = &vaulted.Vault{}
store.Vaults["third"] = &vaulted.Vault{}
output := CaptureStdout(func() {
l := List{
Active: "second",
}
err := l.Run(store)
if err != nil {
t.Fatal(err)
}
})
expected := []byte("first\nsecond (active)\nthird\n")
if bytes.Compare(output, expected) != 0 {
t.Fatalf("Expected:\n%s\nGot:\n%s", expected, output)
}
}