forked from paketo-buildpacks/go-mod-vendor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go_mod_parser_test.go
67 lines (52 loc) · 1.39 KB
/
go_mod_parser_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
package gomodvendor_test
import (
"os"
"testing"
gomodvendor "github.com/paketo-buildpacks/go-mod-vendor"
"github.com/sclevine/spec"
. "github.com/onsi/gomega"
)
func testGoModParser(t *testing.T, context spec.G, it spec.S) {
var (
Expect = NewWithT(t).Expect
path string
parser gomodvendor.GoModParser
)
it.Before(func() {
file, err := os.CreateTemp("", "go.mod")
Expect(err).NotTo(HaveOccurred())
defer file.Close()
_, err = file.WriteString(`module github.com/some-org/some-repo
go 1.15
require (
github.com/some/dependency v0.3.1
github.com/some-other/dependency v0.0.4
)
`)
Expect(err).NotTo(HaveOccurred())
path = file.Name()
parser = gomodvendor.NewGoModParser()
})
it.After(func() {
Expect(os.RemoveAll(path)).To(Succeed())
})
context("ParseVersion", func() {
it("parses the go version from a go.mod file", func() {
version, err := parser.ParseVersion(path)
Expect(err).NotTo(HaveOccurred())
Expect(version).To(Equal(">= 1.15"))
})
context("failure cases", func() {
context("when the go.mod cannot be opened", func() {
it.Before(func() {
Expect(os.Chmod(path, 0000)).To(Succeed())
})
it("returns an error", func() {
_, err := parser.ParseVersion(path)
Expect(err).To(MatchError(ContainSubstring("failed to parse go.mod:")))
Expect(err).To(MatchError(ContainSubstring("permission denied")))
})
})
})
})
}