-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat(server.go,handlers/clusters_age_handler.go): design the cluster age REST API interface #65
Conversation
I'm punting this to beta4 |
576207b
to
3aa75b1
Compare
// with parameters that would create a filter that is guaranteed to produce no results. One such | ||
// "impossible" query is a "created before" time is after a "created " time that is after (i.e. | ||
// an impossible filter). One | ||
// example of an impossible |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the last sentence fragment here is probably superfluous.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in aa8d553
LGTM, though I'd like to walk through the 4 documented error types, just so I'm 100% on board (I know you spent a lot of thought teasing those out, it'd be nice to catch up with the fruit of your labor). |
return fmt.Sprintf("%s (%s)", k.key, k.time) | ||
} | ||
|
||
// ErrImpossibleFilter is the error returned when a called tries to create a new ClusterAgeFilter |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/called/caller ?
package main | ||
|
||
import ( | ||
// "bytes" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not needed anymore?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed in 8dc8ac9
complete with tests at multiple layers and API documentationoo
assert.NoErr(t, json.NewDecoder(resp.Body).Decode(&respEnvelope)) | ||
assert.Equal(t, len(respEnvelope.Data), 1, "length of the clusters list") | ||
assert.Equal(t, respEnvelope.Data[0].ID, cluster.ID, "returned cluster ID") | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit/not needed for this PR: looks like the only test 'gap' is validating the 400 Bad Request
resp scenarios? (Although the data side appears covered in data/cluster_from_db_filter_by_age_test.go
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep that's right. I've added #85 to track the work to validate the error responses
Partially addresses #60, #58 and #57
Fixes #44
Still TODO:
(*github.com/deis/workflow-manager-api/data/ClusterFromDB).FilterByAge
GET /:apiVersion/clusters/age?...
endpointapi-architecture.md