Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/ddc/alluxio/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,10 @@ func TestGetInitTierPathsEnv(t *testing.T) {
}
}

// TestGetMountRoot tests the function that retrieves the mount root directory.
// It checks if the function correctly returns the expected mount root path based on the environment variable MOUNT_ROOT.
// The test sets the MOUNT_ROOT environment variable to a specific path and verifies that the function returns the correct mount root path.revise twice.
// The expected mount root path is constructed by appending "/alluxio" to the value of MOUNT_ROOT.
func TestGetMountRoot(t *testing.T) {
tests := []struct {
name string
Expand Down
Loading