Only support SSL dynamic mode

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-08-13 17:14:55 -04:00
parent 333d9fd48d
commit 80bd481abb
No known key found for this signature in database
GPG key ID: 786136016A8BA02A
40 changed files with 415 additions and 709 deletions

View file

@ -19,6 +19,7 @@ package main
import (
"fmt"
"os"
"path/filepath"
"syscall"
"testing"
"time"
@ -28,8 +29,8 @@ import (
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/kubernetes/fake"
"k8s.io/ingress-nginx/internal/file"
"k8s.io/ingress-nginx/internal/ingress/controller"
"k8s.io/ingress-nginx/internal/nginx"
)
func TestCreateApiserverClient(t *testing.T) {
@ -39,6 +40,15 @@ func TestCreateApiserverClient(t *testing.T) {
}
}
func init() {
// the default value of nginx.TemplatePath assumes the template exists in
// the root filesystem and not in the rootfs directory
path, err := filepath.Abs(filepath.Join("../../rootfs/", nginx.TemplatePath))
if err == nil {
nginx.TemplatePath = path
}
}
func TestHandleSigterm(t *testing.T) {
clientSet := fake.NewSimpleClientset()
@ -77,12 +87,7 @@ func TestHandleSigterm(t *testing.T) {
}
conf.Client = clientSet
fs, err := file.NewFakeFS()
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
ngx := controller.NewNGINXController(conf, nil, fs)
ngx := controller.NewNGINXController(conf, nil)
go handleSigterm(ngx, func(code int) {
if code != 1 {