Skip to content

Commit

Permalink
Merge branch 'main' into mojtaba/k8s_unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
mojtaba-esk committed Jun 4, 2024
2 parents 8352b2f + 254f7cd commit 234ddd7
Show file tree
Hide file tree
Showing 28 changed files with 218 additions and 80 deletions.
6 changes: 0 additions & 6 deletions .env

This file was deleted.

18 changes: 15 additions & 3 deletions .github/workflows/knuu_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,23 @@ on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
merge_group:

jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- pkg: "./pkg/..."
timeout: 10m
- pkg: "./e2e/basic"
timeout: 15m
- pkg: "./e2e/system"
timeout: 15m
- pkg: "./e2e/bittwister"
timeout: 60m
runs-on: ubuntu-latest

steps:
Expand All @@ -28,10 +40,10 @@ jobs:
echo "${KUBECONFIG_FILE}" > $HOME/.kube/config
- name: Run Tests
run: make test
run: make test pkgs=${{ matrix.pkg }} timeout=${{ matrix.timeout }}
env:
KNUU_SKIP_CLEANUP: "false"
KNUU_TIMEOUT: "240m" # needed as we run all the tests
KNUU_TIMEOUT: "${{ matrix.timeout }}"
GRAFANA_ENDPOINT: ${{ secrets.GRAFANA_ENDPOINT }}
GRAFANA_USERNAME: ${{ secrets.GRAFANA_USERNAME }}
GRAFANA_TOKEN: ${{ secrets.GRAFANA_TOKEN }}
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
pkgs := $(shell go list ./...)
run := .
count := 1
timeout := 120m

## help: Show this help message
help: Makefile
Expand Down Expand Up @@ -59,5 +60,5 @@ vet:

## test: Run the testsuite
test: vet
KNUU_TIMEOUT=120m go test -v $(pkgs) -run $(run) -count=$(count) -timeout 120m
go test -v $(pkgs) -run $(run) -count=$(count) -timeout $(timeout)
.PHONY: test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Simple example:

You can find more examples in the following repositories:

- [celestiaorg/knuu](https://github.com/celestiaorg/knuu/e2e)
- [celestiaorg/knuu](https://github.com/celestiaorg/knuu/tree/main/e2e)
- [celestiaorg/celestia-app](https://github.com/celestiaorg/celestia-app/tree/main/test/e2e)

---
Expand Down
10 changes: 5 additions & 5 deletions e2e/basic/assert_cleanups.go → e2e/assert_cleanups.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package basic
package e2e

import (
"os"
Expand All @@ -7,8 +7,8 @@ import (
"github.com/celestiaorg/knuu/pkg/knuu"
)

// assertCleanupInstance is a helper function that cleans up a single instance.
func assertCleanupInstance(t *testing.T, instance *knuu.Instance) error {
// AssertCleanupInstance is a helper function that cleans up a single instance.
func AssertCleanupInstance(t *testing.T, instance *knuu.Instance) error {
if instance == nil {
t.Fatal("Instance is nil")
}
Expand All @@ -19,8 +19,8 @@ func assertCleanupInstance(t *testing.T, instance *knuu.Instance) error {
return nil
}

// assertCleanupInstances is a helper function that cleans up a list of instances.
func assertCleanupInstances(t *testing.T, executor *knuu.Executor, instances []*knuu.Instance) error {
// AssertCleanupInstances is a helper function that cleans up a list of instances.
func AssertCleanupInstances(t *testing.T, executor *knuu.Executor, instances []*knuu.Instance) error {
if os.Getenv("KNUU_SKIP_CLEANUP") == "true" {
t.Log("Skipping cleanup")
return nil
Expand Down
14 changes: 10 additions & 4 deletions e2e/basic/assert_create.go → e2e/assert_create.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package basic
package e2e

import (
"testing"
Expand All @@ -19,8 +19,8 @@ const (
nginxPath = "/usr/share/nginx/html"
)

// assertCreateInstanceNginxWithVolumeOwner creates and configures an instance with common settings used across tests.
func assertCreateInstanceNginxWithVolumeOwner(t *testing.T, instanceName string) *knuu.Instance {
// AssertCreateInstanceNginxWithVolumeOwner creates and configures an instance with common settings used across tests but doesn't call commit.
func AssertCreateInstanceNginxWithVolumeOwnerWithoutCommit(t *testing.T, instanceName string) *knuu.Instance {
instance, err := knuu.NewInstance(instanceName)
if err != nil {
t.Fatalf("Error creating instance '%v': %v", instanceName, err)
Expand All @@ -41,7 +41,13 @@ func assertCreateInstanceNginxWithVolumeOwner(t *testing.T, instanceName string)
if err != nil {
t.Fatalf("Error adding volume: %v", err)
}
err = instance.Commit()
return instance
}

// AssertCreateInstanceNginxWithVolumeOwner creates and configures an instance with common settings used across tests.
func AssertCreateInstanceNginxWithVolumeOwner(t *testing.T, instanceName string) *knuu.Instance {
instance := AssertCreateInstanceNginxWithVolumeOwnerWithoutCommit(t, instanceName)
err := instance.Commit()
if err != nil {
t.Fatalf("Error committing instance '%v': %v", instanceName, err)
}
Expand Down
3 changes: 0 additions & 3 deletions e2e/basic/.env

This file was deleted.

2 changes: 1 addition & 1 deletion e2e/basic/probe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestProbe(t *testing.T) {
if err != nil {
t.Fatalf("Error adding volume: %v", err)
}
err = web.AddFile("resources/html/index.html", "/usr/share/nginx/html/index.html", "0:0")
err = web.AddFile("../system/resources/html/index.html", "/usr/share/nginx/html/index.html", "0:0")
if err != nil {
t.Fatalf("Error adding file '%v':", err)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package basic
package bittwister

import (
"context"
Expand Down
20 changes: 20 additions & 0 deletions e2e/bittwister/main_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package bittwister

import (
"os"
"testing"

"github.com/sirupsen/logrus"

"github.com/celestiaorg/knuu/pkg/knuu"
)

func TestMain(m *testing.M) {
err := knuu.Initialize()
if err != nil {
logrus.Fatalf("error initializing knuu: %v", err)
}
logrus.Infof("Scope: %s", knuu.Scope())
exitVal := m.Run()
os.Exit(exitVal)
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package basic
package system

import (
"context"
"testing"
"time"

"github.com/stretchr/testify/require"

Expand All @@ -12,14 +11,11 @@ import (
"github.com/celestiaorg/knuu/pkg/knuu"
)

// This test is just an example to show how to
// setup the test instance to be built from a git repo
func TestBuildFromGit(t *testing.T) {
t.Parallel()
// Setup

ctx, cancel := context.WithTimeout(context.Background(), 45*time.Minute)
defer cancel()
// Setup
ctx := context.Background()

// The default image builder is kaniko here
kn, err := knuu.New(ctx)
Expand All @@ -30,9 +26,8 @@ func TestBuildFromGit(t *testing.T) {

// This is a blocking call which builds the image from git repo
err = sampleInstance.SetGitRepo(ctx, builder.GitContext{
Repo: "https://github.com/celestiaorg/celestia-app.git",
Branch: "main",
// Commit: "5ce94f4f010e366df301d25cd5d797c3147ff884",
Repo: "https://github.com/celestiaorg/knuu.git",
Branch: "test/build-from-git", // This branch has a Dockerfile and is protected as to not be deleted
Username: "",
Password: "",
})
Expand Down
45 changes: 34 additions & 11 deletions e2e/basic/env_to_json_test.go → e2e/system/env_to_json_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package basic
package system

import (
"encoding/json"
Expand All @@ -15,8 +15,8 @@ import (

func TestEnvToJSON(t *testing.T) {
t.Parallel()
// Setup

// Setup
executor, err := knuu.NewExecutor()
if err != nil {
t.Fatalf("Error creating executor: %v", err)
Expand All @@ -25,15 +25,37 @@ func TestEnvToJSON(t *testing.T) {
const numberOfInstances = 2
instances := make([]*knuu.Instance, numberOfInstances)

// get the values from the .env

test := os.Getenv("TEST")
test2 := os.Getenv("TEST_2")
test3 := os.Getenv("TEST_3")
// Define the env vars
testEnvVarKey1 := "TESTKEY1"
testEnvVarKey2 := "TESTKEY2"
testEnvVarKey3 := "TESTKEY3"
testEnvVarValue1 := "testvalue1"
testEnvVarValue2 := "testvalue2"
testEnvVarValue3 := "testvalue3"

// Set the OS env vars
setEnv := func(key, value string) {
err = os.Setenv(key, value)
if err != nil {
t.Fatalf("Error setting env var '%v': %v", key, err)
}
}
setEnv(testEnvVarKey1, testEnvVarValue1)
setEnv(testEnvVarKey2, testEnvVarValue2)
setEnv(testEnvVarKey3, testEnvVarValue3)

// Define helper function to get env vars
getEnv := func(key string) string {
value := os.Getenv(key)
if value == "" {
t.Fatalf("Error getting env var '%v'", key)
}
return value
}
jsonBytes, err := json.Marshal(map[string]string{
"TEST": test,
"TEST_2": test2,
"TEST_3": test3,
testEnvVarKey1: getEnv(testEnvVarKey1),
testEnvVarKey2: getEnv(testEnvVarKey2),
testEnvVarKey3: getEnv(testEnvVarKey3),
})
if err != nil {
t.Fatalf("Error converting env vars to JSON: %v", err)
Expand Down Expand Up @@ -110,6 +132,7 @@ func TestEnvToJSON(t *testing.T) {
t.Fatalf("Error executing command: %v", err)
}

assert.Equal(t, "{\"TEST\":\"test\",\"TEST_2\":\"test2\",\"TEST_3\":\"test3\"}\n", wget)
expected := fmt.Sprintf("{\"%s\":\"%s\",\"%s\":\"%s\",\"%s\":\"%s\"}\n", testEnvVarKey1, testEnvVarValue1, testEnvVarKey2, testEnvVarValue2, testEnvVarKey3, testEnvVarValue3)
assert.Equal(t, expected, wget)
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package basic
package system

import (
"io"
Expand Down
2 changes: 1 addition & 1 deletion e2e/basic/file_test.go → e2e/system/file_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package basic
package system

import (
"context"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package basic
package system

import (
"fmt"
Expand All @@ -7,6 +7,7 @@ import (

"github.com/stretchr/testify/assert"

"github.com/celestiaorg/knuu/e2e"
"github.com/celestiaorg/knuu/pkg/knuu"
)

Expand All @@ -23,7 +24,7 @@ func TestFileCached(t *testing.T) {

for i := 0; i < numberOfInstances; i++ {
instanceName := fmt.Sprintf("web%d", i+1)
instances[i] = assertCreateInstanceNginxWithVolumeOwner(t, instanceName)
instances[i] = e2e.AssertCreateInstanceNginxWithVolumeOwner(t, instanceName)
}

var wgFolders sync.WaitGroup
Expand All @@ -43,7 +44,7 @@ func TestFileCached(t *testing.T) {

t.Cleanup(func() {
// Cleanup
err := assertCleanupInstances(t, executor, instances)
err := e2e.AssertCleanupInstances(t, executor, instances)
if err != nil {
t.Fatalf("Error cleaning up: %v", err)
}
Expand Down
Loading

0 comments on commit 234ddd7

Please sign in to comment.