|
| 1 | +/* |
| 2 | +Copyright 2014 The Kubernetes Authors. |
| 3 | +
|
| 4 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +you may not use this file except in compliance with the License. |
| 6 | +You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | +Unless required by applicable law or agreed to in writing, software |
| 11 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +See the License for the specific language governing permissions and |
| 14 | +limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package clientcmd |
| 18 | + |
| 19 | +import ( |
| 20 | + "fmt" |
| 21 | + "testing" |
| 22 | + |
| 23 | + "k8s.io/kubernetes/pkg/client/restclient" |
| 24 | + clientcmdapi "k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api" |
| 25 | +) |
| 26 | + |
| 27 | +type testLoader struct { |
| 28 | + ClientConfigLoader |
| 29 | + |
| 30 | + called bool |
| 31 | + config *clientcmdapi.Config |
| 32 | + err error |
| 33 | +} |
| 34 | + |
| 35 | +func (l *testLoader) Load() (*clientcmdapi.Config, error) { |
| 36 | + l.called = true |
| 37 | + return l.config, l.err |
| 38 | +} |
| 39 | + |
| 40 | +type testClientConfig struct { |
| 41 | + config *restclient.Config |
| 42 | + err error |
| 43 | +} |
| 44 | + |
| 45 | +func (c *testClientConfig) RawConfig() (clientcmdapi.Config, error) { |
| 46 | + return clientcmdapi.Config{}, fmt.Errorf("unexpected call") |
| 47 | +} |
| 48 | +func (c *testClientConfig) ClientConfig() (*restclient.Config, error) { |
| 49 | + return c.config, c.err |
| 50 | +} |
| 51 | +func (c *testClientConfig) Namespace() (string, bool, error) { |
| 52 | + return "", false, fmt.Errorf("unexpected call") |
| 53 | +} |
| 54 | +func (c *testClientConfig) ConfigAccess() ConfigAccess { |
| 55 | + return nil |
| 56 | +} |
| 57 | + |
| 58 | +type testICC struct { |
| 59 | + testClientConfig |
| 60 | + |
| 61 | + possible bool |
| 62 | + called bool |
| 63 | +} |
| 64 | + |
| 65 | +func (icc *testICC) Possible() bool { |
| 66 | + icc.called = true |
| 67 | + return icc.possible |
| 68 | +} |
| 69 | + |
| 70 | +func TestInClusterConfig(t *testing.T) { |
| 71 | + // override direct client config for this run |
| 72 | + originalDefault := DefaultClientConfig |
| 73 | + defer func() { |
| 74 | + DefaultClientConfig = originalDefault |
| 75 | + }() |
| 76 | + |
| 77 | + baseDefault := &DirectClientConfig{ |
| 78 | + overrides: &ConfigOverrides{}, |
| 79 | + } |
| 80 | + default1 := &DirectClientConfig{ |
| 81 | + config: *createValidTestConfig(), |
| 82 | + contextName: "clean", |
| 83 | + overrides: &ConfigOverrides{}, |
| 84 | + } |
| 85 | + config1, err := default1.ClientConfig() |
| 86 | + if err != nil { |
| 87 | + t.Fatal(err) |
| 88 | + } |
| 89 | + config2 := &restclient.Config{Host: "config2"} |
| 90 | + err1 := fmt.Errorf("unique error") |
| 91 | + |
| 92 | + testCases := map[string]struct { |
| 93 | + clientConfig *testClientConfig |
| 94 | + icc *testICC |
| 95 | + defaultConfig *DirectClientConfig |
| 96 | + |
| 97 | + checkedICC bool |
| 98 | + result *restclient.Config |
| 99 | + err error |
| 100 | + }{ |
| 101 | + "in-cluster checked on other error": { |
| 102 | + clientConfig: &testClientConfig{err: ErrEmptyConfig}, |
| 103 | + icc: &testICC{}, |
| 104 | + |
| 105 | + checkedICC: true, |
| 106 | + result: nil, |
| 107 | + err: ErrEmptyConfig, |
| 108 | + }, |
| 109 | + |
| 110 | + "in-cluster not checked on non-empty error": { |
| 111 | + clientConfig: &testClientConfig{err: ErrEmptyCluster}, |
| 112 | + icc: &testICC{}, |
| 113 | + |
| 114 | + checkedICC: false, |
| 115 | + result: nil, |
| 116 | + err: ErrEmptyCluster, |
| 117 | + }, |
| 118 | + |
| 119 | + "in-cluster checked when config is default": { |
| 120 | + defaultConfig: default1, |
| 121 | + clientConfig: &testClientConfig{config: config1}, |
| 122 | + icc: &testICC{}, |
| 123 | + |
| 124 | + checkedICC: true, |
| 125 | + result: config1, |
| 126 | + err: nil, |
| 127 | + }, |
| 128 | + |
| 129 | + "in-cluster not checked when config is not equal to default": { |
| 130 | + defaultConfig: default1, |
| 131 | + clientConfig: &testClientConfig{config: config2}, |
| 132 | + icc: &testICC{}, |
| 133 | + |
| 134 | + checkedICC: false, |
| 135 | + result: config2, |
| 136 | + err: nil, |
| 137 | + }, |
| 138 | + |
| 139 | + "in-cluster checked when config is not equal to default and error is empty": { |
| 140 | + clientConfig: &testClientConfig{config: config2, err: ErrEmptyConfig}, |
| 141 | + icc: &testICC{}, |
| 142 | + |
| 143 | + checkedICC: true, |
| 144 | + result: config2, |
| 145 | + err: ErrEmptyConfig, |
| 146 | + }, |
| 147 | + |
| 148 | + "in-cluster error returned when config is empty": { |
| 149 | + clientConfig: &testClientConfig{err: ErrEmptyConfig}, |
| 150 | + icc: &testICC{ |
| 151 | + possible: true, |
| 152 | + testClientConfig: testClientConfig{ |
| 153 | + err: err1, |
| 154 | + }, |
| 155 | + }, |
| 156 | + |
| 157 | + checkedICC: true, |
| 158 | + result: nil, |
| 159 | + err: err1, |
| 160 | + }, |
| 161 | + |
| 162 | + "in-cluster config returned when config is empty": { |
| 163 | + clientConfig: &testClientConfig{err: ErrEmptyConfig}, |
| 164 | + icc: &testICC{ |
| 165 | + possible: true, |
| 166 | + testClientConfig: testClientConfig{ |
| 167 | + config: config2, |
| 168 | + }, |
| 169 | + }, |
| 170 | + |
| 171 | + checkedICC: true, |
| 172 | + result: config2, |
| 173 | + err: nil, |
| 174 | + }, |
| 175 | + } |
| 176 | + |
| 177 | + for name, test := range testCases { |
| 178 | + if test.defaultConfig != nil { |
| 179 | + DefaultClientConfig = *test.defaultConfig |
| 180 | + } else { |
| 181 | + DefaultClientConfig = *baseDefault |
| 182 | + } |
| 183 | + c := &DeferredLoadingClientConfig{icc: test.icc} |
| 184 | + c.clientConfig = test.clientConfig |
| 185 | + |
| 186 | + cfg, err := c.ClientConfig() |
| 187 | + if test.icc.called != test.checkedICC { |
| 188 | + t.Errorf("%s: unexpected in-cluster-config call %t", name, test.icc.called) |
| 189 | + } |
| 190 | + if err != test.err || cfg != test.result { |
| 191 | + t.Errorf("%s: unexpected result: %v %#v", name, err, cfg) |
| 192 | + } |
| 193 | + } |
| 194 | +} |
0 commit comments