fixture

package
v2.0.0-...-5e8ce1c Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 20, 2024 License: Apache-2.0 Imports: 46 Imported by: 0

Documentation

Index

Constants

View Source
const (
	DefaultTestUserPassword = "password"
	TestingLabel            = "e2e.argoproj.io"
	ArgoCDNamespace         = "argocd-e2e"
	ArgoCDAppNamespace      = "argocd-e2e-external"

	// ensure all repos are in one directory tree, so we can easily clean them up
	TmpDir = "/tmp/argo-e2e"

	GuestbookPath = "guestbook"

	ProjectName = "argo-project"

	// cmp plugin sock file path
	PluginSockFilePath = "/app/config/plugin"

	E2ETestPrefix = "e2e-test-"
)
View Source
const (
	EnvAdminUsername           = "ARGOCD_E2E_ADMIN_USERNAME"
	EnvAdminPassword           = "ARGOCD_E2E_ADMIN_PASSWORD"
	EnvArgoCDServerName        = "ARGOCD_E2E_SERVER_NAME"
	EnvArgoCDRedisHAProxyName  = "ARGOCD_E2E_REDIS_HAPROXY_NAME"
	EnvArgoCDRedisName         = "ARGOCD_E2E_REDIS_NAME"
	EnvArgoCDRepoServerName    = "ARGOCD_E2E_REPO_SERVER_NAME"
	EnvArgoCDAppControllerName = "ARGOCD_E2E_APPLICATION_CONTROLLER_NAME"
)
View Source
const (
	RepoURLTypeFile                 = "file"
	RepoURLTypeHTTPS                = "https"
	RepoURLTypeHTTPSOrg             = "https-org"
	RepoURLTypeHTTPSClientCert      = "https-cc"
	RepoURLTypeHTTPSSubmodule       = "https-sub"
	RepoURLTypeHTTPSSubmoduleParent = "https-par"
	RepoURLTypeSSH                  = "ssh"
	RepoURLTypeSSHSubmodule         = "ssh-sub"
	RepoURLTypeSSHSubmoduleParent   = "ssh-par"
	RepoURLTypeHelm                 = "helm"
	RepoURLTypeHelmParent           = "helm-par"
	RepoURLTypeHelmOCI              = "helm-oci"
	GitUsername                     = "admin"
	GitPassword                     = "password"
	GithubAppID                     = "2978632978"
	GithubAppInstallationID         = "7893789433789"
	GpgGoodKeyID                    = "D56C4FCA57A46444"
	HelmOCIRegistryURL              = "localhost:5000/myrepo"
)
View Source
const (
	EnvRepoURLTypeSSH                  = "ARGOCD_E2E_REPO_SSH"
	EnvRepoURLTypeSSHSubmodule         = "ARGOCD_E2E_REPO_SSH_SUBMODULE"
	EnvRepoURLTypeSSHSubmoduleParent   = "ARGOCD_E2E_REPO_SSH_SUBMODULE_PARENT"
	EnvRepoURLTypeHTTPS                = "ARGOCD_E2E_REPO_HTTPS"
	EnvRepoURLTypeHTTPSOrg             = "ARGOCD_E2E_REPO_HTTPS_ORG"
	EnvRepoURLTypeHTTPSClientCert      = "ARGOCD_E2E_REPO_HTTPS_CLIENT_CERT"
	EnvRepoURLTypeHTTPSSubmodule       = "ARGOCD_E2E_REPO_HTTPS_SUBMODULE"
	EnvRepoURLTypeHTTPSSubmoduleParent = "ARGOCD_E2E_REPO_HTTPS_SUBMODULE_PARENT"
	EnvRepoURLTypeHelm                 = "ARGOCD_E2E_REPO_HELM"
	EnvRepoURLDefault                  = "ARGOCD_E2E_REPO_DEFAULT"
)

Variables

View Source
var (
	KubeClientset    kubernetes.Interface
	KubeConfig       *rest.Config
	DynamicClientset dynamic.Interface
	AppClientset     appclientset.Interface
	ArgoCDClientset  apiclient.Client

	AdminPassword string
)

Functions

func AddFile

func AddFile(path, contents string)

func AddSignedFile

func AddSignedFile(path, contents string)

func AddSignedTag

func AddSignedTag(name string)

func AddTag

func AddTag(name string)

func AppNamespace

func AppNamespace() string

func CreateSecret

func CreateSecret(username, password string) string

creates a secret for the current test, this currently can only create a single secret

func CreateSubmoduleRepos

func CreateSubmoduleRepos(repoType string)

func Declarative

func Declarative(filename string, values interface{}) (string, error)

create the resource by creating using "kubectl apply", with bonus templating

func Delete

func Delete(path string)

func DeploymentNamespace

func DeploymentNamespace() string

func DnsFriendly

func DnsFriendly(str string, postfix string) string

returns dns friends string which is no longer than 63 characters and has specified postfix at the end

func DoHttpJsonRequest

func DoHttpJsonRequest(method string, path string, result interface{}, data ...byte) error

DoHttpJsonRequest executes a http request against the Argo CD API server and unmarshals the response body as JSON

func DoHttpRequest

func DoHttpRequest(method string, path string, data ...byte) (*http.Response, error)

DoHttpRequest executes a http request against the Argo CD API server

func EnsureCleanState

func EnsureCleanState(t *testing.T, opts ...TestOption)

func GetApiResources

func GetApiResources() string

func GetEnvWithDefault

func GetEnvWithDefault(envName, defaultValue string) string

func IsLocal

func IsLocal() bool

IsLocal returns when the tests are being run against a local workload

func IsRemote

func IsRemote() bool

IsRemote returns true when the tests are being run against a workload that is running in a remote cluster.

func LocalOrRemotePath

func LocalOrRemotePath(base string) string

LocalOrRemotePath selects a path for a given application based on whether tests are running local or remote.

func LoginAs

func LoginAs(username string)

func Name

func Name() string

func NormalizeOutput

func NormalizeOutput(text string) string

utility method to deal with white-space

func Patch

func Patch(path string, jsonPatch string)

func RecordTestRun

func RecordTestRun(t *testing.T)

RecordTestRun records a test that has been run successfully to a text file, so that it can be automatically skipped if requested.

func RemoveSubmodule

func RemoveSubmodule()

func RepoBaseURL

func RepoBaseURL(urlType RepoURLType) string

func RepoURL

func RepoURL(urlType RepoURLType) string

func RestartAPIServer

func RestartAPIServer()

RestartAPIServer performs a restart of the API server deployemt and waits until the rollout has completed.

func RestartRepoServer

func RestartRepoServer()

RestartRepoServer performs a restart of the repo server deployment and waits until the rollout has completed.

func Run

func Run(workDir, name string, args ...string) (string, error)

func RunCli

func RunCli(args ...string) (string, error)

func RunCliWithRetry

func RunCliWithRetry(maxRetries int, args ...string) (string, error)

func RunCliWithStdin

func RunCliWithStdin(stdin string, args ...string) (string, error)

func RunWithStdin

func RunWithStdin(stdin, workDir, name string, args ...string) (string, error)

func SetAccounts

func SetAccounts(accounts map[string][]string)

func SetEnableManifestGeneration

func SetEnableManifestGeneration(val map[v1alpha1.ApplicationSourceType]bool)

func SetHelmRepos

func SetHelmRepos(repos ...settings.HelmRepoCredentials)

func SetParamInNotificationsConfigMap

func SetParamInNotificationsConfigMap(key, value string)

func SetParamInSettingConfigMap

func SetParamInSettingConfigMap(key, value string)

func SetPermissions

func SetPermissions(permissions []ACL, username string, roleName string)

func SetProjectSpec

func SetProjectSpec(project string, spec v1alpha1.AppProjectSpec)

func SetRepos

func SetRepos(repos ...settings.RepositoryCredentials)

func SetResourceFilter

func SetResourceFilter(filters settings.ResourcesFilter)

func SetResourceOverrides

func SetResourceOverrides(overrides map[string]v1alpha1.ResourceOverride)

func SetResourceOverridesSplitKeys

func SetResourceOverridesSplitKeys(overrides map[string]v1alpha1.ResourceOverride)

func SetTrackingLabel

func SetTrackingLabel(trackingLabel string)

func SetTrackingMethod

func SetTrackingMethod(trackingMethod string)

func SkipIfAlreadyRun

func SkipIfAlreadyRun(t *testing.T)

SkipIfAlreadyRun skips a test if it has been already run by a previous test cycle and was recorded.

func SkipOnEnv

func SkipOnEnv(t *testing.T, suffixes ...string)

SkipOnEnv allows to skip a test when a given environment variable is set. Environment variable names follow the ARGOCD_E2E_SKIP_<suffix> pattern, and must be set to the string value 'true' in order to skip a test.

func TestNamespace

func TestNamespace() string

TestNamespace returns the namespace where Argo CD E2E test instance will be running in.

func Tmpl

func Tmpl(text string, values interface{}) string

utility method to template a string using a map

func WriteFile

func WriteFile(path, contents string)

Types

type ACL

type ACL struct {
	Resource string
	Action   string
	Scope    string
}

type RepoURLType

type RepoURLType string

type TestOption

type TestOption func(option *testOption)

func WithTestData

func WithTestData(testdata string) TestOption

type Version

type Version struct {
	Major, Minor string
}

func (Version) Format

func (v Version) Format(format string) string

func (Version) String

func (v Version) String() string

type Versions

type Versions struct {
	ServerVersion Version
}

func GetVersions

func GetVersions() *Versions

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL