/* Copyright 2020 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 nfs import ( "fmt" "reflect" "testing" "k8s.io/utils/mount" ) func TestMount(t *testing.T) { targetTest := "./target_test" sourceTest := "./source_test" tests := []struct { desc string source string target string expectedErr error }{ { desc: "[Error] Mocked source error", source: "./error_mount_source", target: targetTest, expectedErr: fmt.Errorf("fake Mount: source error"), }, { desc: "[Error] Mocked target error", source: sourceTest, target: "./error_mount_target", expectedErr: fmt.Errorf("fake Mount: target error"), }, { desc: "[Success] Successful run", source: sourceTest, target: targetTest, expectedErr: nil, }, } d, err := getTestNodeServer() if err != nil { t.Errorf("failed to get test node server") } fakeMounter := &fakeMounter{} d.mounter = &mount.SafeFormatAndMount{ Interface: fakeMounter, } for _, test := range tests { err := d.mounter.Mount(test.source, test.target, "", nil) if !reflect.DeepEqual(err, test.expectedErr) { t.Errorf("Unexpected error: %v", err) } } } func TestMountSensitive(t *testing.T) { targetTest := "./target_test" sourceTest := "./source_test" tests := []struct { desc string source string target string expectedErr error }{ { desc: "[Error] Mocked source error", source: "./error_mount_sens_source", target: targetTest, expectedErr: fmt.Errorf("fake MountSensitive: source error"), }, { desc: "[Error] Mocked target error", source: sourceTest, target: "./error_mount_sens_target", expectedErr: fmt.Errorf("fake MountSensitive: target error"), }, { desc: "[Success] Successful run", source: sourceTest, target: targetTest, expectedErr: nil, }, } d, err := getTestNodeServer() if err != nil { t.Errorf("failed to get test node server") } fakeMounter := &fakeMounter{} d.mounter = &mount.SafeFormatAndMount{ Interface: fakeMounter, } for _, test := range tests { err := d.mounter.MountSensitive(test.source, test.target, "", nil, nil) if !reflect.DeepEqual(err, test.expectedErr) { t.Errorf("Unexpected error: %v", err) } } } func TestIsLikelyNotMountPoint(t *testing.T) { targetTest := "./target_test" tests := []struct { desc string file string expectedErr error }{ { desc: "[Error] Mocked file error", file: "./error_is_likely_target", expectedErr: fmt.Errorf("fake IsLikelyNotMountPoint: fake error"), }, {desc: "[Success] Successful run", file: targetTest, expectedErr: nil, }, { desc: "[Success] Successful run not a mount", file: "./false_is_likely_target", expectedErr: nil, }, } d, err := getTestNodeServer() if err != nil { t.Errorf("failed to get test node server") } fakeMounter := &fakeMounter{} d.mounter = &mount.SafeFormatAndMount{ Interface: fakeMounter, } for _, test := range tests { _, err := d.mounter.IsLikelyNotMountPoint(test.file) if !reflect.DeepEqual(err, test.expectedErr) { t.Errorf("Unexpected error: %v", err) } } }