rbd: add feature check to see if GroupSnapGetInfo is available

The go-ceph rbd package provides the GroupSnapGetInfo function, but it
may return ErrUnsupported when called. Returning this error after
advertising the support for VolumeGroupSnapshot seems ugly.

In order to advertise support for VolumeGroupSnapshot,
SupportsGroupSnapGetInfo() can be used, which detects the required C
function of librbd.

Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
Niels de Vos
2024-10-10 13:48:03 +02:00
committed by mergify[bot]
parent 81764deb5a
commit 3802dd2c2c
3 changed files with 138 additions and 0 deletions

View File

@ -0,0 +1,32 @@
/*
Copyright 2024 ceph-csi authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package features
import (
"testing"
)
func TestSupportsGroupSnapGetInfo(t *testing.T) {
t.Parallel()
supported, err := SupportsGroupSnapGetInfo()
if err != nil {
t.Errorf("failed to check support for GroupSnapGetInfo: %v", err)
}
t.Logf("GroupSnapGetInfo supported: %t", supported)
}