-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathcommon_test.go
More file actions
106 lines (100 loc) · 2.99 KB
/
common_test.go
File metadata and controls
106 lines (100 loc) · 2.99 KB
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
101
102
103
104
105
106
/*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package common
import (
"os"
"reflect"
"testing"
)
func TestValidateImageName(t *testing.T) {
testCases := []struct {
name string
expectedErr string
}{
{name: "docker.io/sally/img:0.0.1", expectedErr: ""},
{name: "sally/img:0.0.1", expectedErr: ""},
{name: "img:0.0.1", expectedErr: "image name must have a dockerhub owner or private registry. Be sure to set FN_REGISTRY env var, pass in --registry or configure your context file"},
{name: "owner/img", expectedErr: "image name must have a tag"},
}
for _, c := range testCases {
t.Run(c.name, func(t *testing.T) {
errString := ""
if err := ValidateFullImageName(c.name); err != nil {
errString = err.Error()
}
if c.expectedErr != errString {
t.Fatalf("expected %s but got %s", c.expectedErr, errString)
}
})
}
}
func Test_proxyArgs(t *testing.T) {
tests := []struct {
name string
set []string
want []string
}{
{"empty", []string{}, []string{}},
{"populated", []string{"http_proxy", "https_proxy", "no_proxy", "foo"}, []string{
"-e", "http_proxy=value_of_http_proxy",
"-e", "https_proxy=value_of_https_proxy",
"-e", "no_proxy=value_of_no_proxy"}},
{"partial", []string{"http_proxy", "no_proxy", "foo"}, []string{
"-e", "http_proxy=value_of_http_proxy",
"-e", "no_proxy=value_of_no_proxy"}},
}
for _, tt := range tests {
old := map[string]string{
"http_proxy": "",
"https_proxy": "",
"no_proxy": "",
"foo": "",
}
for k, _ := range old {
old[k] = os.Getenv(k)
_ = os.Unsetenv(k)
}
t.Run(tt.name, func(t *testing.T) {
for _, k := range tt.set {
_ = os.Setenv(k, "value_of_"+k)
}
if got := proxyArgs(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("proxyArgs() = %v, want %v", got, tt.want)
}
})
for k, v := range old {
_ = os.Setenv(k, v)
}
}
}
func Test_addNamespace(t *testing.T) {
testCases := []struct {
image string
fullImageName string
}{
{image: "fnproject/go", fullImageName: ContainerRegistryNamespace + "fnproject/go"},
{image: "fnproject/dotnet", fullImageName: ContainerRegistryNamespace + "fnproject/dotnet"},
}
for _, c := range testCases {
t.Run(c.image, func(t *testing.T) {
imageName := AddContainerNamespace(c.image)
if imageName != c.fullImageName {
t.Fatalf("expected %s but got %s", c.fullImageName, imageName)
}
t.Logf("Output %s", imageName)
})
}
}