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
11 changes: 11 additions & 0 deletions pkg/ddc/alluxio/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,17 @@ func TestGetFuseDaemonsetName(t *testing.T) {
}
}

// TestGetMountPoint tests the AlluxioEngine.getMountPoint method to ensure it correctly constructs
// the mount point path. The test verifies the path concatenation logic using configured MountRoot,
// namespace, and engine name parameters to validate the resulting filesystem path.
//
// Parameters:
// - t : *testing.T
// Testing framework handle for managing test state and reporting failures
//
// Returns:
// - None
// Failures are reported through t.Errorf
func TestGetMountPoint(t *testing.T) {
type fields struct {
name string
Expand Down
Loading