Skip to content
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

Adding a simple dataref extension #1018

Merged
merged 1 commit into from
Mar 24, 2025

Conversation

matzew
Copy link
Member

@matzew matzew commented Feb 20, 2024

Inspired by the java sdk, adding a go implementation for dataref extension

Fixes #198

@matzew matzew force-pushed the add_dataref_extension branch from 7c1fbd1 to e84d5f0 Compare February 20, 2024 08:28
const DataRefExtensionKey = "dataref"

type DataRefExtension struct {
DataRef string `json:"dataref"`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not that it matters much but I'm curious why it's a struct instead of just a string? Are you leaving the option open that one day we may need to include extra metadata along with the URL?

@matzew
Copy link
Member Author

matzew commented Feb 20, 2024 via email

duglin
duglin previously approved these changes Feb 20, 2024
Copy link
Contributor

@duglin duglin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Comment on lines 14 to 69
func TestAddDataRefExtensionValidURL(t *testing.T) {
e := event.New()
expectedDataRef := "https://example.com/data"

err := AddDataRefExtension(&e, expectedDataRef)
if err != nil {
t.Fatalf("Failed to add DataRefExtension with valid URL: %s", err)
}
}

func TestAddDataRefExtensionInvalidURL(t *testing.T) {
e := event.New()
invalidDataRef := "://invalid-url"

err := AddDataRefExtension(&e, invalidDataRef)
if err == nil {
t.Fatal("Expected error when adding DataRefExtension with invalid URL, but got none")
}
}

func TestGetDataRefExtensionNotFound(t *testing.T) {
e := event.New()

_, ok := GetDataRefExtension(e)
if ok {
t.Fatal("Expected not to find DataRefExtension, but did")
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like Java unit tests :)

nit: can we use table-driven tests so those tests are easier to modify/add later? Example here:

func TestRequestWithRetries_linear(t *testing.T) {

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just noticed you might be following the distributed tracing implementation which uses same style...whatever you prefer

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good point

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@matzew I'd like to merge this PR - did you want to update something based on this comment?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ping @matzew

@duglin
Copy link
Contributor

duglin commented Mar 22, 2024

rebase needed

@duglin duglin force-pushed the add_dataref_extension branch from e84d5f0 to 40188ae Compare July 16, 2024 12:12
@duglin duglin requested a review from a team as a code owner July 16, 2024 12:12
@duglin duglin force-pushed the add_dataref_extension branch from 40188ae to 58f801f Compare September 26, 2024 13:47
@duglin duglin force-pushed the add_dataref_extension branch from 58f801f to f0848db Compare March 19, 2025 14:00
@duglin duglin force-pushed the add_dataref_extension branch from f0848db to 09c9b2c Compare March 21, 2025 11:47
@duglin
Copy link
Contributor

duglin commented Mar 21, 2025

@matzew @embano1 tweaked the tests to be table driven per @embano1 's request.

@embano1 for the review/merge.

@duglin
Copy link
Contributor

duglin commented Mar 21, 2025

Added ref to #198 so it'll close it once we merge

@duglin duglin force-pushed the add_dataref_extension branch from 09c9b2c to 26ade34 Compare March 22, 2025 13:33
func TestGetDataRefExtensionNotFound(t *testing.T) {
e := event.New()

_, ok := GetDataRefExtension(e)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: missing positive case getting extension

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

doi!

@duglin duglin force-pushed the add_dataref_extension branch from 26ade34 to 9c287f1 Compare March 22, 2025 17:40
@duglin
Copy link
Contributor

duglin commented Mar 22, 2025

Added more tests.
I changed the getter to return "nil" instead of an empty struct when it's not set. I think checking for nil is more appropriate, more go-ish.

}
return &DataRefExtension{DataRef: dataRefStr}, true
}
return nil, false
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry Doug for this nit, but let's keep the value semantics here because using pointer can lead to (ownership) surprises (without checking the rest of the code, I assume we mostly use value semantics for core CE fields).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typically (convention?), if an error is returned, the value should not be used (we can add a comment to make it even more explicit). Alternatively, If needed, users can check for the zero value with https://pkg.go.dev/reflect#Value.IsZero.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is actually one of the reasons I prefer to return nil - I find the entire Zero value stuff annoying when nil is much more clear . If we return a Zero struct then it's too easy for someone to think the dataref is set but with "" - which is a valid URL. But I see at least one of the other extensions does it without a pointer so I'll just hold my nose and switch it back.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIRC, Go is moving to making it easier to understand zero values (recently they did it with time for example) because nil has so many edges, most importantly surprising side effects for SDK users due to ownership/pointer semantics.

nit: we should add comments to these new public methods.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

t.Fatalf("Retrieved dataref(%v) doesn't match set value(%s)",
dr, test.dataref)
}
} else {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: I think it's safe to remove the else and directly jump to the next if without changing test semantics?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we need it because we only want to fail when the dataref is set on the "failed" case, not when the pass is expected to pass.

@duglin duglin force-pushed the add_dataref_extension branch from 9c287f1 to 435db4a Compare March 23, 2025 23:18
@duglin
Copy link
Contributor

duglin commented Mar 23, 2025

@embano1 updated

Signed-off-by: Matthias Wessendorf <mwessend@redhat.com>
Signed-off-by: Doug Davis <duglin@gmail.com>
@duglin duglin force-pushed the add_dataref_extension branch from 435db4a to 535da92 Compare March 24, 2025 09:35
@embano1 embano1 enabled auto-merge March 24, 2025 10:14
Copy link
Member

@embano1 embano1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@embano1 embano1 merged commit 69cfc2d into cloudevents:main Mar 24, 2025
9 checks passed
This was referenced Mar 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement Dataref (Claim Check Pattern)
3 participants