Skip to content

Commit

Permalink
rbd: added rbd info to validateRBDImageCount func
Browse files Browse the repository at this point in the history
Signed-off-by: Oded Viner <[email protected]>
  • Loading branch information
OdedViner committed Nov 3, 2024
1 parent a7959d4 commit 00ee8b1
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 2 deletions.
18 changes: 16 additions & 2 deletions e2e/rbd.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,26 @@ func validateRBDImageCount(f *framework.Framework, count int, pool string) {
framework.Failf("failed to list rbd images: %v", err)
}
if len(imageList) != count {
var imageDetails []string // To collect details for all images
for _, image := range imageList {
imgInfo, err := getImageInfo(f, image, pool)
if err != nil {
return
}
imgStatus, err := getImageStatus(f, image, pool)
if err != nil {
return
}
// Collecting image details for printing
imageDetails = append(imageDetails, fmt.Sprintf("Pool Name: %s, Image Name: %s, Img Info: %v, Img Status: %v", pool, image, imgInfo, imgStatus))
}
framework.Failf(
"backend images not matching kubernetes resource count,image count %d kubernetes resource count %d"+
"\nbackend image Info:\n %v",
"\nbackend image Info:\n %v\n images information and status%v",
len(imageList),
count,
imageList)
imageList,
strings.Join(imageDetails, "\n"))
}
}

Expand Down
35 changes: 35 additions & 0 deletions e2e/rbd_helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -1069,6 +1069,16 @@ type imageInfo struct {
ObjectSize int `json:"object_size"`
}

// imageStatus strongly typed JSON spec for image status.
type imageStatus struct {
Name string `json:"name"`
Pool string `json:"pool"`
Watchers int `json:"watchers"`
InUse bool `json:"in_use"` // Indicates if the image is currently in use.
Size int64 `json:"size"` // Total size of the image in bytes.
Format string `json:"format"` // Format of the image (e.g., raw, qcow2).
}

// getImageInfo queries rbd about the given image and returns its metadata, and returns
// error if provided image is not found.
func getImageInfo(f *framework.Framework, imageName, poolName string) (imageInfo, error) {
Expand All @@ -1094,6 +1104,31 @@ func getImageInfo(f *framework.Framework, imageName, poolName string) (imageInfo
return imgInfo, nil
}

// getImageStatus queries rbd about the given image and returns its metadata, and returns
// error if provided image is not found.
func getImageStatus(f *framework.Framework, imageName, poolName string) (imageStatus, error) {
// rbd --format=json status [image-spec | snap-spec]
var imgStatus imageStatus

stdOut, stdErr, err := execCommandInToolBoxPod(
f,
fmt.Sprintf("rbd status %s %s --format json", rbdOptions(poolName), imageName),
rookNamespace)
if err != nil {
return imgStatus, fmt.Errorf("failed to get rbd status: %w", err)
}
if stdErr != "" {
return imgStatus, fmt.Errorf("failed to get rbd status: %v", stdErr)
}
err = json.Unmarshal([]byte(stdOut), &imgStatus)
if err != nil {
return imgStatus, fmt.Errorf("unmarshal failed: %w. raw buffer response: %s",
err, stdOut)
}

return imgStatus, nil
}

// validateStripe validate the stripe count, stripe unit and object size of the
// image.
func validateStripe(f *framework.Framework,
Expand Down

0 comments on commit 00ee8b1

Please sign in to comment.