154 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			154 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2017 The Kubernetes Authors.
 | 
						|
 | 
						|
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 server
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/containerd/cri/pkg/config"
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestValidateStreamServer(t *testing.T) {
 | 
						|
	for desc, test := range map[string]struct {
 | 
						|
		*criService
 | 
						|
		tlsMode   streamListenerMode
 | 
						|
		expectErr bool
 | 
						|
	}{
 | 
						|
		"should pass with default withoutTLS": {
 | 
						|
			criService: &criService{
 | 
						|
				config: config.Config{
 | 
						|
					PluginConfig: config.DefaultConfig(),
 | 
						|
				},
 | 
						|
			},
 | 
						|
			tlsMode:   withoutTLS,
 | 
						|
			expectErr: false,
 | 
						|
		},
 | 
						|
		"should pass with x509KeyPairTLS": {
 | 
						|
			criService: &criService{
 | 
						|
				config: config.Config{
 | 
						|
					PluginConfig: config.PluginConfig{
 | 
						|
						EnableTLSStreaming: true,
 | 
						|
						X509KeyPairStreaming: config.X509KeyPairStreaming{
 | 
						|
							TLSKeyFile:  "non-empty",
 | 
						|
							TLSCertFile: "non-empty",
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
			tlsMode:   x509KeyPairTLS,
 | 
						|
			expectErr: false,
 | 
						|
		},
 | 
						|
		"should pass with selfSign": {
 | 
						|
			criService: &criService{
 | 
						|
				config: config.Config{
 | 
						|
					PluginConfig: config.PluginConfig{
 | 
						|
						EnableTLSStreaming: true,
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
			tlsMode:   selfSignTLS,
 | 
						|
			expectErr: false,
 | 
						|
		},
 | 
						|
		"should return error with X509 keypair but not EnableTLSStreaming": {
 | 
						|
			criService: &criService{
 | 
						|
				config: config.Config{
 | 
						|
					PluginConfig: config.PluginConfig{
 | 
						|
						EnableTLSStreaming: false,
 | 
						|
						X509KeyPairStreaming: config.X509KeyPairStreaming{
 | 
						|
							TLSKeyFile:  "non-empty",
 | 
						|
							TLSCertFile: "non-empty",
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
			tlsMode:   -1,
 | 
						|
			expectErr: true,
 | 
						|
		},
 | 
						|
		"should return error with X509 TLSCertFile empty": {
 | 
						|
			criService: &criService{
 | 
						|
				config: config.Config{
 | 
						|
					PluginConfig: config.PluginConfig{
 | 
						|
						EnableTLSStreaming: true,
 | 
						|
						X509KeyPairStreaming: config.X509KeyPairStreaming{
 | 
						|
							TLSKeyFile:  "non-empty",
 | 
						|
							TLSCertFile: "",
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
			tlsMode:   -1,
 | 
						|
			expectErr: true,
 | 
						|
		},
 | 
						|
		"should return error with X509 TLSKeyFile empty": {
 | 
						|
			criService: &criService{
 | 
						|
				config: config.Config{
 | 
						|
					PluginConfig: config.PluginConfig{
 | 
						|
						EnableTLSStreaming: true,
 | 
						|
						X509KeyPairStreaming: config.X509KeyPairStreaming{
 | 
						|
							TLSKeyFile:  "",
 | 
						|
							TLSCertFile: "non-empty",
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
			tlsMode:   -1,
 | 
						|
			expectErr: true,
 | 
						|
		},
 | 
						|
		"should return error without EnableTLSStreaming and only TLSCertFile set": {
 | 
						|
			criService: &criService{
 | 
						|
				config: config.Config{
 | 
						|
					PluginConfig: config.PluginConfig{
 | 
						|
						EnableTLSStreaming: false,
 | 
						|
						X509KeyPairStreaming: config.X509KeyPairStreaming{
 | 
						|
							TLSKeyFile:  "",
 | 
						|
							TLSCertFile: "non-empty",
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
			tlsMode:   -1,
 | 
						|
			expectErr: true,
 | 
						|
		},
 | 
						|
		"should return error without EnableTLSStreaming and only TLSKeyFile set": {
 | 
						|
			criService: &criService{
 | 
						|
				config: config.Config{
 | 
						|
					PluginConfig: config.PluginConfig{
 | 
						|
						EnableTLSStreaming: false,
 | 
						|
						X509KeyPairStreaming: config.X509KeyPairStreaming{
 | 
						|
							TLSKeyFile:  "non-empty",
 | 
						|
							TLSCertFile: "",
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
			tlsMode:   -1,
 | 
						|
			expectErr: true,
 | 
						|
		},
 | 
						|
	} {
 | 
						|
		t.Run(desc, func(t *testing.T) {
 | 
						|
			tlsMode, err := getStreamListenerMode(test.criService)
 | 
						|
			if test.expectErr {
 | 
						|
				assert.Error(t, err)
 | 
						|
				return
 | 
						|
			}
 | 
						|
			assert.NoError(t, err)
 | 
						|
			assert.Equal(t, test.tlsMode, tlsMode)
 | 
						|
		})
 | 
						|
	}
 | 
						|
}
 |