mirror of
https://github.com/redis/go-redis.git
synced 2025-11-26 06:23:09 +03:00
feat(errors): Introduce typed errors (#3602)
* typed errors * add error documentation * backwards compatibility * update readme, remove Is methods * Update internal/proto/redis_errors.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update internal/proto/redis_errors.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * support error wrapping for io and context errors * use unwrapping of errors in push for consistency * add common error types * fix test * fix flaky test * add comments in the example --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -306,7 +306,7 @@ var _ = Describe("ACL permissions", Label("NonRedisEnterprise"), func() {
|
||||
|
||||
// no perm for dropindex
|
||||
err = c.FTDropIndex(ctx, "txt").Err()
|
||||
Expect(err).ToNot(BeEmpty())
|
||||
Expect(err).To(HaveOccurred())
|
||||
Expect(err.Error()).To(ContainSubstring("NOPERM"))
|
||||
|
||||
// json set and get have perm
|
||||
@@ -315,7 +315,7 @@ var _ = Describe("ACL permissions", Label("NonRedisEnterprise"), func() {
|
||||
|
||||
// no perm for json clear
|
||||
err = c.JSONClear(ctx, "foo", "$").Err()
|
||||
Expect(err).ToNot(BeEmpty())
|
||||
Expect(err).To(HaveOccurred())
|
||||
Expect(err.Error()).To(ContainSubstring("NOPERM"))
|
||||
|
||||
// perm for reserve
|
||||
@@ -323,7 +323,7 @@ var _ = Describe("ACL permissions", Label("NonRedisEnterprise"), func() {
|
||||
|
||||
// no perm for info
|
||||
err = c.BFInfo(ctx, "bloom").Err()
|
||||
Expect(err).ToNot(BeEmpty())
|
||||
Expect(err).To(HaveOccurred())
|
||||
Expect(err.Error()).To(ContainSubstring("NOPERM"))
|
||||
|
||||
// perm for cf.reserve
|
||||
@@ -338,7 +338,7 @@ var _ = Describe("ACL permissions", Label("NonRedisEnterprise"), func() {
|
||||
Expect(c.TSCreate(ctx, "tsts").Err()).NotTo(HaveOccurred())
|
||||
// noperm for ts.info
|
||||
err = c.TSInfo(ctx, "tsts").Err()
|
||||
Expect(err).ToNot(BeEmpty())
|
||||
Expect(err).To(HaveOccurred())
|
||||
Expect(err.Error()).To(ContainSubstring("NOPERM"))
|
||||
|
||||
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred())
|
||||
|
||||
Reference in New Issue
Block a user