-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
258 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,219 @@ | ||
//go:build e2e | ||
// +build e2e | ||
|
||
package release | ||
|
||
import ( | ||
"context" | ||
"crypto/rand" | ||
"encoding/hex" | ||
"flag" | ||
"fmt" | ||
"io" | ||
"net/http" | ||
"os" | ||
"os/exec" | ||
"path" | ||
"testing" | ||
"time" | ||
|
||
"github.com/edgelesssys/contrast/e2e/internal/kubeclient" | ||
"github.com/edgelesssys/contrast/e2e/internal/kuberesource" | ||
"github.com/edgelesssys/contrast/internal/kubeapi" | ||
"github.com/google/go-github/v61/github" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
// namespace the tests are executed in. | ||
const ( | ||
opensslFrontend = "openssl-frontend" | ||
opensslBackend = "openssl-backend" | ||
) | ||
|
||
var ( | ||
owner = flag.String("owner", "edgelesssys", "TODO") | ||
repo = flag.String("repo", "contrast", "TODO") | ||
tag = flag.String("tag", "", "TODO") | ||
namespace = flag.String("namespace", "", "TODO") | ||
keep = flag.Bool("keep", false, "") | ||
) | ||
|
||
func copyRelease(t *testing.T, releaseDir string) string { | ||
require := require.New(t) | ||
|
||
dir := t.TempDir() | ||
infos, err := os.ReadDir(releaseDir) | ||
require.NoError(err) | ||
for _, info := range infos { | ||
src, err := os.Open(path.Join(releaseDir, info.Name())) | ||
require.NoError(err) | ||
dst, err := os.OpenFile(path.Join(dir, info.Name()), os.O_CREATE|os.O_RDWR, 0o777) | ||
require.NoError(err) | ||
_, err = io.Copy(dst, src) | ||
require.NoError(err) | ||
src.Close() | ||
dst.Close() | ||
} | ||
|
||
return dir | ||
} | ||
|
||
func fetchRelease(ctx context.Context, t *testing.T) string { | ||
ctx, cancel := context.WithTimeout(ctx, 2*time.Minute) | ||
defer cancel() | ||
require := require.New(t) | ||
gh := github.NewClient(nil).WithAuthToken(os.Getenv("GH_TOKEN")) | ||
|
||
dir := t.TempDir() | ||
|
||
// Find our target release. There is GetReleaseByTag, but we may be looking for a draft release. | ||
rels, _, err := gh.Repositories.ListReleases(ctx, *owner, *repo, nil) | ||
require.NoError(err) | ||
var release *github.RepositoryRelease | ||
for _, rel := range rels { | ||
if *rel.TagName == *tag { | ||
release = rel | ||
break | ||
} | ||
} | ||
require.NotNil(release) | ||
|
||
for _, asset := range release.Assets { | ||
f, err := os.OpenFile(path.Join(dir, *asset.Name), os.O_CREATE|os.O_RDWR, 0o777) | ||
require.NoError(err) | ||
body, _, err := gh.Repositories.DownloadReleaseAsset(ctx, *owner, *repo, *asset.ID, http.DefaultClient) | ||
require.NoError(err) | ||
_, err = io.Copy(f, body) | ||
require.NoError(err) | ||
f.Close() | ||
} | ||
|
||
return dir | ||
} | ||
|
||
func TestRelease(t *testing.T) { | ||
ctx := context.Background() | ||
k := kubeclient.NewForTest(t) | ||
|
||
if *namespace == "" { | ||
*namespace = randomNamespace(t) | ||
} | ||
|
||
require.True(t, t.Run("create-namespace", func(t *testing.T) { | ||
require := require.New(t) | ||
ctx, cancel := context.WithTimeout(ctx, 1*time.Minute) | ||
defer cancel() | ||
|
||
res, err := kuberesource.ResourcesToUnstructured([]any{kuberesource.Namespace(*namespace)}) | ||
require.NoError(err) | ||
require.NoError(k.Apply(ctx, res...)) | ||
}), "the namespace is required for subsequent tests to run") | ||
|
||
t.Cleanup(func() { | ||
if *keep { | ||
return | ||
} | ||
ctx, cancel := context.WithTimeout(ctx, 1*time.Minute) | ||
defer cancel() | ||
|
||
res, err := kuberesource.ResourcesToUnstructured([]any{kuberesource.Namespace(*namespace)}) | ||
if err != nil { | ||
return | ||
} | ||
k.Delete(ctx, res...) | ||
}) | ||
|
||
// dir := fetchRelease(ctx, t) | ||
dir := copyRelease(t, "/tmp/releasetest") | ||
|
||
contrast := &runner{path.Join(dir, "contrast")} | ||
|
||
for _, sub := range []string{"help"} { | ||
contrast.Run(t, ctx, 2*time.Second, sub) | ||
} | ||
|
||
var coordinatorIP string | ||
require.True(t, t.Run("apply-coordinator", func(t *testing.T) { | ||
require := require.New(t) | ||
ctx, cancel := context.WithTimeout(ctx, 5*time.Minute) | ||
defer cancel() | ||
|
||
yaml, err := os.ReadFile(path.Join(dir, "coordinator.yml")) | ||
require.NoError(err) | ||
resources, err := kubeapi.UnmarshalUnstructuredK8SResource(yaml) | ||
require.NoError(err) | ||
|
||
for _, r := range resources { | ||
require.NoError(k.PatchNamespace(*namespace, r)) | ||
} | ||
|
||
require.NoError(k.Apply(ctx, resources...)) | ||
require.NoError(k.WaitForDeployment(ctx, *namespace, "coordinator")) | ||
coordinatorIP, err = k.WaitForLoadBalancer(ctx, *namespace, "coordinator") | ||
require.NoError(err) | ||
}), "the coordinator is required for subsequent tests to run") | ||
|
||
require.True(t, t.Run("unpack-deployment", func(t *testing.T) { | ||
require := require.New(t) | ||
ctx, cancel := context.WithTimeout(ctx, 10*time.Second) | ||
defer cancel() | ||
|
||
cmd := exec.CommandContext(ctx, "unzip", "emojivoto-demo.zip") | ||
cmd.Dir = dir | ||
out, err := cmd.CombinedOutput() | ||
require.NoError(err, "output:\n%s", string(out)) | ||
|
||
infos, err := os.ReadDir(path.Join(dir, "deployment")) | ||
require.NoError(err) | ||
for _, info := range infos { | ||
name := path.Join(path.Join(dir, "deployment"), info.Name()) | ||
yaml, err := os.ReadFile(name) | ||
resources, err := kubeapi.UnmarshalUnstructuredK8SResource(yaml) | ||
require.NoError(err) | ||
|
||
for _, r := range resources { | ||
require.NoError(k.PatchNamespace(*namespace, r)) | ||
} | ||
newYAML, err := kuberesource.EncodeUnstructured(resources) | ||
require.NoError(err) | ||
require.NoError(os.WriteFile(name, newYAML, 0o644)) | ||
|
||
} | ||
}), "unpacking needs to succeed for subsequent tests to run") | ||
|
||
contrast.Run(t, ctx, 2*time.Minute, "generate", "deployment/") | ||
contrast.Run(t, ctx, 1*time.Minute, "set", "-c", coordinatorIP+":1313", "deployment/") | ||
contrast.Run(t, ctx, 1*time.Minute, "verify", "-c", coordinatorIP+":1313") | ||
|
||
// TODO: apply and test emojivoto | ||
} | ||
|
||
type runner struct { | ||
path string | ||
} | ||
|
||
func (r *runner) Run(t *testing.T, ctx context.Context, timeout time.Duration, args ...string) { | ||
require.True(t, t.Run(args[0], func(t *testing.T) { | ||
ctx, cancel := context.WithTimeout(ctx, timeout) | ||
defer cancel() | ||
cmd := exec.CommandContext(ctx, r.path, args...) | ||
cmd.Dir = path.Dir(r.path) | ||
out, err := cmd.CombinedOutput() | ||
require.NoError(t, err, "output:\n%s", string(out)) | ||
}), args[0]+" needs to succeed for subsequent tests to run") | ||
} | ||
|
||
func randomNamespace(t *testing.T) string { | ||
buf := make([]byte, 4) | ||
n, err := rand.Read(buf) | ||
require.NoError(t, err) | ||
require.Equal(t, 4, n) | ||
return "releasetest-" + hex.EncodeToString(buf) | ||
} | ||
|
||
func TestMain(m *testing.M) { | ||
flag.Parse() | ||
|
||
fmt.Printf("Release: %s/%s@%s\n", *owner, *repo, *tag) | ||
os.Exit(m.Run()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters