mount_test.go 4.6 KB
Newer Older
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
// +build integration

/*
Copyright 2016 The Kubernetes Authors 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 integration

import (
	"fmt"
	"io/ioutil"
	"os"
	"path/filepath"
26
	"runtime"
A
Aaron Prindle 已提交
27
	"strings"
28 29 30
	"testing"
	"time"

31
	"k8s.io/apimachinery/pkg/labels"
M
Matt Rickard 已提交
32
	pkgutil "k8s.io/minikube/pkg/util"
33 34 35 36 37
	"k8s.io/minikube/test/integration/util"
)

func testMounting(t *testing.T) {
	t.Parallel()
38 39 40
	if runtime.GOOS == "darwin" {
		t.Skip("mount tests disabled in darwin due to timeout (issue#3200)")
	}
A
Aaron Prindle 已提交
41 42 43
	if strings.Contains(*args, "--vm-driver=none") {
		t.Skip("skipping test for none driver as it does not need mount")
	}
44
	minikubeRunner := NewMinikubeRunner(t)
45 46 47

	tempDir, err := ioutil.TempDir("", "mounttest")
	if err != nil {
48
		t.Fatalf("Unexpected error while creating tempDir: %v", err)
49 50 51
	}
	defer os.RemoveAll(tempDir)

52
	mountCmd := fmt.Sprintf("mount %s %s:/mount-9p", minikubeRunner.MountArgs, tempDir)
53
	cmd, _ := minikubeRunner.RunDaemon(mountCmd)
54 55 56 57 58 59
	defer func() {
		err := cmd.Process.Kill()
		if err != nil {
			t.Logf("Failed to kill mount command: %v", err)
		}
	}()
60 61

	kubectlRunner := util.NewKubectlRunner(t)
62
	podName := "busybox-mount"
63 64 65 66 67 68 69 70 71
	podPath, _ := filepath.Abs("testdata/busybox-mount-test.yaml")

	// Write file in mounted dir from host
	expected := "test\n"
	files := []string{"fromhost", "fromhostremove"}
	for _, file := range files {
		path := filepath.Join(tempDir, file)
		err = ioutil.WriteFile(path, []byte(expected), 0644)
		if err != nil {
72
			t.Fatalf("Unexpected error while writing file %s: %v", path, err)
73 74
		}
	}
75 76 77

	// Create the pods we need outside the main test loop.
	setupTest := func() error {
78 79 80
		if _, err := kubectlRunner.RunCommand([]string{"create", "-f", podPath}); err != nil {
			return err
		}
81 82
		return nil
	}
T
Thomas Stromberg 已提交
83 84 85 86 87
	defer func() {
		if out, err := kubectlRunner.RunCommand([]string{"delete", "-f", podPath}); err != nil {
			t.Logf("delete -f %s failed: %v\noutput: %s\n", podPath, err, out)
		}
	}()
88

89
	if err := util.Retry(t, setupTest, 5*time.Second, 40); err != nil {
90 91 92
		t.Fatal("mountTest failed with error:", err)
	}

M
Matt Rickard 已提交
93
	client, err := pkgutil.GetClient()
94
	if err != nil {
95
		t.Fatalf("getting kubernetes client: %v", err)
96 97
	}
	selector := labels.SelectorFromSet(labels.Set(map[string]string{"integration-test": "busybox-mount"}))
M
Matt Rickard 已提交
98
	if err := pkgutil.WaitForPodsWithLabelRunning(client, "default", selector); err != nil {
99
		t.Fatalf("Error waiting for busybox mount pod to be up: %v", err)
100
	}
101

102
	mountTest := func() error {
103 104 105
		path := filepath.Join(tempDir, "frompod")
		out, err := ioutil.ReadFile(path)
		if err != nil {
106
			return err
107 108 109 110 111 112 113 114
		}
		// test that file written from pod can be read from host echo test > /mount-9p/frompod; in pod
		if string(out) != expected {
			t.Fatalf("Expected file %s to contain text %s, was %s.", path, expected, out)
		}

		// test that file written from host was read in by the pod via cat /mount-9p/fromhost;
		if out, err = kubectlRunner.RunCommand([]string{"logs", podName}); err != nil {
115
			return err
116 117 118 119 120
		}
		if string(out) != expected {
			t.Fatalf("Expected file %s to contain text %s, was %s.", path, expected, out)
		}

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
		// test file timestamps are correct
		files := []string{"fromhost", "frompod"}
		for _, file := range files {
			statCmd := fmt.Sprintf("stat /mount-9p/%s", file)
			statOutput, err := minikubeRunner.SSH(statCmd)
			if err != nil {
				t.Fatalf("%v", err)
			}

			if strings.Contains(statOutput, "Access: 1970-01-01") {
				t.Fatalf("Invalid access time\n%s", statOutput)
			}

			if strings.Contains(statOutput, "Modify: 1970-01-01") {
				t.Fatalf("Invalid modify time\n%s", statOutput)
			}
		}

139 140 141
		// test that fromhostremove was deleted by the pod from the mount via rm /mount-9p/fromhostremove
		path = filepath.Join(tempDir, "fromhostremove")
		if _, err := os.Stat(path); err == nil {
M
Matt Rickard 已提交
142
			t.Fatalf("Expected file %s to be removed", path)
143 144 145 146 147
		}

		// test that frompodremove can be deleted on the host
		path = filepath.Join(tempDir, "frompodremove")
		if err := os.Remove(path); err != nil {
148
			t.Fatalf("Unexpected error removing file %s: %v", path, err)
149 150 151 152
		}

		return nil
	}
153
	if err := util.Retry(t, mountTest, 5*time.Second, 40); err != nil {
154
		t.Fatalf("mountTest failed with error: %v", err)
155 156 157
	}

}