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

fix(cli): distinguish between subjectSet and subjectID in check command #985

Closed
wants to merge 2 commits into from

Conversation

treilik
Copy link

@treilik treilik commented Aug 14, 2022

attempt of fixing #850 but the command:

./keto check 'videos:/cats/1.mp4#owner' view videos '/cats/1.mp4'
still Outputs "Denied" even though it should be "Allowed" because of:

NAMESPACE       OBJECT          RELATION NAME   SUBJECT
videos          /cats/1.mp4     view            videos:/cats/1.mp4#owner

@CLAassistant
Copy link

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@hperl
Copy link
Collaborator

hperl commented Aug 16, 2022

Hi, and thanks for your contribution! It looks quite solid already, but could you add some tests to see that it actually works? Thanks!

var s *rts.Subject

// distinguish between subjectSet and subjectID
if strings.Contains(subject, "#") {
Copy link
Collaborator

Choose a reason for hiding this comment

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

I'd rather distinguish based on : here, since the relation could be empty (= wildcard) for a subject set, e.g., check users:Foo access files README.md.

@treilik
Copy link
Author

treilik commented Aug 17, 2022

Hi, and thanks for your contribution! It looks quite solid already, but could you add some tests to see that it actually works? Thanks!

Hi, Yes I'll do :)

Copy link
Member

@zepatrik zepatrik left a comment

Choose a reason for hiding this comment

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

Thanks, sorry for the late review. Had a few out-of-office days.
There is just a few small things needed for the test to pass 😉

@@ -57,6 +57,15 @@ func (r *RelationTuple) ToProto() *rts.RelationTuple {
return res
}

func (s *SubjectSet) ToProto() *rts.SubjectSet {
Copy link
Member

Choose a reason for hiding this comment

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

It seems this is not used? I'd recommend to remove it again then 😉

Comment on lines 40 to 56
for _, subjectID := range subjects {
c.createTuple(t, &ketoapi.RelationTuple{
Namespace: n.Name,
Object: obj,
Relation: rel,
SubjectID: &subjectID,
})
}

ss := &ketoapi.SubjectSet{
Namespace: n.Name,
Object: obj,
Relation: rel,
}
rt := &ketoapi.RelationTuple{
Object: obj,
SubjectSet: ss,
Namespace: n.Name,
Relation: rel,
}

assert.True(t, c.check(t, rt))
Copy link
Member

Choose a reason for hiding this comment

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

The reason why this test is failing is that the created tuples are not related to the checked tuple. It would be sufficient here to just create one tuple with a subject set and then check for the same tuple.

Comment on lines 52 to 68
var s *rts.Subject

// distinguish between subjectSet and subjectID
if strings.Contains(subject, ":") {
su := &ketoapi.SubjectSet{}
su, err := su.FromString(subject)
if err != nil {
return err
}

s = rts.NewSubjectSet(su.Namespace, su.Object, su.Relation)
} else {
s = rts.NewSubjectID(subject)
}
Copy link
Member

Choose a reason for hiding this comment

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

I'd prefer to make this a small helper function that has its own unit test. That way we can specifically test for the subject parsing of the CLI with more edge cases. The e2e test makes sense as it is right now as well just to ensure that subject sets are parsed and supported by all clients.

zepatrik added a commit that referenced this pull request Sep 2, 2022
@zepatrik zepatrik closed this in 93aee83 Sep 2, 2022
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.

None yet

4 participants