-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add functions to work with devlink dev parameters
Signed-off-by: Yury Kulazhenkov <[email protected]>
- Loading branch information
1 parent
7251d38
commit f5d2e2c
Showing
8 changed files
with
385 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
package network | ||
|
||
import ( | ||
"fmt" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
"github.com/vishvananda/netlink" | ||
"github.com/vishvananda/netlink/nl" | ||
|
||
"github.com/golang/mock/gomock" | ||
|
||
hostMockPkg "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/helper/mock" | ||
dputilsMockPkg "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/host/internal/lib/dputils/mock" | ||
netlinkMockPkg "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/host/internal/lib/netlink/mock" | ||
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/host/types" | ||
) | ||
|
||
func getDevlinkParam(t uint8, value interface{}) *netlink.DevlinkParam { | ||
return &netlink.DevlinkParam{ | ||
Name: "test_param", | ||
Type: t, | ||
Values: []netlink.DevlinkParamValue{ | ||
{Data: value, CMODE: nl.DEVLINK_PARAM_CMODE_DRIVERINIT}}, | ||
} | ||
} | ||
|
||
var _ = Describe("Network", func() { | ||
var ( | ||
n types.NetworkInterface | ||
netlinkLibMock *netlinkMockPkg.MockNetlinkLib | ||
dputilsLibMock *dputilsMockPkg.MockDPUtilsLib | ||
hostMock *hostMockPkg.MockHostHelpersInterface | ||
|
||
testCtrl *gomock.Controller | ||
testErr = fmt.Errorf("test") | ||
) | ||
BeforeEach(func() { | ||
testCtrl = gomock.NewController(GinkgoT()) | ||
netlinkLibMock = netlinkMockPkg.NewMockNetlinkLib(testCtrl) | ||
dputilsLibMock = dputilsMockPkg.NewMockDPUtilsLib(testCtrl) | ||
hostMock = hostMockPkg.NewMockHostHelpersInterface(testCtrl) | ||
|
||
n = New(hostMock, dputilsLibMock, netlinkLibMock) | ||
}) | ||
|
||
AfterEach(func() { | ||
testCtrl.Finish() | ||
}) | ||
Context("GetDevlinkDeviceParam", func() { | ||
It("get - string", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_STRING, "test_value"), nil) | ||
result, err := n.GetDevlinkDeviceParam("0000:d8:00.1", "param_name") | ||
Expect(err).NotTo(HaveOccurred()) | ||
Expect(result).To(Equal("test_value")) | ||
}) | ||
It("get - uint8", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_U8, uint8(8)), nil) | ||
result, err := n.GetDevlinkDeviceParam("0000:d8:00.1", "param_name") | ||
Expect(err).NotTo(HaveOccurred()) | ||
Expect(result).To(Equal("8")) | ||
}) | ||
It("get - uint16", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_U16, uint16(16)), nil) | ||
result, err := n.GetDevlinkDeviceParam("0000:d8:00.1", "param_name") | ||
Expect(err).NotTo(HaveOccurred()) | ||
Expect(result).To(Equal("16")) | ||
}) | ||
It("get - uint32", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_U32, uint32(32)), nil) | ||
result, err := n.GetDevlinkDeviceParam("0000:d8:00.1", "param_name") | ||
Expect(err).NotTo(HaveOccurred()) | ||
Expect(result).To(Equal("32")) | ||
}) | ||
It("get - bool", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_BOOL, false), nil) | ||
result, err := n.GetDevlinkDeviceParam("0000:d8:00.1", "param_name") | ||
Expect(err).NotTo(HaveOccurred()) | ||
Expect(result).To(Equal("false")) | ||
}) | ||
It("failed", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return(nil, testErr) | ||
_, err := n.GetDevlinkDeviceParam("0000:d8:00.1", "param_name") | ||
Expect(err).To(HaveOccurred()) | ||
}) | ||
}) | ||
Context("SetDevlinkDeviceParam", func() { | ||
It("set - string", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_STRING, "test_value"), nil) | ||
netlinkLibMock.EXPECT().DevlinkSetDeviceParam("pci", "0000:d8:00.1", "param_name", | ||
uint8(nl.DEVLINK_PARAM_CMODE_DRIVERINIT), "test_value").Return(nil) | ||
err := n.SetDevlinkDeviceParam("0000:d8:00.1", "param_name", "test_value") | ||
Expect(err).NotTo(HaveOccurred()) | ||
}) | ||
It("set - uint8", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_U8, uint8(8)), nil) | ||
netlinkLibMock.EXPECT().DevlinkSetDeviceParam("pci", "0000:d8:00.1", "param_name", | ||
uint8(nl.DEVLINK_PARAM_CMODE_DRIVERINIT), uint8(100)).Return(nil) | ||
err := n.SetDevlinkDeviceParam("0000:d8:00.1", "param_name", "100") | ||
Expect(err).NotTo(HaveOccurred()) | ||
}) | ||
It("set - uint16", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_U16, uint16(16)), nil) | ||
netlinkLibMock.EXPECT().DevlinkSetDeviceParam("pci", "0000:d8:00.1", "param_name", | ||
uint8(nl.DEVLINK_PARAM_CMODE_DRIVERINIT), uint16(100)).Return(nil) | ||
err := n.SetDevlinkDeviceParam("0000:d8:00.1", "param_name", "100") | ||
Expect(err).NotTo(HaveOccurred()) | ||
}) | ||
It("set - uint32", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_U32, uint32(32)), nil) | ||
netlinkLibMock.EXPECT().DevlinkSetDeviceParam("pci", "0000:d8:00.1", "param_name", | ||
uint8(nl.DEVLINK_PARAM_CMODE_DRIVERINIT), uint32(100)).Return(nil) | ||
err := n.SetDevlinkDeviceParam("0000:d8:00.1", "param_name", "100") | ||
Expect(err).NotTo(HaveOccurred()) | ||
}) | ||
It("set - bool", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_BOOL, false), nil) | ||
netlinkLibMock.EXPECT().DevlinkSetDeviceParam("pci", "0000:d8:00.1", "param_name", | ||
uint8(nl.DEVLINK_PARAM_CMODE_DRIVERINIT), true).Return(nil) | ||
err := n.SetDevlinkDeviceParam("0000:d8:00.1", "param_name", "true") | ||
Expect(err).NotTo(HaveOccurred()) | ||
}) | ||
It("failed to get", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
nil, testErr) | ||
err := n.SetDevlinkDeviceParam("0000:d8:00.1", "param_name", "true") | ||
Expect(err).To(HaveOccurred()) | ||
}) | ||
It("failed to set", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_BOOL, false), nil) | ||
netlinkLibMock.EXPECT().DevlinkSetDeviceParam("pci", "0000:d8:00.1", "param_name", | ||
uint8(nl.DEVLINK_PARAM_CMODE_DRIVERINIT), true).Return(testErr) | ||
err := n.SetDevlinkDeviceParam("0000:d8:00.1", "param_name", "true") | ||
Expect(err).To(HaveOccurred()) | ||
}) | ||
It("failed to convert type on set", func() { | ||
netlinkLibMock.EXPECT().DevlinkGetDeviceParamByName("pci", "0000:d8:00.1", "param_name").Return( | ||
getDevlinkParam(nl.DEVLINK_PARAM_TYPE_U8, 10), nil) | ||
// uint8 overflow | ||
err := n.SetDevlinkDeviceParam("0000:d8:00.1", "param_name", "10000") | ||
Expect(err).To(HaveOccurred()) | ||
}) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package network | ||
|
||
import ( | ||
"testing" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
|
||
"go.uber.org/zap/zapcore" | ||
"sigs.k8s.io/controller-runtime/pkg/log" | ||
"sigs.k8s.io/controller-runtime/pkg/log/zap" | ||
) | ||
|
||
func TestNetwork(t *testing.T) { | ||
log.SetLogger(zap.New( | ||
zap.WriteTo(GinkgoWriter), | ||
zap.Level(zapcore.Level(-2)), | ||
zap.UseDevMode(true))) | ||
RegisterFailHandler(Fail) | ||
RunSpecs(t, "Package Network Suite") | ||
} |
Oops, something went wrong.