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
72 lines (62 loc) · 1.99 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
// 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)
_, err := readLock(h.GetTestFileReader("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)
}
l, err := readLock(h.GetTestFileReader("lock/golden.json"))
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)
lg := h.GetTestFileString("lock/golden.json")
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 exp, err := test.AreEqualJSON(string(b), lg); !exp {
h.Must(err)
t.Errorf("Valid lock did not marshal to JSON as expected:\n\t(GOT): %s\n\t(WNT): %s", string(b), lg)
}
}