Skip to content

Commit

Permalink
Add tests for k0s controller help outputs
Browse files Browse the repository at this point in the history
This makes it obvious if something on the command line interface changes
(modulo changes to hidden flags and such).

Signed-off-by: Tom Wieczorek <[email protected]>
  • Loading branch information
twz123 committed May 6, 2024
1 parent 3685588 commit c2bb053
Show file tree
Hide file tree
Showing 2 changed files with 164 additions and 0 deletions.
81 changes: 81 additions & 0 deletions cmd/controller/controller_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/*
Copyright 2024 k0s 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 controller_test

import (
"strings"
"testing"

"github.com/k0sproject/k0s/cmd"
"github.com/stretchr/testify/assert"
)

func TestControllerCmd_Help(t *testing.T) {
var out strings.Builder
underTest := cmd.NewRootCmd()
underTest.SetArgs([]string{"controller", "--help"})
underTest.SetOut(&out)
assert.NoError(t, underTest.Execute())

assert.Regexp(t, `^Run controller
Usage:
k0s controller \[join-token\] \[flags\]
Aliases:
controller, server
Examples:
\tCommand to associate master nodes:
\tCLI argument:
\t\$ k0s controller \[join-token\]
\tor CLI flag:
\t\$ k0s controller --token-file \[path_to_file\]
\tNote: Token can be passed either as a CLI argument or as a flag
Flags:
--cidr-range string HACK: cidr range for the windows worker node \(default "10\.96\.0\.0/12"\)
-c, --config string config file, use '-' to read the config from stdin \(default ".+k0s\.yaml"\)
--cri-socket string container runtime socket to use, default to internal containerd\. Format: \[remote\|docker\]:\[path-to-socket\]
--data-dir string Data Directory for k0s \(default: .+k0s\)\. DO NOT CHANGE for an existing setup, things will break!
-d, --debug Debug logging \(default: false\)
--debugListenOn string Http listenOn for Debug pprof handler \(default ":6060"\)
--disable-components strings disable components \(valid items: applier-manager,autopilot,control-api,coredns,csr-approver,endpoint-reconciler,helm,konnectivity-server,kube-controller-manager,kube-proxy,kube-scheduler,metrics-server,network-provider,node-role,system-rbac,windows-node,worker-config\)
--enable-cloud-provider Whether or not to enable cloud provider support in kubelet
--enable-dynamic-config enable cluster-wide dynamic config based on custom resource
--enable-k0s-cloud-provider enables the k0s-cloud-provider \(default false\)
--enable-metrics-scraper enable scraping metrics from the controller components \(kube-scheduler, kube-controller-manager\)
--enable-worker enable worker \(default false\)
-h, --help help for controller
--ignore-pre-flight-checks continue even if pre-flight checks fail
--iptables-mode string iptables mode \(valid values: nft, legacy, auto\)\. default: auto
--k0s-cloud-provider-port int the port that k0s-cloud-provider binds on \(default 10258\)
--k0s-cloud-provider-update-frequency duration the frequency of k0s-cloud-provider node updates \(default 2m0s\)
--kube-controller-manager-extra-args string extra args for kube-controller-manager
--kubelet-extra-args string extra args for kubelet
--labels strings Node labels, list of key=value pairs
-l, --logging stringToString Logging Levels for the different components \(default \[.+]\)
--no-taints disable default taints for controller node
--profile string worker profile to use on the node \(default "default"\)
--single enable single node \(implies --enable-worker, default false\)
--status-socket string Full file path to the socket file\. \(default: <rundir>/status\.sock\)
--taints strings Node taints, list of key=value:effect strings
--token-file string Path to the file containing join-token\.
-v, --verbose Verbose logging \(default: false\)
$`, out.String())
}
83 changes: 83 additions & 0 deletions cmd/install/controller_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
/*
Copyright 2024 k0s 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 install_test

import (
"strings"
"testing"

"github.com/k0sproject/k0s/cmd"
"github.com/stretchr/testify/assert"
)

func TestInstallCmd_Controller_Help(t *testing.T) {
var out strings.Builder
underTest := cmd.NewRootCmd()
underTest.SetArgs([]string{"install", "controller", "--help"})
underTest.SetOut(&out)
assert.NoError(t, underTest.Execute())

assert.Regexp(t, `^Install k0s controller on a brand-new system\. Must be run as root \(or with sudo\)
Usage:
k0s install controller \[flags\]
Aliases:
controller, server
Examples:
All default values of controller command will be passed to the service stub unless overridden.
With the controller subcommand you can setup a single node cluster by running:
k0s install controller --single
Flags:
--cidr-range string HACK: cidr range for the windows worker node \(default "10\.96\.0\.0/12"\)
-c, --config string config file, use '-' to read the config from stdin \(default ".+k0s\.yaml"\)
--cri-socket string container runtime socket to use, default to internal containerd\. Format: \[remote\|docker\]:\[path-to-socket\]
--data-dir string Data Directory for k0s \(default: .+k0s\)\. DO NOT CHANGE for an existing setup, things will break!
-d, --debug Debug logging \(default: false\)
--debugListenOn string Http listenOn for Debug pprof handler \(default ":6060"\)
--disable-components strings disable components \(valid items: applier-manager,autopilot,control-api,coredns,csr-approver,endpoint-reconciler,helm,konnectivity-server,kube-controller-manager,kube-proxy,kube-scheduler,metrics-server,network-provider,node-role,system-rbac,windows-node,worker-config\)
--enable-cloud-provider Whether or not to enable cloud provider support in kubelet
--enable-dynamic-config enable cluster-wide dynamic config based on custom resource
--enable-k0s-cloud-provider enables the k0s-cloud-provider \(default false\)
--enable-metrics-scraper enable scraping metrics from the controller components \(kube-scheduler, kube-controller-manager\)
--enable-worker enable worker \(default false\)
-h, --help help for controller
--iptables-mode string iptables mode \(valid values: nft, legacy, auto\)\. default: auto
--k0s-cloud-provider-port int the port that k0s-cloud-provider binds on \(default 10258\)
--k0s-cloud-provider-update-frequency duration the frequency of k0s-cloud-provider node updates \(default 2m0s\)
--kube-controller-manager-extra-args string extra args for kube-controller-manager
--kubelet-extra-args string extra args for kubelet
--labels strings Node labels, list of key=value pairs
-l, --logging stringToString Logging Levels for the different components \(default \[.+]\)
--no-taints disable default taints for controller node
--profile string worker profile to use on the node \(default "default"\)
--single enable single node \(implies --enable-worker, default false\)
--status-socket string Full file path to the socket file\. \(default: <rundir>/status\.sock\)
--taints strings Node taints, list of key=value:effect strings
--token-file string Path to the file containing join-token\.
-v, --verbose Verbose logging \(default: false\)
Global Flags:
-e, --env stringArray set environment variable
--force force init script creation
$`, out.String())
}

0 comments on commit c2bb053

Please sign in to comment.