mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 10:51:29 +00:00
When a Gomega failure is converted to an error, the stack at the time when the failure occurs may be useful: error wrapping provides some bread crumbs that can be followed to determine where the failure really occurred, but error wrapping may be missing or ambiguous. To provide the additional information, a FailureError now includes a full stack backtrace. The backtrace intentionally makes no attempt to exclude framework functions besides the gomega support itself because helpers like e2e/framework/pod may be relevant. That backtrace is not included in the failure message for the sake of brevity. Instead, it gets logged as part of the test's output.
63 lines
1.6 KiB
Go
63 lines
1.6 KiB
Go
/*
|
|
Copyright 2023 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 framework
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/onsi/gomega"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// This test is sensitive to line numbering.
|
|
// The following lines can be removed to compensate for import changes.
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
// This must be line #40.
|
|
|
|
func TestNewGomega(t *testing.T) {
|
|
if err := Gomega().Expect("hello").To(gomega.Equal("hello")); err != nil {
|
|
t.Errorf("unexpected failure: %s", err.Error())
|
|
}
|
|
err := Gomega().Expect("hello").ToNot(gomega.Equal("hello"))
|
|
require.NotNil(t, err)
|
|
assert.Equal(t, `Expected
|
|
<string>: hello
|
|
not to equal
|
|
<string>: hello`, err.Error())
|
|
if !errors.Is(err, ErrFailure) {
|
|
t.Errorf("expected error that is ErrFailure, got %T: %+v", err, err)
|
|
}
|
|
var failure FailureError
|
|
if !errors.As(err, &failure) {
|
|
t.Errorf("expected error that can be copied to FailureError, got %T: %+v", err, err)
|
|
} else {
|
|
assert.Regexp(t, `^k8s.io/kubernetes/test/e2e/framework.TestNewGomega\(0x[0-9A-Fa-f]*\)
|
|
.*/test/e2e/framework/expect_test.go:46`, failure.Backtrace())
|
|
}
|
|
}
|