-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refresh rangePermCache when snapshot is applied
Signed-off-by: Oleg Guba <oleg@dropbox.com>
- Loading branch information
Showing
3 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
package e2e | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
clientv3 "go.etcd.io/etcd/client/v3" | ||
"go.etcd.io/etcd/tests/v3/framework/config" | ||
"go.etcd.io/etcd/tests/v3/framework/e2e" | ||
"sync" | ||
"testing" | ||
) | ||
|
||
func TestAuthCluster(t *testing.T) { | ||
e2e.BeforeTest(t) | ||
cfg := &e2e.EtcdProcessClusterConfig{ | ||
ClusterSize: 1, | ||
InitialToken: "new", | ||
SnapshotCount: 2, | ||
} | ||
ctx, cancel := context.WithCancel(context.Background()) | ||
defer cancel() | ||
|
||
epc, err := e2e.NewEtcdProcessCluster(ctx, t, cfg) | ||
if err != nil { | ||
t.Fatalf("could not start etcd process cluster (%v)", err) | ||
} | ||
defer func() { | ||
if err := epc.Close(); err != nil { | ||
t.Fatalf("could not close test cluster (%v)", err) | ||
} | ||
}() | ||
|
||
epcClient := epc.Client() | ||
createUsers(ctx, t, epcClient) | ||
|
||
if _, err := epcClient.AuthEnable(ctx); err != nil { | ||
t.Fatalf("could not enable Auth: (%v)", err) | ||
} | ||
|
||
numKeys := 10 | ||
testUserClientOpts := e2e.WithAuth("test", "testPassword") | ||
rootUserClientOpts := e2e.WithAuth("root", "rootPassword") | ||
writeKeys(ctx, epc.Client(testUserClientOpts), numKeys, "test") | ||
|
||
if err := epc.StartNewProc(ctx, t, rootUserClientOpts); err != nil { | ||
t.Fatalf("could not start second etcd process (%v)", err) | ||
} | ||
|
||
writeKeys(ctx, epc.Client(testUserClientOpts), numKeys, "test_two_nodes") | ||
|
||
hashKvs, err := epc.Client(rootUserClientOpts).HashKV(ctx, int64(numKeys*2)) | ||
if err != nil { | ||
t.Fatalf("could not HashKV (%v)", err) | ||
} | ||
|
||
revisionSet := false | ||
var revision int64 | ||
var hash uint32 | ||
for _, v := range hashKvs { | ||
if !revisionSet { | ||
revision = v.Header.GetRevision() | ||
hash = v.Hash | ||
revisionSet = true | ||
continue | ||
} | ||
if revision != v.Header.GetRevision() || hash != v.Hash { | ||
t.Errorf("Inconsistent revisions found:") | ||
for _, v := range hashKvs { | ||
t.Errorf("%+v", v) | ||
} | ||
t.Fail() | ||
} | ||
} | ||
} | ||
|
||
func createUsers(ctx context.Context, t *testing.T, client *e2e.EtcdctlV3) { | ||
if _, err := client.UserAdd(ctx, "root", "rootPassword", config.UserAddOptions{}); err != nil { | ||
t.Fatalf("could not add root user (%v)", err) | ||
} | ||
if _, err := client.UserGrantRole(ctx, "root", "root"); err != nil { | ||
t.Fatalf("could not grant root role to root user (%v)", err) | ||
} | ||
|
||
if _, err := client.RoleAdd(ctx, "test"); err != nil { | ||
t.Fatalf("could not create 'test' role (%v)", err) | ||
} | ||
if _, err := client.RoleGrantPermission(ctx, "test", "/test/", "/test0", clientv3.PermissionType(clientv3.PermReadWrite)); err != nil { | ||
t.Fatalf("could not RoleGrantPermission (%v)", err) | ||
} | ||
if _, err := client.UserAdd(ctx, "test", "testPassword", config.UserAddOptions{}); err != nil { | ||
t.Fatalf("could not add user test (%v)", err) | ||
} | ||
if _, err := client.UserGrantRole(ctx, "test", "test"); err != nil { | ||
t.Fatalf("could not grant test role user (%v)", err) | ||
} | ||
} | ||
|
||
func writeKeys(ctx context.Context, client *e2e.EtcdctlV3, numKeys int, value string) { | ||
writeThreads := 10 | ||
|
||
type kv struct { | ||
key string | ||
value string | ||
} | ||
q := make(chan kv) | ||
|
||
wg := sync.WaitGroup{} | ||
for i := 0; i <= writeThreads; i++ { | ||
wg.Add(1) | ||
go func() { | ||
for { | ||
item, ok := <-q | ||
if !ok { | ||
break | ||
} | ||
if err := client.Put(ctx, item.key, item.value, config.PutOptions{}); err != nil { | ||
panic(err) | ||
} | ||
} | ||
wg.Done() | ||
}() | ||
} | ||
|
||
for i := 0; i <= numKeys; i++ { | ||
q <- kv{key: fmt.Sprintf("/test/%d", i), value: value} | ||
} | ||
close(q) | ||
|
||
wg.Wait() | ||
} |