Skip to content

Commit

Permalink
Merge pull request #10549 from rifelpet/kubetest2-tester
Browse files Browse the repository at this point in the history
Kubetest2 - use our own tester that wraps kubetest2's ginkgo tester
  • Loading branch information
k8s-ci-robot committed Jan 11, 2021
2 parents 225e5ef + f671acc commit f4c9b27
Show file tree
Hide file tree
Showing 5 changed files with 307 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,15 @@ test-e2e:
cd /home/prow/go/src/k8s.io/kops/tests/e2e && \
export GO111MODULE=on && \
go get sigs.k8s.io/kubetest2@latest && \
go get sigs.k8s.io/kubetest2/kubetest2-tester-ginkgo@latest && \
go install ./kubetest2-tester-kops && \
go install ./kubetest2-kops
kubetest2 kops \
-v 2 \
--build --up --down \
--cloud-provider=aws \
--kops-binary-path=/home/prow/go/src/k8s.io/kops/bazel-bin/cmd/kops/linux-amd64/kops \
--kubernetes-version=v1.19.4 \
--test=ginkgo \
--test=kops \
-- \
--test-package-version=v1.19.4 \
--parallel 25 \
Expand Down
25 changes: 25 additions & 0 deletions tests/e2e/kubetest2-tester-kops/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
Copyright 2021 The Kubernetes Authors.
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 main

import (
tester "k8s.io/kops/tests/e2e/pkg/tester"
)

func main() {
tester.Main()
}
196 changes: 196 additions & 0 deletions tests/e2e/pkg/tester/kubectl.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
/*
Copyright 2021 The Kubernetes Authors.
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 tester

import (
"archive/tar"
"compress/gzip"
"crypto/sha256"
"encoding/hex"
"fmt"
"io"
"io/ioutil"
"os"
"path"
"path/filepath"
"runtime"
"strings"

"k8s.io/klog/v2"
"sigs.k8s.io/kubetest2/pkg/exec"
)

// AcquireKubectl obtains kubectl and places it in a temporary directory
func (t *Tester) AcquireKubectl() (string, error) {
// first, get the name of the latest release (e.g. v1.20.0-alpha.0)
if t.TestPackageVersion == "" {
cmd := exec.Command(
"gsutil",
"cat",
fmt.Sprintf("gs://%s/%s/latest.txt", t.TestPackageBucket, t.TestPackageDir),
)
lines, err := exec.OutputLines(cmd)
if err != nil {
return "", fmt.Errorf("failed to get latest release name: %s", err)
}
if len(lines) == 0 {
return "", fmt.Errorf("getting latest release name had no output")
}
t.TestPackageVersion = lines[0]

klog.Infof("Kubectl package version was not specified. Defaulting to latest: %s", t.TestPackageVersion)
}

clientTar := fmt.Sprintf("kubernetes-client-%s-%s.tar.gz", runtime.GOOS, runtime.GOARCH)

downloadDir, err := os.UserCacheDir()
if err != nil {
return "", fmt.Errorf("failed to get user cache directory: %v", err)
}

downloadPath := filepath.Join(downloadDir, clientTar)

if err := t.ensureClientTar(downloadPath, clientTar); err != nil {
return "", err
}

return t.extractBinaries(downloadPath)
}

func (t *Tester) extractBinaries(downloadPath string) (string, error) {
// finally, search for the client package and extract it
f, err := os.Open(downloadPath)
if err != nil {
return "", fmt.Errorf("failed to open downloaded tar at %s: %s", downloadPath, err)
}
defer f.Close()
gzf, err := gzip.NewReader(f)
if err != nil {
return "", fmt.Errorf("failed to create gzip reader: %s", err)
}
tarReader := tar.NewReader(gzf)

kubectlDir, err := ioutil.TempDir("", "kubectl")
if err != nil {
return "", err
}

// this is the expected path of the package inside the tar
// it will be extracted to kubectlDir in the loop
kubectlPackagePath := "kubernetes/client/bin/kubectl"
for {
header, err := tarReader.Next()
if err == io.EOF {
break
}
if err != nil {
return "", fmt.Errorf("error during tar read: %s", err)
}

if header.Name == kubectlPackagePath {
kubectlPath := path.Join(kubectlDir, "kubectl")
outFile, err := os.Create(kubectlPath)
if err != nil {
return "", fmt.Errorf("error creating file at %s: %s", kubectlPath, err)
}
defer outFile.Close()

if err := outFile.Chmod(0700); err != nil {
return "", fmt.Errorf("failed to make %s executable: %s", kubectlPath, err)
}

if _, err := io.Copy(outFile, tarReader); err != nil {
return "", fmt.Errorf("error reading data from tar with header name %s: %s", header.Name, err)
}
return kubectlPath, nil
}
}
return "", fmt.Errorf("failed to find %s in %s", kubectlPackagePath, downloadPath)
}

// ensureClientTar checks if the kubernetes client tarball already exists
// and verifies the hashes
// else downloads it from GCS
func (t *Tester) ensureClientTar(downloadPath, clientTar string) error {
if _, err := os.Stat(downloadPath); err == nil {
klog.V(0).Infof("Found existing tar at %v", downloadPath)
if err := t.compareSHA(downloadPath, clientTar); err == nil {
klog.V(0).Infof("Validated hash for existing tar at %v", downloadPath)
return nil
}
klog.Warning(err)
}

args := []string{
"gsutil", "cp",
fmt.Sprintf(
"gs://%s/%s/%s/%s",
t.TestPackageBucket,
t.TestPackageDir,
t.TestPackageVersion,
clientTar,
),
downloadPath,
}
klog.Info(strings.Join(args, " "))

cmd := exec.Command(args[0], args[1:]...)
exec.InheritOutput(cmd)
if err := cmd.Run(); err != nil {
return fmt.Errorf("failed to download release tar %s for release %s: %s", clientTar, t.TestPackageVersion, err)
}
return nil
}

func (t *Tester) compareSHA(downloadPath string, clientTar string) error {
cmd := exec.Command("gsutil", "cat",
fmt.Sprintf(
"gs://%s/%s/%s/%s",
t.TestPackageBucket,
t.TestPackageDir,
t.TestPackageVersion,
clientTar+".sha256",
),
)
expectedSHABytes, err := exec.Output(cmd)
if err != nil {
return fmt.Errorf("failed to get sha256 for release tar %s for release %s: %s", clientTar, t.TestPackageVersion, err)
}
expectedSHA := strings.TrimSuffix(string(expectedSHABytes), "\n")
actualSHA, err := sha256sum(downloadPath)
if err != nil {
return fmt.Errorf("failed to compute sha256 for %q: %v", downloadPath, err)
}
if actualSHA != expectedSHA {
return fmt.Errorf("sha256 does not match")
}
return nil
}

func sha256sum(path string) (string, error) {
f, err := os.Open(path)
if err != nil {
return "", err
}
defer f.Close()

h := sha256.New()
if _, err := io.Copy(h, f); err != nil {
return "", err
}
return hex.EncodeToString(h.Sum(nil)), nil
}
82 changes: 82 additions & 0 deletions tests/e2e/pkg/tester/tester.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/*
Copyright 2021 The Kubernetes Authors.
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 tester

import (
"fmt"
"os"
"path/filepath"

"github.com/octago/sflags/gen/gpflag"
"k8s.io/klog/v2"

"sigs.k8s.io/kubetest2/pkg/testers/ginkgo"
)

// Tester wraps kubetest2's ginkgo tester with additional functionality
type Tester struct {
*ginkgo.Tester
}

func (t *Tester) pretestSetup() error {
kubectlPath, err := t.AcquireKubectl()
if err != nil {
return fmt.Errorf("failed to get kubectl package from published releases: %s", err)
}

existingPath := os.Getenv("PATH")
newPath := fmt.Sprintf("%v:%v", filepath.Dir(kubectlPath), existingPath)
klog.Info("Setting PATH=", newPath)
return os.Setenv("PATH", newPath)
}

func (t *Tester) execute() error {
fs, err := gpflag.Parse(t)
if err != nil {
return fmt.Errorf("failed to initialize tester: %v", err)
}

help := fs.BoolP("help", "h", false, "")
if err := fs.Parse(os.Args); err != nil {
return fmt.Errorf("failed to parse flags: %v", err)
}

if *help {
fs.SetOutput(os.Stdout)
fs.PrintDefaults()
return nil
}

if err := t.pretestSetup(); err != nil {
return err
}

return t.Execute()
}

func NewDefaultTester() *Tester {
return &Tester{
ginkgo.NewDefaultTester(),
}
}

func Main() {
t := NewDefaultTester()
if err := t.execute(); err != nil {
klog.Fatalf("failed to run ginkgo tester: %v", err)
}
}
4 changes: 2 additions & 2 deletions tests/e2e/scenarios/upgrade/run-test
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ KUBETEST2_COMMON_ARGS="${KUBETEST2_COMMON_ARGS} --admin-access=${ADMIN_ACCESS:-}

export GO111MODULE=on
go get sigs.k8s.io/kubetest2@latest
go get sigs.k8s.io/kubetest2/kubetest2-tester-ginkgo@latest

cd ${REPO_ROOT}/tests/e2e
go install ./kubetest2-kops
go install ./kubetest2-tester-kops

kubetest2 kops ${KUBETEST2_COMMON_ARGS} --build --kops-root=${REPO_ROOT} --stage-location=${STAGE_LOCATION:-}

Expand Down Expand Up @@ -59,7 +59,7 @@ fi

kubetest2 kops ${KUBETEST2_COMMON_ARGS} \
--cloud-provider=${CLOUD_PROVIDER} \
--test=ginkgo \
--test=kops \
-- \
--test-package-version=v1.19.4 \
--parallel 25 \
Expand Down

0 comments on commit f4c9b27

Please sign in to comment.