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
99
100
|
package options
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_PlatformKey(t *testing.T) {
t.Run("Without variant", func(t *testing.T) {
assert.Equal(t, PlatformKey("linux", "amd64", ""), "linux/amd64")
})
t.Run("With variant", func(t *testing.T) {
assert.Equal(t, PlatformKey("linux", "arm", "v6"), "linux/arm/v6")
})
}
func Test_WantsPlatform(t *testing.T) {
opts := NewManifestOptions()
t.Run("Empty options", func(t *testing.T) {
assert.True(t, opts.WantsPlatform("linux", "arm", "v7"))
assert.True(t, opts.WantsPlatform("linux", "amd64", ""))
})
t.Run("Single platform", func(t *testing.T) {
opts = opts.WithPlatform("linux", "arm", "v7")
assert.True(t, opts.WantsPlatform("linux", "arm", "v7"))
})
t.Run("Platform appended and non-match", func(t *testing.T) {
opts = opts.WithPlatform("linux", "arm", "v8")
assert.True(t, opts.WantsPlatform("linux", "arm", "v7"))
assert.True(t, opts.WantsPlatform("linux", "arm", "v8"))
assert.False(t, opts.WantsPlatform("linux", "arm", "v6"))
assert.False(t, opts.WantsPlatform("linux", "arm", ""))
assert.False(t, opts.WantsPlatform("linux", "", ""))
assert.False(t, opts.WantsPlatform("linux", "amd64", "v7"))
assert.False(t, opts.WantsPlatform("linux", "amd64", ""))
assert.False(t, opts.WantsPlatform("darwin", "arm", "v7"))
assert.False(t, opts.WantsPlatform("darwin", "arm", ""))
})
t.Run("Platform lenient match", func(t *testing.T) {
opts := &ManifestOptions{}
opts = opts.WithPlatform("linux", "arm", "")
opts = opts.WithPlatform("linux", "arm", "v7")
assert.True(t, opts.WantsPlatform("linux", "arm", "v8"))
assert.True(t, opts.WantsPlatform("linux", "arm", "v7"))
assert.True(t, opts.WantsPlatform("linux", "arm", ""))
})
t.Run("Uninitialized options", func(t *testing.T) {
opts := &ManifestOptions{}
assert.True(t, opts.WantsPlatform("linux", "amd64", ""))
opts = (&ManifestOptions{}).WithPlatform("linux", "amd64", "")
assert.True(t, opts.WantsPlatform("linux", "amd64", ""))
})
}
func Test_WantsMetadata(t *testing.T) {
opts := NewManifestOptions()
t.Run("Empty options", func(t *testing.T) {
assert.False(t, opts.WantsMetadata())
})
t.Run("Wants metadata", func(t *testing.T) {
opts = opts.WithMetadata(true)
assert.True(t, opts.WantsMetadata())
})
t.Run("Does not want metadata", func(t *testing.T) {
opts = opts.WithMetadata(false)
assert.False(t, opts.WantsMetadata())
})
}
func Test_Platforms(t *testing.T) {
opts := NewManifestOptions()
t.Run("Empty platforms returns empty array", func(t *testing.T) {
ps := opts.Platforms()
assert.Len(t, ps, 0)
})
t.Run("Single platform without variant", func(t *testing.T) {
ps := opts.WithPlatform("linux", "amd64", "").Platforms()
require.Len(t, ps, 1)
assert.Equal(t, ps[0], PlatformKey("linux", "amd64", ""))
})
t.Run("Single platform with variant", func(t *testing.T) {
ps := opts.WithPlatform("linux", "arm", "v8").Platforms()
require.Len(t, ps, 2)
assert.Equal(t, ps[0], PlatformKey("linux", "amd64", ""))
assert.Equal(t, ps[1], PlatformKey("linux", "arm", "v8"))
})
}
func Test_WithLogger(t *testing.T) {
opts := NewManifestOptions()
logger := opts.Logger()
assert.NotNil(t, logger)
opts = opts.WithLogger(logger)
assert.Equal(t, logger, opts.Logger())
}
|