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/transform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,10 @@ func TestTransformPodMetadata(t *testing.T) {
}
}

// TestGetMediumTypeFromVolumeSource verifies the logic for determining storage medium type
// from Kubernetes volume sources in AlluxioEngine. The test validates:
// 1. Default medium type is used when no specific volume configuration exists
// 2. Explicit medium type from EmptyDir volume configuration takes precedence over default
func TestGetMediumTypeFromVolumeSource(t *testing.T) {
engine := &AlluxioEngine{Log: fake.NullLogger()}

Expand Down
Loading