123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- package influxdb_test
- import (
- "context"
- "flag"
- "fmt"
- "testing"
- "time"
- . "github.com/onsi/ginkgo/v2"
- . "github.com/onsi/gomega"
- batchv1 "k8s.io/api/batch/v1"
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/client-go/kubernetes"
- )
- var (
- kubeconfig string
- deployName string
- namespace string
- database string
- timeoutSeconds int
- timeout time.Duration
- )
- func init() {
- flag.StringVar(&kubeconfig, "kubeconfig", "", "absolute path to the kubeconfig file")
- flag.StringVar(&deployName, "name", "", "name of the Influxdb deployment")
- flag.StringVar(&namespace, "namespace", "", "namespace where the application is running")
- flag.StringVar(&database, "database", "", "name of the database to be used")
- flag.IntVar(&timeoutSeconds, "timeout", 120, "timeout in seconds")
- timeout = time.Duration(timeoutSeconds) * time.Second
- }
- func TestInfluxdb(t *testing.T) {
- RegisterFailHandler(Fail)
- RunSpecs(t, "Influxdb Persistence Test Suite")
- }
- func createJob(ctx context.Context, c kubernetes.Interface, name, port, image, action, token, query string) error {
- securityContext := &v1.SecurityContext{
- Privileged: &[]bool{false}[0],
- AllowPrivilegeEscalation: &[]bool{false}[0],
- RunAsNonRoot: &[]bool{true}[0],
- Capabilities: &v1.Capabilities{
- Drop: []v1.Capability{"ALL"},
- },
- SeccompProfile: &v1.SeccompProfile{
- Type: "RuntimeDefault",
- },
- }
- job := &batchv1.Job{
- ObjectMeta: metav1.ObjectMeta{
- Name: name,
- },
- TypeMeta: metav1.TypeMeta{
- Kind: "Job",
- },
- Spec: batchv1.JobSpec{
- Template: v1.PodTemplateSpec{
- Spec: v1.PodSpec{
- RestartPolicy: "Never",
- Containers: []v1.Container{
- {
- Name: "influxdb",
- Image: image,
- Command: []string{
- "bash", "-ec",
- fmt.Sprintf("influxdb3 %s --database %s --host $INFLUX_HOST --token $ADMIN_TOKEN '%s'", action, database, query),
- },
- Env: []v1.EnvVar{
- {
- Name: "INFLUX_HOST",
- Value: fmt.Sprintf("http://%s:%s", deployName, port),
- },
- {
- Name: "ADMIN_TOKEN",
- Value: token,
- },
- },
- SecurityContext: securityContext,
- },
- },
- },
- },
- },
- }
- _, err := c.BatchV1().Jobs(namespace).Create(ctx, job, metav1.CreateOptions{})
- return err
- }
|