230 строки
6.6 KiB
Go
230 строки
6.6 KiB
Go
/*
|
|
_____ _____ _____ ____ ______ _____ ------
|
|
| | | | | | | | | | | | |
|
|
| | | | | | | | | | | | |
|
|
| --- | | | | |-----| |---- | | |-----| |----- ------
|
|
| | | | | | | | | | | | |
|
|
| ____| |_____ | ____| | ____| | |_____| _____| |_____ |_____
|
|
|
|
|
|
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
|
|
|
Copyright © 2020-2024 Microsoft Corporation. All rights reserved.
|
|
Author : <blobfusedev@microsoft.com>
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE
|
|
*/
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/Azure/azure-storage-fuse/v2/common"
|
|
"github.com/Azure/azure-storage-fuse/v2/common/log"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
var confFileUnMntTest string
|
|
var configUnMountLoopback string = `
|
|
logging:
|
|
type: syslog
|
|
level: log_debug
|
|
#file-path: blobfuse2.log
|
|
default-working-dir: ./
|
|
components:
|
|
- libfuse
|
|
- loopbackfs
|
|
libfuse:
|
|
attribute-expiration-sec: 120
|
|
entry-expiration-sec: 60
|
|
loopbackfs:
|
|
`
|
|
|
|
var currentDir string
|
|
|
|
type unmountTestSuite struct {
|
|
suite.Suite
|
|
assert *assert.Assertions
|
|
}
|
|
|
|
func (suite *unmountTestSuite) SetupTest() {
|
|
suite.assert = assert.New(suite.T())
|
|
|
|
options = mountOptions{}
|
|
err := log.SetDefaultLogger("silent", common.LogConfig{Level: common.ELogLevel.LOG_DEBUG()})
|
|
if err != nil {
|
|
panic("Unable to set silent logger as default.")
|
|
}
|
|
|
|
}
|
|
|
|
func (suite *unmountTestSuite) cleanupTest() {
|
|
resetCLIFlags(*unmountCmd)
|
|
resetCLIFlags(*mountCmd)
|
|
resetCLIFlags(*rootCmd)
|
|
time.Sleep(2 * time.Second)
|
|
}
|
|
|
|
// mount failure test where the mount directory does not exists
|
|
func (suite *unmountTestSuite) TestUnmountCmd() {
|
|
defer suite.cleanupTest()
|
|
|
|
mountDirectory1, _ := os.MkdirTemp("", "TestUnMountTemp")
|
|
os.MkdirAll(mountDirectory1, 0777)
|
|
defer os.RemoveAll(mountDirectory1)
|
|
|
|
cmd := exec.Command("../blobfuse2", "mount", mountDirectory1, fmt.Sprintf("--config-file=%s", confFileUnMntTest))
|
|
_, err := cmd.Output()
|
|
suite.assert.Nil(err)
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
_, err = executeCommandC(rootCmd, "unmount", mountDirectory1)
|
|
suite.assert.Nil(err)
|
|
}
|
|
|
|
func (suite *unmountTestSuite) TestUnmountCmdFail() {
|
|
defer suite.cleanupTest()
|
|
|
|
mountDirectory2, _ := os.MkdirTemp("", "TestUnMountTemp")
|
|
os.MkdirAll(mountDirectory2, 0777)
|
|
defer os.RemoveAll(mountDirectory2)
|
|
|
|
cmd := exec.Command("../blobfuse2", "mount", mountDirectory2, fmt.Sprintf("--config-file=%s", confFileUnMntTest))
|
|
_, err := cmd.Output()
|
|
suite.assert.Nil(err)
|
|
|
|
time.Sleep(5 * time.Second)
|
|
err = os.Chdir(mountDirectory2)
|
|
suite.assert.Nil(err)
|
|
|
|
_, err = executeCommandC(rootCmd, "unmount", mountDirectory2)
|
|
suite.assert.NotNil(err)
|
|
|
|
err = os.Chdir(currentDir)
|
|
suite.assert.Nil(err)
|
|
_, err = executeCommandC(rootCmd, "unmount", mountDirectory2)
|
|
suite.assert.Nil(err)
|
|
}
|
|
|
|
func (suite *unmountTestSuite) TestUnmountCmdWildcard() {
|
|
defer suite.cleanupTest()
|
|
|
|
mountDirectory3, _ := os.MkdirTemp("", "TestUnMountTemp")
|
|
os.MkdirAll(mountDirectory3, 0777)
|
|
defer os.RemoveAll(mountDirectory3)
|
|
|
|
cmd := exec.Command("../blobfuse2", "mount", mountDirectory3, fmt.Sprintf("--config-file=%s", confFileUnMntTest))
|
|
_, err := cmd.Output()
|
|
suite.assert.Nil(err)
|
|
|
|
time.Sleep(5 * time.Second)
|
|
_, err = executeCommandC(rootCmd, "unmount", mountDirectory3+"*")
|
|
suite.assert.Nil(err)
|
|
}
|
|
|
|
func (suite *unmountTestSuite) TestUnmountCmdWildcardFail() {
|
|
defer suite.cleanupTest()
|
|
|
|
mountDirectory4, _ := os.MkdirTemp("", "TestUnMountTemp")
|
|
os.MkdirAll(mountDirectory4, 0777)
|
|
defer os.RemoveAll(mountDirectory4)
|
|
|
|
cmd := exec.Command("../blobfuse2", "mount", mountDirectory4, fmt.Sprintf("--config-file=%s", confFileUnMntTest))
|
|
_, err := cmd.Output()
|
|
suite.assert.Nil(err)
|
|
|
|
time.Sleep(5 * time.Second)
|
|
err = os.Chdir(mountDirectory4)
|
|
suite.assert.Nil(err)
|
|
|
|
_, err = executeCommandC(rootCmd, "unmount", mountDirectory4+"*")
|
|
suite.assert.NotNil(err)
|
|
if err != nil {
|
|
suite.assert.Contains(err.Error(), "failed to unmount")
|
|
}
|
|
|
|
err = os.Chdir(currentDir)
|
|
suite.assert.Nil(err)
|
|
|
|
_, err = executeCommandC(rootCmd, "unmount", mountDirectory4+"*")
|
|
suite.assert.Nil(err)
|
|
}
|
|
|
|
func (suite *unmountTestSuite) TestUnmountCmdValidArg() {
|
|
defer suite.cleanupTest()
|
|
|
|
mountDirectory5, _ := os.MkdirTemp("", "TestUnMountTemp")
|
|
os.MkdirAll(mountDirectory5, 0777)
|
|
defer os.RemoveAll(mountDirectory5)
|
|
|
|
cmd := exec.Command("../blobfuse2", "mount", mountDirectory5, fmt.Sprintf("--config-file=%s", confFileUnMntTest))
|
|
_, err := cmd.Output()
|
|
suite.assert.Nil(err)
|
|
|
|
time.Sleep(5 * time.Second)
|
|
lst, _ := unmountCmd.ValidArgsFunction(nil, nil, "")
|
|
suite.assert.NotEmpty(lst)
|
|
|
|
_, err = executeCommandC(rootCmd, "unmount", mountDirectory5+"*")
|
|
suite.assert.Nil(err)
|
|
|
|
lst, _ = unmountCmd.ValidArgsFunction(nil, nil, "abcd")
|
|
suite.assert.Empty(lst)
|
|
}
|
|
|
|
func TestUnMountCommand(t *testing.T) {
|
|
confFile, err := os.CreateTemp("", "conf*.yaml")
|
|
if err != nil {
|
|
t.Error("Failed to create config file")
|
|
}
|
|
|
|
currentDir, _ = os.Getwd()
|
|
tempDir, _ := os.MkdirTemp("", "TestUnMountTemp")
|
|
|
|
confFileUnMntTest = confFile.Name()
|
|
defer os.Remove(confFileUnMntTest)
|
|
|
|
_, err = confFile.WriteString(configUnMountLoopback)
|
|
if err != nil {
|
|
t.Error("Failed to write to config file")
|
|
}
|
|
|
|
_, err = confFile.WriteString(" path: " + tempDir + "\n")
|
|
if err != nil {
|
|
t.Error("Failed to write to config file")
|
|
}
|
|
|
|
confFile.Close()
|
|
|
|
err = os.MkdirAll(tempDir, 0777)
|
|
if err != nil {
|
|
t.Error("Failed to create loopback dir ", err.Error())
|
|
}
|
|
|
|
defer os.RemoveAll(tempDir)
|
|
suite.Run(t, new(unmountTestSuite))
|
|
}
|