mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-20 10:20:51 +00:00
The recently introduced failure handling in ExpectNoError depends on error wrapping: if an error prefix gets added with `fmt.Errorf("foo: %v", err)`, then ExpectNoError cannot detect that the root cause is an assertion failure and then will add another useless "unexpected error" prefix and will not dump the additional failure information (currently the backtrace inside the E2E framework). Instead of manually deciding on a case-by-case basis where %w is needed, all error wrapping was updated automatically with sed -i "s/fmt.Errorf\(.*\): '*\(%s\|%v\)'*\",\(.* err)\)/fmt.Errorf\1: %w\",\3/" $(git grep -l 'fmt.Errorf' test/e2e*) This may be unnecessary in some cases, but it's not wrong.
146 lines
3.9 KiB
Go
146 lines
3.9 KiB
Go
/*
|
|
Copyright 2017 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 manifest
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"time"
|
|
|
|
appsv1 "k8s.io/api/apps/v1"
|
|
v1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
utilyaml "k8s.io/apimachinery/pkg/util/yaml"
|
|
"k8s.io/client-go/kubernetes/scheme"
|
|
commonutils "k8s.io/kubernetes/test/e2e/common"
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
e2etestfiles "k8s.io/kubernetes/test/e2e/framework/testfiles"
|
|
)
|
|
|
|
// PodFromManifest reads a .json/yaml file and returns the pod in it.
|
|
func PodFromManifest(filename string) (*v1.Pod, error) {
|
|
var pod v1.Pod
|
|
data, err := e2etestfiles.Read(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
json, err := utilyaml.ToJSON(data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := runtime.DecodeInto(scheme.Codecs.UniversalDecoder(), json, &pod); err != nil {
|
|
return nil, err
|
|
}
|
|
return &pod, nil
|
|
}
|
|
|
|
// SvcFromManifest reads a .json/yaml file and returns the service in it.
|
|
func SvcFromManifest(fileName string) (*v1.Service, error) {
|
|
var svc v1.Service
|
|
data, err := e2etestfiles.Read(fileName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
json, err := utilyaml.ToJSON(data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := runtime.DecodeInto(scheme.Codecs.UniversalDecoder(), json, &svc); err != nil {
|
|
return nil, err
|
|
}
|
|
return &svc, nil
|
|
}
|
|
|
|
// StatefulSetFromManifest returns a StatefulSet from a manifest stored in fileName in the Namespace indicated by ns.
|
|
func StatefulSetFromManifest(fileName, ns string) (*appsv1.StatefulSet, error) {
|
|
var ss appsv1.StatefulSet
|
|
data, err := e2etestfiles.Read(fileName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
statefulsetYaml := commonutils.SubstituteImageName(string(data))
|
|
json, err := utilyaml.ToJSON([]byte(statefulsetYaml))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := runtime.DecodeInto(scheme.Codecs.UniversalDecoder(), json, &ss); err != nil {
|
|
return nil, err
|
|
}
|
|
ss.Namespace = ns
|
|
if ss.Spec.Selector == nil {
|
|
ss.Spec.Selector = &metav1.LabelSelector{
|
|
MatchLabels: ss.Spec.Template.Labels,
|
|
}
|
|
}
|
|
return &ss, nil
|
|
}
|
|
|
|
// DaemonSetFromURL reads from a url and returns the daemonset in it.
|
|
func DaemonSetFromURL(ctx context.Context, url string) (*appsv1.DaemonSet, error) {
|
|
framework.Logf("Parsing ds from %v", url)
|
|
|
|
var response *http.Response
|
|
var err error
|
|
|
|
for i := 1; i <= 5; i++ {
|
|
request, reqErr := http.NewRequestWithContext(ctx, "GET", url, nil)
|
|
if reqErr != nil {
|
|
err = reqErr
|
|
continue
|
|
}
|
|
response, err = http.DefaultClient.Do(request)
|
|
if err == nil && response.StatusCode == 200 {
|
|
break
|
|
}
|
|
time.Sleep(time.Duration(i) * time.Second)
|
|
}
|
|
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Failed to get url: %w", err)
|
|
}
|
|
if response.StatusCode != 200 {
|
|
return nil, fmt.Errorf("invalid http response status: %v", response.StatusCode)
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
data, err := io.ReadAll(response.Body)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Failed to read html response body: %w", err)
|
|
}
|
|
return DaemonSetFromData(data)
|
|
}
|
|
|
|
// DaemonSetFromData reads a byte slice and returns the daemonset in it.
|
|
func DaemonSetFromData(data []byte) (*appsv1.DaemonSet, error) {
|
|
var ds appsv1.DaemonSet
|
|
dataJSON, err := utilyaml.ToJSON(data)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Failed to parse data to json: %w", err)
|
|
}
|
|
|
|
err = runtime.DecodeInto(scheme.Codecs.UniversalDecoder(), dataJSON, &ds)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Failed to decode DaemonSet spec: %w", err)
|
|
}
|
|
return &ds, nil
|
|
}
|