This repository was archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathlock_test.go
84 lines (71 loc) · 2.13 KB
/
lock_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
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package dep
import (
"encoding/hex"
"reflect"
"strings"
"testing"
"github.com/golang/dep/test"
"github.com/sdboyer/gps"
)
func TestReadLock(t *testing.T) {
h := test.NewHelper(t)
defer h.Cleanup()
_, err := readLock(h.GetTestFile("lock/error.json"))
if err == nil {
t.Error("Reading lock with invalid props should have caused error, but did not")
} else if !strings.Contains(err.Error(), "both a branch") {
t.Errorf("Unexpected error %q; expected multiple version error", err)
}
golden := "lock/golden.json"
l, err := readLock(h.GetTestFile(golden))
if err != nil {
t.Fatalf("Should have read Lock correctly, but got err %q", err)
}
b, _ := hex.DecodeString("2252a285ab27944a4d7adcba8dbd03980f59ba652f12db39fa93b927c345593e")
l2 := &Lock{
Memo: b,
P: []gps.LockedProject{
gps.NewLockedProject(
gps.ProjectIdentifier{ProjectRoot: gps.ProjectRoot("github.com/sdboyer/gps")},
gps.NewBranch("master").Is(gps.Revision("d05d5aca9f895d19e9265839bffeadd74a2d2ecb")),
[]string{"."},
),
},
}
if !reflect.DeepEqual(l, l2) {
t.Error("Valid lock did not parse as expected")
}
}
func TestWriteLock(t *testing.T) {
h := test.NewHelper(t)
defer h.Cleanup()
golden := "lock/golden.json"
lg := h.GetTestFileString(golden)
memo, _ := hex.DecodeString("2252a285ab27944a4d7adcba8dbd03980f59ba652f12db39fa93b927c345593e")
l := &Lock{
Memo: memo,
P: []gps.LockedProject{
gps.NewLockedProject(
gps.ProjectIdentifier{ProjectRoot: gps.ProjectRoot("github.com/sdboyer/gps")},
gps.NewBranch("master").Is(gps.Revision("d05d5aca9f895d19e9265839bffeadd74a2d2ecb")),
[]string{"."},
),
},
}
b, err := l.MarshalJSON()
if err != nil {
t.Fatalf("Error while marshaling valid lock to JSON: %q", err)
}
if string(b) != lg {
if *test.UpdateGolden {
if err = h.WriteTestFile(golden, string(b)); err != nil {
t.Fatal(err)
}
} else {
t.Errorf("Valid lock did not marshal to JSON as expected:\n\t(GOT): %s\n\t(WNT): %s", lg, string(b))
}
}
}