mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Thanks to this, unix sockets should be not longer created by integration tests in the the source code directory, so potentially trigger IDE reloads and unnecessery load (and mess).
167 lines
4.5 KiB
Go
167 lines
4.5 KiB
Go
// Copyright 2019 The etcd Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package v2store_test
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"go.etcd.io/etcd/client/v3"
|
|
"go.etcd.io/etcd/pkg/v3/testutil"
|
|
"go.etcd.io/etcd/server/v3/etcdserver/api/v2store"
|
|
"go.etcd.io/etcd/server/v3/etcdserver/api/v2v3"
|
|
"go.etcd.io/etcd/tests/v3/integration"
|
|
)
|
|
|
|
// TODO: fix tests
|
|
|
|
func runWithCluster(t testing.TB, runner func(testing.TB, []string)) {
|
|
testutil.BeforeTest(t)
|
|
cfg := integration.ClusterConfig{Size: 1}
|
|
clus := integration.NewClusterV3(t, &cfg)
|
|
defer clus.Terminate(t)
|
|
endpoints := []string{clus.Client(0).Endpoints()[0]}
|
|
runner(t, endpoints)
|
|
|
|
}
|
|
|
|
func TestCreateKV(t *testing.T) { runWithCluster(t, testCreateKV) }
|
|
|
|
func testCreateKV(t testing.TB, endpoints []string) {
|
|
testCases := []struct {
|
|
key string
|
|
value string
|
|
nodes int
|
|
unique bool
|
|
wantErr bool
|
|
wantKeyMatch bool
|
|
}{
|
|
{key: "/cdir/create", value: "1", nodes: 1, wantKeyMatch: true},
|
|
{key: "/cdir/create", value: "4", wantErr: true},
|
|
// TODO: unique doesn't create nodes, skip these tests for now
|
|
//{key: "hello", value: "2", unique: true, wantKeyMatch: false},
|
|
//{key: "hello", value: "3", unique: true, wantKeyMatch: false},
|
|
}
|
|
|
|
cli, err := clientv3.New(clientv3.Config{Endpoints: endpoints})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer cli.Close()
|
|
v2 := v2v3.NewStore(cli, "")
|
|
|
|
for ti, tc := range testCases {
|
|
ev, err := v2.Create(tc.key, false, tc.value, tc.unique, v2store.TTLOptionSet{})
|
|
if tc.wantErr && err != nil {
|
|
continue
|
|
}
|
|
if err != nil {
|
|
t.Skipf("%d: got err %v", ti, err)
|
|
}
|
|
|
|
if tc.wantKeyMatch && tc.key != ev.Node.Key {
|
|
t.Skipf("%d: %v != %v", ti, tc.key, ev.Node.Key)
|
|
}
|
|
if !tc.wantKeyMatch && !strings.HasPrefix(ev.Node.Key, tc.key) {
|
|
t.Skipf("%d: %v is not prefix of %v", ti, tc.key, ev.Node.Key)
|
|
}
|
|
|
|
evg, err := v2.Get(tc.key, false, false)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if evg.Node.CreatedIndex != ev.Node.CreatedIndex {
|
|
t.Skipf("%d: %v != %v", ti, evg.Node.CreatedIndex, ev.Node.CreatedIndex)
|
|
}
|
|
|
|
t.Logf("%d: %v %s %v\n", ti, ev.Node.Key, *ev.Node.Value, ev.Node.CreatedIndex)
|
|
}
|
|
}
|
|
|
|
func TestSetKV(t *testing.T) { runWithCluster(t, testSetKV) }
|
|
|
|
func testSetKV(t testing.TB, endpoints []string) {
|
|
testCases := []struct {
|
|
key string
|
|
value string
|
|
dir bool
|
|
wantIndexMatch bool
|
|
}{
|
|
{key: "/sdir/set", value: "1", wantIndexMatch: true},
|
|
{key: "/sdir/set", value: "4", wantIndexMatch: false},
|
|
}
|
|
|
|
cli, err := clientv3.New(clientv3.Config{Endpoints: endpoints})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer cli.Close()
|
|
v2 := v2v3.NewStore(cli, "")
|
|
|
|
for ti, tc := range testCases {
|
|
ev, err := v2.Set(tc.key, false, tc.value, v2store.TTLOptionSet{})
|
|
if err != nil {
|
|
t.Skipf("%d: got err %v", ti, err)
|
|
}
|
|
|
|
if tc.value != *ev.Node.Value {
|
|
t.Skipf("%d: %v != %v", ti, tc.value, *ev.Node.Value)
|
|
}
|
|
|
|
if tc.wantIndexMatch && ev.Node.CreatedIndex != ev.Node.ModifiedIndex {
|
|
t.Skipf("%d: index %v != %v", ti, ev.Node.CreatedIndex, ev.Node.ModifiedIndex)
|
|
}
|
|
|
|
t.Logf("%d: %v %s %v\n", ti, ev.Node.Key, *ev.Node.Value, ev.Node.CreatedIndex)
|
|
}
|
|
}
|
|
|
|
func TestCreateSetDir(t *testing.T) { runWithCluster(t, testCreateSetDir) }
|
|
|
|
func testCreateSetDir(t testing.TB, endpoints []string) {
|
|
testCases := []struct {
|
|
dir string
|
|
}{
|
|
{dir: "/ddir/1/2/3"},
|
|
{dir: "/ddir/1/2/3"},
|
|
}
|
|
|
|
cli, err := clientv3.New(clientv3.Config{Endpoints: endpoints})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer cli.Close()
|
|
v2 := v2v3.NewStore(cli, "")
|
|
|
|
for ti, tc := range testCases {
|
|
ev, err := v2.Create(tc.dir, true, "", false, v2store.TTLOptionSet{})
|
|
if err != nil {
|
|
t.Skipf("%d: got err %v", ti, err)
|
|
}
|
|
_, err = v2.Create(tc.dir, true, "", false, v2store.TTLOptionSet{})
|
|
if err == nil {
|
|
t.Skipf("%d: expected err got nil", ti)
|
|
}
|
|
|
|
ev, err = v2.Delete("ddir", true, true)
|
|
if err != nil {
|
|
t.Skipf("%d: got err %v", ti, err)
|
|
}
|
|
|
|
t.Logf("%d: %v %s %v\n", ti, ev.EtcdIndex, ev.PrevNode.Key, ev.PrevNode.CreatedIndex)
|
|
}
|
|
}
|