| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- /*
- 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 util
- import (
- "bytes"
- "context"
- "fmt"
- "net/http"
- "os"
- "time"
- fluxhelm "github.com/fluxcd/helm-controller/api/v2beta1"
- fluxsrc "github.com/fluxcd/source-controller/api/v1beta2"
- // nolint
- . "github.com/onsi/ginkgo/v2"
- v1 "k8s.io/api/core/v1"
- apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
- apierrors "k8s.io/apimachinery/pkg/api/errors"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apimachinery/pkg/util/wait"
- "k8s.io/client-go/kubernetes"
- "k8s.io/client-go/kubernetes/scheme"
- restclient "k8s.io/client-go/rest"
- "k8s.io/client-go/tools/clientcmd"
- "k8s.io/client-go/tools/remotecommand"
- crclient "sigs.k8s.io/controller-runtime/pkg/client"
- esv1alpha1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1alpha1"
- esv1beta1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1"
- genv1alpha1 "github.com/external-secrets/external-secrets/apis/generators/v1alpha1"
- )
- var Scheme = runtime.NewScheme()
- func init() {
- _ = scheme.AddToScheme(Scheme)
- _ = esv1beta1.AddToScheme(Scheme)
- _ = esv1alpha1.AddToScheme(Scheme)
- _ = genv1alpha1.AddToScheme(Scheme)
- _ = fluxhelm.AddToScheme(Scheme)
- _ = fluxsrc.AddToScheme(Scheme)
- _ = apiextensionsv1.AddToScheme(Scheme)
- }
- const (
- // How often to poll for conditions.
- Poll = 2 * time.Second
- )
- // CreateKubeNamespace creates a new Kubernetes Namespace for a test.
- func CreateKubeNamespace(baseName string, kubeClientSet kubernetes.Interface) (*v1.Namespace, error) {
- ns := &v1.Namespace{
- ObjectMeta: metav1.ObjectMeta{
- GenerateName: fmt.Sprintf("e2e-tests-%v-", baseName),
- },
- }
- return kubeClientSet.CoreV1().Namespaces().Create(context.TODO(), ns, metav1.CreateOptions{})
- }
- // DeleteKubeNamespace will delete a namespace resource.
- func DeleteKubeNamespace(namespace string, kubeClientSet kubernetes.Interface) error {
- return kubeClientSet.CoreV1().Namespaces().Delete(context.TODO(), namespace, metav1.DeleteOptions{})
- }
- // WaitForKubeNamespaceNotExist will wait for the namespace with the given name
- // to not exist for up to 2 minutes.
- func WaitForKubeNamespaceNotExist(namespace string, kubeClientSet kubernetes.Interface) error {
- return wait.PollImmediate(Poll, time.Minute*2, namespaceNotExist(kubeClientSet, namespace))
- }
- func namespaceNotExist(c kubernetes.Interface, namespace string) wait.ConditionFunc {
- return func() (bool, error) {
- _, err := c.CoreV1().Namespaces().Get(context.TODO(), namespace, metav1.GetOptions{})
- if apierrors.IsNotFound(err) {
- return true, nil
- }
- if err != nil {
- return false, err
- }
- return false, nil
- }
- }
- // ExecCmd exec command on specific pod and wait the command's output.
- func ExecCmd(client kubernetes.Interface, config *restclient.Config, podName, namespace string,
- command string) (string, error) {
- cmd := []string{
- "sh",
- "-c",
- command,
- }
- req := client.CoreV1().RESTClient().Post().Resource("pods").Name(podName).
- Namespace(namespace).SubResource("exec")
- option := &v1.PodExecOptions{
- Command: cmd,
- Stdin: false,
- Stdout: true,
- Stderr: true,
- TTY: false,
- }
- req.VersionedParams(
- option,
- scheme.ParameterCodec,
- )
- exec, err := remotecommand.NewSPDYExecutor(config, "POST", req.URL())
- if err != nil {
- return "", err
- }
- var stdout, stderr bytes.Buffer
- err = exec.Stream(remotecommand.StreamOptions{
- Stdout: &stdout,
- Stderr: &stderr,
- Tty: false,
- })
- if err != nil {
- return "", fmt.Errorf("unable to exec stream: %w: \n%s\n%s", err, stdout.String(), stderr.String())
- }
- return stdout.String() + stderr.String(), nil
- }
- // WaitForPodsRunning waits for a given amount of time until a group of Pods is running in the given namespace.
- func WaitForPodsRunning(kubeClientSet kubernetes.Interface, expectedReplicas int, namespace string, opts metav1.ListOptions) (*v1.PodList, error) {
- var pods *v1.PodList
- err := wait.PollImmediate(1*time.Second, time.Minute*5, func() (bool, error) {
- pl, err := kubeClientSet.CoreV1().Pods(namespace).List(context.TODO(), opts)
- if err != nil {
- return false, nil
- }
- r := 0
- for i := range pl.Items {
- if pl.Items[i].Status.Phase == v1.PodRunning {
- r++
- }
- }
- if r == expectedReplicas {
- pods = pl
- return true, nil
- }
- return false, nil
- })
- return pods, err
- }
- // WaitForPodsReady waits for a given amount of time until a group of Pods is running in the given namespace.
- func WaitForPodsReady(kubeClientSet kubernetes.Interface, expectedReplicas int, namespace string, opts metav1.ListOptions) error {
- return wait.PollImmediate(1*time.Second, time.Minute*5, func() (bool, error) {
- pl, err := kubeClientSet.CoreV1().Pods(namespace).List(context.TODO(), opts)
- if err != nil {
- return false, nil
- }
- r := 0
- for i := range pl.Items {
- if isRunning, _ := podRunningReady(&pl.Items[i]); isRunning {
- r++
- }
- }
- if r == expectedReplicas {
- return true, nil
- }
- return false, nil
- })
- }
- // podRunningReady checks whether pod p's phase is running and it has a ready
- // condition of status true.
- func podRunningReady(p *v1.Pod) (bool, error) {
- // Check the phase is running.
- if p.Status.Phase != v1.PodRunning {
- return false, fmt.Errorf("want pod '%s' on '%s' to be '%v' but was '%v'",
- p.ObjectMeta.Name, p.Spec.NodeName, v1.PodRunning, p.Status.Phase)
- }
- // Check the ready condition is true.
- if !isPodReady(p) {
- return false, fmt.Errorf("pod '%s' on '%s' didn't have condition {%v %v}; conditions: %v",
- p.ObjectMeta.Name, p.Spec.NodeName, v1.PodReady, v1.ConditionTrue, p.Status.Conditions)
- }
- return true, nil
- }
- func isPodReady(p *v1.Pod) bool {
- for _, condition := range p.Status.Conditions {
- if condition.Type != v1.ContainersReady {
- continue
- }
- return condition.Status == v1.ConditionTrue
- }
- return false
- }
- // WaitForURL tests the provided url. Once a http 200 is returned the func returns with no error.
- // Timeout is 5min.
- func WaitForURL(url string) error {
- return wait.PollImmediate(2*time.Second, time.Minute*5, func() (bool, error) {
- req, err := http.NewRequest(http.MethodGet, url, http.NoBody)
- if err != nil {
- return false, nil
- }
- res, err := http.DefaultClient.Do(req)
- if err != nil {
- return false, nil
- }
- defer res.Body.Close()
- if res.StatusCode == http.StatusOK {
- return true, nil
- }
- return false, err
- })
- }
- // UpdateKubeSA updates a new Kubernetes Service Account for a test.
- func UpdateKubeSA(baseName string, kubeClientSet kubernetes.Interface, ns string, annotations map[string]string) (*v1.ServiceAccount, error) {
- sa := &v1.ServiceAccount{
- ObjectMeta: metav1.ObjectMeta{
- Name: baseName,
- Annotations: annotations,
- },
- }
- return kubeClientSet.CoreV1().ServiceAccounts(ns).Update(context.TODO(), sa, metav1.UpdateOptions{})
- }
- // UpdateKubeSA updates a new Kubernetes Service Account for a test.
- func GetKubeSA(baseName string, kubeClientSet kubernetes.Interface, ns string) (*v1.ServiceAccount, error) {
- return kubeClientSet.CoreV1().ServiceAccounts(ns).Get(context.TODO(), baseName, metav1.GetOptions{})
- }
- // NewConfig loads and returns the kubernetes credentials from the environment.
- // KUBECONFIG env var takes precedence and falls back to in-cluster config.
- func NewConfig() (*restclient.Config, *kubernetes.Clientset, crclient.Client) {
- var kubeConfig *restclient.Config
- var err error
- kcPath := os.Getenv("KUBECONFIG")
- if kcPath != "" {
- kubeConfig, err = clientcmd.BuildConfigFromFlags("", kcPath)
- if err != nil {
- Fail(err.Error())
- }
- } else {
- kubeConfig, err = restclient.InClusterConfig()
- if err != nil {
- Fail(err.Error())
- }
- }
- kubeClientSet, err := kubernetes.NewForConfig(kubeConfig)
- if err != nil {
- Fail(err.Error())
- }
- CRClient, err := crclient.New(kubeConfig, crclient.Options{Scheme: Scheme})
- if err != nil {
- Fail(err.Error())
- }
- return kubeConfig, kubeClientSet, CRClient
- }
|