Documentation ¶
Index ¶
- Variables
- func BinPathFinder(symbolicName string) (binPath string)
- func DoAPIServerArgDefaulting(args []string) []string
- func DoEtcdArgDefaulting(args []string) []string
- func GetEtcdStartMessage(listenURL url.URL) string
- func RenderTemplates(argTemplates []string, data interface{}) (args []string, err error)
- type CertPair
- type DefaultedProcessInput
- type ProcessState
- type TinyCA
Constants ¶
This section is empty.
Variables ¶
var APIServerDefaultArgs = []string{
"--advertise-address=127.0.0.1",
"--etcd-servers={{ if .EtcdURL }}{{ .EtcdURL.String }}{{ end }}",
"--cert-dir={{ .CertDir }}",
"--insecure-port={{ if .URL }}{{ .URL.Port }}{{ end }}",
"--insecure-bind-address={{ if .URL }}{{ .URL.Hostname }}{{ end }}",
"--secure-port={{ if .SecurePort }}{{ .SecurePort }}{{ end }}",
"--disable-admission-plugins=ServiceAccount",
"--service-cluster-ip-range=10.0.0.0/24",
"--allow-privileged=true",
}
APIServerDefaultArgs allow tests to run offline, by preventing API server from attempting to use default route to determine its --advertise-address.
var EtcdDefaultArgs = []string{
"--listen-peer-urls=http://localhost:0",
"--advertise-client-urls={{ if .URL }}{{ .URL.String }}{{ end }}",
"--listen-client-urls={{ if .URL }}{{ .URL.String }}{{ end }}",
"--data-dir={{ .DataDir }}",
}
EtcdDefaultArgs allow tests to run offline, by preventing API server from attempting to use default route to determine its urls.
Functions ¶
func BinPathFinder ¶
BinPathFinder checks the an environment variable, derived from the symbolic name, and falls back to a default assets location when this variable is not set
func DoAPIServerArgDefaulting ¶
DoAPIServerArgDefaulting will set default values to allow tests to run offline when the args are not informed. Otherwise, it will return the same []string arg passed as param.
func DoEtcdArgDefaulting ¶
DoEtcdArgDefaulting will set default values to allow tests to run offline when the args are not informed. Otherwise, it will return the same []string arg passed as param.
func GetEtcdStartMessage ¶
GetEtcdStartMessage returns an start message to inform if the client is or not insecure. It will return true when the URL informed has the scheme == "https" || scheme == "unixs"
func RenderTemplates ¶
RenderTemplates returns an []string to render the templates
Types ¶
type CertPair ¶ added in v0.5.1
type CertPair struct { Key crypto.Signer Cert *x509.Certificate }
CertPair is a private key and certificate for use for client auth, as a CA, or serving.
type DefaultedProcessInput ¶
type DefaultedProcessInput struct { URL url.URL Dir string DirNeedsCleaning bool Path string StopTimeout time.Duration StartTimeout time.Duration }
DefaultedProcessInput defines the default process input required to perform the test.
func DoDefaulting ¶
func DoDefaulting( name string, listenURL *url.URL, dir string, path string, startTimeout time.Duration, stopTimeout time.Duration, ) (DefaultedProcessInput, error)
DoDefaulting sets the default configuration according to the data informed and return an DefaultedProcessInput and an error if some requirement was not informed.
type ProcessState ¶
type ProcessState struct { DefaultedProcessInput Session *gexec.Session // Healthcheck Endpoint. If we get http.StatusOK from this endpoint, we // assume the process is ready to operate. E.g. "/healthz". If this is set, // we ignore StartMessage. HealthCheckEndpoint string // HealthCheckPollInterval is the interval which will be used for polling the // HealthCheckEndpoint. // If left empty it will default to 100 Milliseconds. HealthCheckPollInterval time.Duration // StartMessage is the message to wait for on stderr. If we receive this // message, we assume the process is ready to operate. Ignored if // HealthCheckEndpoint is specified. // // The usage of StartMessage is discouraged, favour HealthCheckEndpoint // instead! // // Deprecated: Use HealthCheckEndpoint in favour of StartMessage StartMessage string Args []string // contains filtered or unexported fields }
ProcessState define the state of the process.
func (*ProcessState) Start ¶
func (ps *ProcessState) Start(stdout, stderr io.Writer) (err error)
Start starts the apiserver, waits for it to come up, and returns an error, if occurred.
func (*ProcessState) Stop ¶
func (ps *ProcessState) Stop() error
Stop stops this process gracefully, waits for its termination, and cleans up the CertDir if necessary.
type TinyCA ¶ added in v0.5.1
type TinyCA struct { CA CertPair // contains filtered or unexported fields }
TinyCA supports signing serving certs and client-certs, and can be used as an auth mechanism with envtest.
func NewTinyCA ¶ added in v0.5.1
NewTinyCA creates a new a tiny CA utility for provisioning serving certs and client certs FOR TESTING ONLY. Don't use this for anything else!
func (*TinyCA) NewServingCert ¶ added in v0.5.1
NewServingCert returns a new CertPair for a serving HTTPS on localhost.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package integrationtests holds the integration tests to run against the framework.
|
Package integrationtests holds the integration tests to run against the framework. |