-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
assert: make YAML dependency pluggable via build tags #1579
Conversation
Cc: @Al2Klimov as you proposed #1120. I think this should fit you use case. |
Make the YAML dependency required for {assert,require}.YAMLEq{,f} pluggable. The implementation can be selected using build tags: - testify_yaml_default (default): gopkg.in/yaml.v3 is used, like before - testify_yaml_fail: YAML deserialization is not implemented and always fails. So assert.YAMLEq always fails. This is useful if the test suite package doesn't use assert.YAMLEq (very common case). - testify_yaml_custom: the github.com/stretchr/testify/assert/yaml package exposes an Unmarshal variable of type func([]byte, any) error (same as gopkg.in/yaml.v3) that allows to plug any alternate implementation. For example github.com/goccy/go-yaml.Unmarshal. This allows to avoid the link constraints of the license of gopkg.in/yaml.v3 (see PR #1120). Usage: go test -tags testify_yaml_fail To install the alternate implementation with testify_yaml_custom: //go:build testify_yaml_custom package my_pkg_test import ( goyaml "github.com/goccy/go-yaml" "github.com/stretchr/testify/assert/yaml" ) func init() { yaml.Unmarshal = goyaml.Unmarshal }
c002665
to
d3dbb19
Compare
I am hesitant to use this approach. Are there any unforseen consequences? This will not remove yaml from the go.mod or that of any of module importing assert. Yes, you can show that you don't actually use yaml in your build, but you can already show that you don't compile it in as you only use it in your test. If the original reporter does actually have utility for this then I might be more swayed. |
None.
In fact this doesn't. But there is nothing we can do about that as long as we keep the
In #1120 I expect the requester didn't want even to have |
Note that I have also serious concerns about the state of the maintenance of |
Cc: @jasdel In project github.com/jmespath/go-jmespath you vendored Testify at v1.5.1 because of the upgrade of go-yaml from v2 to v3. |
@dolmen thanks for the ping. I'm not a maintainer of that project anymore. But with that said, splitting the yaml as a non-required dependency would address the issue I ran into when originally filing the issue. In the case of The only call out about this is that libraries or another app that depend on |
@dolmen OT, but I've opened go-yaml/yaml#1034 |
Summary
Make the YAML module dependency required for
assert.YAMLEq
(and family) pluggable.Changes
github.com/stretchr/testify/assert/yaml
that wraps the dependency. It exposes justfunc Unmarshal([]byte, interface{}) error
(the only function imported fromgopkg.in/yaml.v3
forassert
).gopkg.in/yaml.v3.Unmarshal
.Motivation
The dependency on
gopkg.in/yaml.v3
for YAML deserialization (used byassert.YAMLEq
) is causing painful maintenance work. Both for this project, and for downstream projects (end users). Unfortunately we can't just dropassert.YAMLEq
untilv2
.However this change allows to mitigate the issue by giving freedom to users to avoid the link constraints. This allows:
gopkg.in/yaml.v3
: see Replace Apache 2.0 licensed gopkg.in/yaml.v3 with MIT licensed github.com/goccy/go-yaml #1120gopkg.in/yaml.v3
: like previous Update gopkg.in/yaml.v3 #1192, Fixing CVE-2022-28948 #1193, gopkg.in/yaml.v3 has unhandled exception #1194, upgrade objx to fix vulnerability #1280, Please migrate to new Yaml Version V3 #1241, Yaml3.0.0 vulnerability via objx v0.5.0 #1292, Fix CVE-2022-28948 - Removegopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
#1532 (I wrote irrelevant because selecting a particular version of a module is the final responsibility of users in downstream projects who assemble a program: downstream projects have all the infrastructure in the Go toolchain to handle such issues without harassing upstream projects' maintainers)The
github.com/stretchr/testify/assert/yaml
implementation can be selected using build tags:testify_yaml_default
(default):gopkg.in/yaml.v3
is used, like beforetestify_yaml_fail
: YAML deserialization is not implemented and always fails. Soassert.YAMLEq
always fails. This is useful if the test suite package doesn't useassert.YAMLEq
(very common case).testify_yaml_custom
: the (new)github.com/stretchr/testify/assert/yaml
package exposes anUnmarshal
variable of typefunc([]byte, any) error
(same asgopkg.in/yaml.v3.Unmarshal
) that allows to plug any alternate implementation. For examplegithub.com/goccy/go-yaml.Unmarshal
.Usage:
To install an alternate implementation with
testify_yaml_custom
(as requested in #1120):Related issues