mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
e2e: add cases for defrag and snapshot with authentication
This commit is contained in:
parent
98c60e8faa
commit
e5bf25a3b6
@ -16,15 +16,20 @@ package e2e
|
|||||||
|
|
||||||
import "testing"
|
import "testing"
|
||||||
|
|
||||||
func TestCtlV3Defrag(t *testing.T) { testCtl(t, defragTest) }
|
func TestCtlV3Defrag(t *testing.T) { testCtl(t, defragTest) }
|
||||||
|
func TestCtlV3DefragWithAuth(t *testing.T) { testCtl(t, defragTestWithAuth) }
|
||||||
|
|
||||||
func defragTest(cx ctlCtx) {
|
func maintenanceInitKeys(cx ctlCtx) {
|
||||||
var kvs = []kv{{"key", "val1"}, {"key", "val2"}, {"key", "val3"}}
|
var kvs = []kv{{"key", "val1"}, {"key", "val2"}, {"key", "val3"}}
|
||||||
for i := range kvs {
|
for i := range kvs {
|
||||||
if err := ctlV3Put(cx, kvs[i].key, kvs[i].val, ""); err != nil {
|
if err := ctlV3Put(cx, kvs[i].key, kvs[i].val, ""); err != nil {
|
||||||
cx.t.Fatal(err)
|
cx.t.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func defragTest(cx ctlCtx) {
|
||||||
|
maintenanceInitKeys(cx)
|
||||||
|
|
||||||
if err := ctlV3Compact(cx, 4, cx.compactPhysical); err != nil {
|
if err := ctlV3Compact(cx, 4, cx.compactPhysical); err != nil {
|
||||||
cx.t.Fatal(err)
|
cx.t.Fatal(err)
|
||||||
@ -35,6 +40,29 @@ func defragTest(cx ctlCtx) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func defragTestWithAuth(cx ctlCtx) {
|
||||||
|
maintenanceInitKeys(cx)
|
||||||
|
|
||||||
|
if err := authEnable(cx); err != nil {
|
||||||
|
cx.t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
cx.user, cx.pass = "root", "root"
|
||||||
|
authSetupTestUser(cx)
|
||||||
|
|
||||||
|
// ordinal user cannot defrag
|
||||||
|
cx.user, cx.pass = "test-user", "pass"
|
||||||
|
if err := ctlV3Defrag(cx); err == nil {
|
||||||
|
cx.t.Fatal("ordinal user should not be able to issue a defrag request")
|
||||||
|
}
|
||||||
|
|
||||||
|
// root can defrag
|
||||||
|
cx.user, cx.pass = "root", "root"
|
||||||
|
if err := ctlV3Defrag(cx); err != nil {
|
||||||
|
cx.t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func ctlV3Defrag(cx ctlCtx) error {
|
func ctlV3Defrag(cx ctlCtx) error {
|
||||||
cmdArgs := append(cx.PrefixArgs(), "defrag")
|
cmdArgs := append(cx.PrefixArgs(), "defrag")
|
||||||
lines := make([]string, cx.epc.cfg.clusterSize)
|
lines := make([]string, cx.epc.cfg.clusterSize)
|
||||||
|
@ -32,12 +32,7 @@ import (
|
|||||||
func TestCtlV3Snapshot(t *testing.T) { testCtl(t, snapshotTest) }
|
func TestCtlV3Snapshot(t *testing.T) { testCtl(t, snapshotTest) }
|
||||||
|
|
||||||
func snapshotTest(cx ctlCtx) {
|
func snapshotTest(cx ctlCtx) {
|
||||||
var kvs = []kv{{"key", "val1"}, {"key", "val2"}, {"key", "val3"}}
|
maintenanceInitKeys(cx)
|
||||||
for i := range kvs {
|
|
||||||
if err := ctlV3Put(cx, kvs[i].key, kvs[i].val, ""); err != nil {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
leaseID, err := ctlV3LeaseGrant(cx, 100)
|
leaseID, err := ctlV3LeaseGrant(cx, 100)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -250,3 +245,42 @@ func TestIssue6361(t *testing.T) {
|
|||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCtlV3SnapshotWithAuth(t *testing.T) { testCtl(t, snapshotTestWithAuth) }
|
||||||
|
|
||||||
|
func snapshotTestWithAuth(cx ctlCtx) {
|
||||||
|
maintenanceInitKeys(cx)
|
||||||
|
|
||||||
|
if err := authEnable(cx); err != nil {
|
||||||
|
cx.t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
cx.user, cx.pass = "root", "root"
|
||||||
|
authSetupTestUser(cx)
|
||||||
|
|
||||||
|
fpath := "test.snapshot"
|
||||||
|
defer os.RemoveAll(fpath)
|
||||||
|
|
||||||
|
// ordinal user cannot save a snapshot
|
||||||
|
cx.user, cx.pass = "test-user", "pass"
|
||||||
|
if err := ctlV3SnapshotSave(cx, fpath); err == nil {
|
||||||
|
cx.t.Fatal("ordinal user should not be able to save a snapshot")
|
||||||
|
}
|
||||||
|
|
||||||
|
// root can save a snapshot
|
||||||
|
cx.user, cx.pass = "root", "root"
|
||||||
|
if err := ctlV3SnapshotSave(cx, fpath); err != nil {
|
||||||
|
cx.t.Fatalf("snapshotTest ctlV3SnapshotSave error (%v)", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
st, err := getSnapshotStatus(cx, fpath)
|
||||||
|
if err != nil {
|
||||||
|
cx.t.Fatalf("snapshotTest getSnapshotStatus error (%v)", err)
|
||||||
|
}
|
||||||
|
if st.Revision != 4 {
|
||||||
|
cx.t.Fatalf("expected 4, got %d", st.Revision)
|
||||||
|
}
|
||||||
|
if st.TotalKey < 3 {
|
||||||
|
cx.t.Fatalf("expected at least 3, got %d", st.TotalKey)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user