123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /*
- 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 upgrade
- import (
- "os"
- "path/filepath"
- "strings"
- "testing"
- "github.com/pkg/errors"
- "k8s.io/kubernetes/cmd/kubeadm/app/constants"
- testutil "k8s.io/kubernetes/cmd/kubeadm/test"
- )
- func TestMoveFiles(t *testing.T) {
- tmpdir := testutil.SetupTempDir(t)
- defer os.RemoveAll(tmpdir)
- os.Chmod(tmpdir, 0766)
- certPath := filepath.Join(tmpdir, constants.APIServerCertName)
- certFile, err := os.OpenFile(certPath, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0666)
- if err != nil {
- t.Fatalf("Failed to create cert file %s: %v", certPath, err)
- }
- defer certFile.Close()
- keyPath := filepath.Join(tmpdir, constants.APIServerKeyName)
- keyFile, err := os.OpenFile(keyPath, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0666)
- if err != nil {
- t.Fatalf("Failed to create key file %s: %v", keyPath, err)
- }
- defer keyFile.Close()
- subDir := filepath.Join(tmpdir, "expired")
- if err := os.Mkdir(subDir, 0766); err != nil {
- t.Fatalf("Failed to create backup directory %s: %v", subDir, err)
- }
- filesToMove := map[string]string{
- filepath.Join(tmpdir, constants.APIServerCertName): filepath.Join(subDir, constants.APIServerCertName),
- filepath.Join(tmpdir, constants.APIServerKeyName): filepath.Join(subDir, constants.APIServerKeyName),
- }
- if err := moveFiles(filesToMove); err != nil {
- t.Fatalf("Failed to move files %v: %v", filesToMove, err)
- }
- }
- func TestRollbackFiles(t *testing.T) {
- tmpdir := testutil.SetupTempDir(t)
- defer os.RemoveAll(tmpdir)
- os.Chmod(tmpdir, 0766)
- subDir := filepath.Join(tmpdir, "expired")
- if err := os.Mkdir(subDir, 0766); err != nil {
- t.Fatalf("Failed to create backup directory %s: %v", subDir, err)
- }
- certPath := filepath.Join(subDir, constants.APIServerCertName)
- certFile, err := os.OpenFile(certPath, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0666)
- if err != nil {
- t.Fatalf("Failed to create cert file %s: %v", certPath, err)
- }
- defer certFile.Close()
- keyPath := filepath.Join(subDir, constants.APIServerKeyName)
- keyFile, err := os.OpenFile(keyPath, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0666)
- if err != nil {
- t.Fatalf("Failed to create key file %s: %v", keyPath, err)
- }
- defer keyFile.Close()
- filesToRollBack := map[string]string{
- filepath.Join(subDir, constants.APIServerCertName): filepath.Join(tmpdir, constants.APIServerCertName),
- filepath.Join(subDir, constants.APIServerKeyName): filepath.Join(tmpdir, constants.APIServerKeyName),
- }
- errString := "there are files need roll back"
- originalErr := errors.New(errString)
- err = rollbackFiles(filesToRollBack, originalErr)
- if err == nil {
- t.Fatalf("Expected error contains %q, got nil", errString)
- }
- if !strings.Contains(err.Error(), errString) {
- t.Fatalf("Expected error contains %q, got %v", errString, err)
- }
- }
|