-
Notifications
You must be signed in to change notification settings - Fork 3.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
feat(x/circuit): Add validation for permission when an account is assigned and validation for msgURL #22460
feat(x/circuit): Add validation for permission when an account is assigned and validation for msgURL #22460
Changes from 1 commit
db68f2d
bda9cae
3bc3fe4
6d3de88
57c69c2
47242f1
bd395b9
2b68c2e
542997e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,20 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
package types | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import "errors" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (p *Permissions) Validation() error { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
switch { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case p.Level == Permissions_LEVEL_SOME_MSGS: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// if permission is some msg, LimitTypeUrls array must not be empty | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if len(p.LimitTypeUrls) == 0 { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return errors.New("LimitTypeUrls of LEVEL_SOME_MSGS should NOT be empty") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case p.Level == Permissions_LEVEL_ALL_MSGS || p.Level == Permissions_LEVEL_SUPER_ADMIN: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// if permission is all msg or super addmin, LimitTypeUrls array clear | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// all p.LimitTypeUrls since we not use this field | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.LimitTypeUrls = nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add validation for unknown permission levels The default case should return an error for unknown permission levels instead of silently succeeding. This ensures proper error handling for all possible cases. Apply this diff: func (p *Permissions) Validation() error {
switch {
case p.Level == Permissions_LEVEL_SOME_MSGS:
// if permission is some msg, LimitTypeUrls array must not be empty
if len(p.LimitTypeUrls) == 0 {
return errors.New("LimitTypeUrls of LEVEL_SOME_MSGS should NOT be empty")
}
case p.Level == Permissions_LEVEL_ALL_MSGS || p.Level == Permissions_LEVEL_SUPER_ADMIN:
// if permission is all msg or super addmin, LimitTypeUrls array clear
// all p.LimitTypeUrls since we not use this field
p.LimitTypeUrls = nil
default:
+ return errors.New("unknown permission level")
}
return nil
} 📝 Committable suggestion
Suggested change
|
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.
🛠️ Refactor suggestion
Enhance SOME_MSGS validation test coverage
The test should include:
📝 Committable suggestion