func Test_AddPodToVolume_Positive_NewPodNewVolume(t *testing.T) { … }
func Test_AddPodToVolume_Positive_ExistingPodExistingVolume(t *testing.T) { … }
func Test_AddPodToVolume_Positive_NamesForDifferentPodsAndDifferentVolumes(t *testing.T) { … }
func Test_DeletePodFromVolume_Positive_PodExistsVolumeExists(t *testing.T) { … }
func Test_MarkVolumesReportedInUse_Positive_NewPodNewVolume(t *testing.T) { … }
func Test_AddPodToVolume_WithEmptyDirSizeLimit(t *testing.T) { … }
func Test_AddPodToVolume_Positive_SELinuxNoRWOP(t *testing.T) { … }
func Test_AddPodToVolume_Positive_NoSELinuxPlugin(t *testing.T) { … }
func Test_AddPodToVolume_Positive_ExistingPodSameSELinuxRWOP(t *testing.T) { … }
func Test_AddPodToVolume_Negative_ExistingPodDifferentSELinuxRWOP(t *testing.T) { … }
func verifyVolumeExistsDsw(
t *testing.T, expectedVolumeName v1.UniqueVolumeName, expectedSELinuxContext string, dsw DesiredStateOfWorld) { … }
func verifyVolumeDoesntExist(
t *testing.T, expectedVolumeName v1.UniqueVolumeName, expectedSELinuxContext string, dsw DesiredStateOfWorld) { … }
func verifyVolumeExistsInVolumesToMount(
t *testing.T,
expectedVolumeName v1.UniqueVolumeName,
expectReportedInUse bool,
dsw DesiredStateOfWorld) { … }
func verifyVolumeDoesntExistInVolumesToMount(
t *testing.T, volumeToCheck v1.UniqueVolumeName, dsw DesiredStateOfWorld) { … }
func verifyPodExistsInVolumeDsw(
t *testing.T,
expectedPodName volumetypes.UniquePodName,
expectedVolumeName v1.UniqueVolumeName,
expectedSeLinuxContext string,
dsw DesiredStateOfWorld) { … }
func verifyPodDoesntExistInVolumeDsw(
t *testing.T,
expectedPodName volumetypes.UniquePodName,
expectedVolumeName v1.UniqueVolumeName,
expectedSeLinuxContext string,
dsw DesiredStateOfWorld) { … }
func verifyVolumeExistsWithSpecNameInVolumeDsw(
t *testing.T,
expectedPodName volumetypes.UniquePodName,
expectedVolumeSpecName string,
dsw DesiredStateOfWorld) { … }
func verifyVolumeDoesntExistWithSpecNameInVolumeDsw(
t *testing.T,
expectedPodName volumetypes.UniquePodName,
expectedVolumeSpecName string,
dsw DesiredStateOfWorld) { … }
func verifyDesiredSizeLimitInVolumeDsw(
t *testing.T,
expectedPodName volumetypes.UniquePodName,
expectedDesiredSizeMap map[string]*resource.Quantity,
dsw DesiredStateOfWorld) { … }