-
Notifications
You must be signed in to change notification settings - Fork 544
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add a test for watchdog timers
Try to activate/deactivate watchdogs, change timeout, run only on QEMU. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com> Signed-off-by: Dmitry Sharshakov <dmitry.sharshakov@siderolabs.com>
- Loading branch information
Showing
2 changed files
with
182 additions
and
0 deletions.
There are no files selected for viewing
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,123 @@ | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
//go:build integration_api | ||
|
||
package api | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"io" | ||
"path/filepath" | ||
"time" | ||
|
||
"github.com/cosi-project/runtime/pkg/state" | ||
|
||
"github.com/siderolabs/talos/internal/integration/base" | ||
"github.com/siderolabs/talos/pkg/machinery/client" | ||
"github.com/siderolabs/talos/pkg/machinery/config/types/runtime" | ||
runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" | ||
) | ||
|
||
// WatchdogSuite ... | ||
type WatchdogSuite struct { | ||
base.APISuite | ||
|
||
ctx context.Context //nolint:containedctx | ||
ctxCancel context.CancelFunc | ||
} | ||
|
||
// SuiteName ... | ||
func (suite *WatchdogSuite) SuiteName() string { | ||
return "api.WatchdogSuite" | ||
} | ||
|
||
// SetupTest ... | ||
func (suite *WatchdogSuite) SetupTest() { | ||
suite.ctx, suite.ctxCancel = context.WithTimeout(context.Background(), 1*time.Minute) | ||
|
||
if suite.Cluster == nil || suite.Cluster.Provisioner() != "qemu" { | ||
suite.T().Skip("skipping watchdog test since provisioner is not qemu") | ||
} | ||
} | ||
|
||
// TearDownTest ... | ||
func (suite *WatchdogSuite) TearDownTest() { | ||
if suite.ctxCancel != nil { | ||
suite.ctxCancel() | ||
} | ||
} | ||
|
||
func (suite *WatchdogSuite) readWatchdogSysfs(nodeCtx context.Context, watchdog, property string) string { //nolint:unparam | ||
r, err := suite.Client.Read(nodeCtx, filepath.Join("/sys/class/watchdog", watchdog, property)) | ||
suite.Require().NoError(err) | ||
|
||
value, err := io.ReadAll(r) | ||
suite.Require().NoError(err) | ||
|
||
suite.Require().NoError(r.Close()) | ||
|
||
return string(bytes.TrimSpace(value)) | ||
} | ||
|
||
// TestWatchdogSysfs sets up the watchdog and validates its parameters from the /sys/class/watchdog. | ||
func (suite *WatchdogSuite) TestWatchdogSysfs() { | ||
// pick up a random node to test the watchdog on, and use it throughout the test | ||
node := suite.RandomDiscoveredNodeInternalIP() | ||
|
||
suite.T().Logf("testing watchdog on node %s", node) | ||
|
||
// build a Talos API context which is tied to the node | ||
nodeCtx := client.WithNode(suite.ctx, node) | ||
|
||
// pick a watchdog | ||
const watchdog = "watchdog0" | ||
|
||
cfgDocument := runtime.NewWatchdogTimerV1Alpha1() | ||
cfgDocument.WatchdogDevice = "/dev/watchdog0" | ||
cfgDocument.WatchdogTimeout = 120 * time.Second | ||
|
||
// deactivate the watchdog | ||
suite.RemoveMachineConfigDocuments(nodeCtx, cfgDocument.MetaKind) | ||
|
||
wdState := suite.readWatchdogSysfs(nodeCtx, watchdog, "state") | ||
suite.Require().Equal("inactive", wdState) | ||
|
||
suite.PatchMachineConfig(nodeCtx, cfgDocument) | ||
|
||
_, err := suite.Client.COSI.WatchFor(nodeCtx, runtimeres.NewWatchdogTimerStatus(runtimeres.WatchdogTimerConfigID).Metadata(), state.WithEventTypes(state.Created, state.Updated)) | ||
suite.Require().NoError(err) | ||
|
||
wdState = suite.readWatchdogSysfs(nodeCtx, watchdog, "state") | ||
suite.Require().Equal("active", wdState) | ||
|
||
wdTimeout := suite.readWatchdogSysfs(nodeCtx, watchdog, "timeout") | ||
suite.Require().Equal("120", wdTimeout) | ||
|
||
cfgDocument.WatchdogTimeout = 60 * time.Second | ||
suite.PatchMachineConfig(nodeCtx, cfgDocument) | ||
|
||
_, err := suite.Client.COSI.WatchFor(nodeCtx, runtimeres.NewWatchdogTimerStatus(runtimeres.WatchdogTimerConfigID).Metadata(), state.WithEventTypes(state.Created, state.Updated)) | ||
suite.Require().NoError(err) | ||
|
||
wdState = suite.readWatchdogSysfs(nodeCtx, watchdog, "state") | ||
suite.Require().Equal("active", wdState) | ||
|
||
wdTimeout := suite.readWatchdogSysfs(nodeCtx, watchdog, "timeout") | ||
suite.Require().Equal("60", wdTimeout) | ||
|
||
// deactivate the watchdog | ||
suite.RemoveMachineConfigDocuments(nodeCtx, cfgDocument.MetaKind) | ||
|
||
_, err = suite.Client.COSI.WatchFor(nodeCtx, runtimeres.NewWatchdogTimerStatus(runtimeres.WatchdogTimerConfigID).Metadata(), state.WithEventTypes(state.Destroyed)) | ||
suite.Require().NoError(err) | ||
|
||
wdState = suite.readWatchdogSysfs(nodeCtx, watchdog, "state") | ||
suite.Require().Equal("inactive", wdState) | ||
} | ||
|
||
func init() { | ||
allSuites = append(allSuites, new(WatchdogSuite)) | ||
} |
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