mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 00:11:36 +01:00 
			
		
		
		
	Fixes #6676 There was a mix of stdout/stderr, move more consistently to stderr. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.7 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_cli
 | |
| 
 | |
| package cli
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"os"
 | |
| 	"path/filepath"
 | |
| 	"regexp"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/siderolabs/go-retry/retry"
 | |
| 
 | |
| 	"github.com/siderolabs/talos/internal/integration/base"
 | |
| )
 | |
| 
 | |
| // ApplyConfigSuite verifies dmesg command.
 | |
| type ApplyConfigSuite struct {
 | |
| 	base.CLISuite
 | |
| }
 | |
| 
 | |
| // SuiteName ...
 | |
| func (suite *ApplyConfigSuite) SuiteName() string {
 | |
| 	return "cli.ApplyConfigSuite"
 | |
| }
 | |
| 
 | |
| // TestApplyWithPatch verifies that .
 | |
| func (suite *ApplyConfigSuite) TestApplyWithPatch() {
 | |
| 	patch := `---
 | |
| machine:
 | |
|   network:
 | |
|     interfaces:
 | |
|       - interface: dummy-ap-patch
 | |
|         dummy: true`
 | |
| 
 | |
| 	node := suite.RandomDiscoveredNodeInternalIP()
 | |
| 
 | |
| 	patchPath := filepath.Join(suite.T().TempDir(), "patch.yaml")
 | |
| 
 | |
| 	suite.Require().NoError(os.WriteFile(patchPath, []byte(patch), 0o777))
 | |
| 
 | |
| 	data, _ := suite.RunCLI([]string{"read", "--nodes", node, "/system/state/config.yaml"})
 | |
| 
 | |
| 	configPath := filepath.Join(suite.T().TempDir(), "config.yaml")
 | |
| 
 | |
| 	suite.Require().NoError(os.WriteFile(configPath, []byte(data), 0o777))
 | |
| 
 | |
| 	suite.RunCLI([]string{"apply-config", "--nodes", node, "--config-patch", fmt.Sprintf("@%s", patchPath), "-f", configPath},
 | |
| 		base.StdoutEmpty(),
 | |
| 		base.StderrNotEmpty(),
 | |
| 		base.StderrShouldMatch(regexp.MustCompile("Applied configuration without a reboot")),
 | |
| 	)
 | |
| 
 | |
| 	suite.RunCLI([]string{"get", "--nodes", node, "links"},
 | |
| 		base.StdoutShouldMatch(regexp.MustCompile("dummy-ap-patch")),
 | |
| 		base.WithRetry(retry.Constant(15*time.Second, retry.WithUnits(time.Second))),
 | |
| 	)
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	allSuites = append(allSuites, new(ApplyConfigSuite))
 | |
| }
 |