mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-07 23:27:07 +02:00
Bring in new tools, pkgs, update Go dependencies and others. In preparation for Talos 1.9.0-alpha.0. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
109 lines
3.2 KiB
Go
109 lines
3.2 KiB
Go
// 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 (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/cosi-project/runtime/pkg/resource"
|
|
"github.com/cosi-project/runtime/pkg/resource/meta"
|
|
"github.com/cosi-project/runtime/pkg/safe"
|
|
"github.com/cosi-project/runtime/pkg/state"
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
"github.com/siderolabs/talos/internal/integration/base"
|
|
"github.com/siderolabs/talos/pkg/machinery/client"
|
|
"github.com/siderolabs/talos/pkg/machinery/config/machine"
|
|
"github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1"
|
|
)
|
|
|
|
// ResourcesSuite ...
|
|
type ResourcesSuite struct {
|
|
base.APISuite
|
|
|
|
ctx context.Context //nolint:containedctx
|
|
ctxCancel context.CancelFunc
|
|
}
|
|
|
|
// SuiteName ...
|
|
func (suite *ResourcesSuite) SuiteName() string {
|
|
return "api.ResourcesSuite"
|
|
}
|
|
|
|
// SetupTest ...
|
|
func (suite *ResourcesSuite) SetupTest() {
|
|
suite.ctx, suite.ctxCancel = context.WithTimeout(context.Background(), time.Minute)
|
|
}
|
|
|
|
// TearDownTest ...
|
|
func (suite *ResourcesSuite) TearDownTest() {
|
|
if suite.ctxCancel != nil {
|
|
suite.ctxCancel()
|
|
}
|
|
}
|
|
|
|
// TestListResources tries to fetch every resource in the system.
|
|
func (suite *ResourcesSuite) TestListResources() {
|
|
node := suite.RandomDiscoveredNodeInternalIP(machine.TypeControlPlane)
|
|
ctx := client.WithNode(suite.ctx, node)
|
|
|
|
nsList, err := safe.StateListAll[*meta.Namespace](ctx, suite.Client.COSI)
|
|
suite.Require().NoError(err)
|
|
|
|
namespaces := safe.ToSlice(nsList, func(ns *meta.Namespace) string {
|
|
return ns.Metadata().ID()
|
|
})
|
|
|
|
rdList, err := safe.StateListAll[*meta.ResourceDefinition](ctx, suite.Client.COSI)
|
|
suite.Require().NoError(err)
|
|
|
|
resourceTypes := safe.ToSlice(rdList, func(rd *meta.ResourceDefinition) string {
|
|
return rd.TypedSpec().Type
|
|
})
|
|
|
|
eg, egCtx := errgroup.WithContext(ctx)
|
|
|
|
for _, resourceType := range resourceTypes {
|
|
eg.Go(func() error {
|
|
for _, namespace := range namespaces {
|
|
_, err := suite.Client.COSI.List(egCtx, resource.NewMetadata(namespace, resourceType, "", resource.VersionUndefined))
|
|
if err != nil {
|
|
return fmt.Errorf("failed to list resources of type %q in namespace %q: %w", resourceType, namespace, err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
})
|
|
}
|
|
|
|
suite.Assert().NoError(eg.Wait())
|
|
}
|
|
|
|
// TestForbiddenOperations verifies that write operations are forbidden.
|
|
func (suite *ResourcesSuite) TestForbiddenOperations() {
|
|
node := suite.RandomDiscoveredNodeInternalIP()
|
|
ctx := client.WithNode(suite.ctx, node)
|
|
|
|
err := suite.Client.COSI.Create(ctx, v1alpha1.NewService("foo"))
|
|
suite.Require().Error(err)
|
|
suite.Assert().True(state.IsConflictError(err)) // this is how COSI wraps the error
|
|
|
|
err = suite.Client.COSI.Destroy(ctx, v1alpha1.NewService("kubelet").Metadata())
|
|
suite.Require().Error(err)
|
|
suite.Assert().True(state.IsConflictError(err)) // this is how COSI wraps the error
|
|
|
|
err = suite.Client.COSI.Update(ctx, v1alpha1.NewService("kubelet"))
|
|
suite.Require().Error(err)
|
|
suite.Assert().True(state.IsConflictError(err)) // this is how COSI wraps the error
|
|
}
|
|
|
|
func init() {
|
|
allSuites = append(allSuites, new(ResourcesSuite))
|
|
}
|