2021-07-01 23:08:35 +00:00
|
|
|
package etcd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
2021-10-12 06:13:10 +00:00
|
|
|
"time"
|
2021-07-01 23:08:35 +00:00
|
|
|
|
|
|
|
"github.com/rancher/k3s/pkg/clientaccess"
|
|
|
|
"github.com/rancher/k3s/pkg/daemons/config"
|
2021-08-10 18:13:26 +00:00
|
|
|
testutil "github.com/rancher/k3s/tests/util"
|
2021-07-01 23:08:35 +00:00
|
|
|
"github.com/robfig/cron/v3"
|
2021-07-02 19:55:47 +00:00
|
|
|
clientv3 "go.etcd.io/etcd/client/v3"
|
2021-10-12 06:13:10 +00:00
|
|
|
utilnet "k8s.io/apimachinery/pkg/util/net"
|
2021-07-01 23:08:35 +00:00
|
|
|
)
|
|
|
|
|
2021-10-12 06:13:10 +00:00
|
|
|
func mustGetAddress() string {
|
|
|
|
ipAddr, err := utilnet.ChooseHostInterface()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return ipAddr.String()
|
|
|
|
}
|
|
|
|
|
2021-07-01 23:08:35 +00:00
|
|
|
func generateTestConfig() *config.Control {
|
2021-10-12 06:13:10 +00:00
|
|
|
agentReady := make(chan struct{})
|
|
|
|
close(agentReady)
|
2021-07-01 23:08:35 +00:00
|
|
|
return &config.Control{
|
2021-10-12 06:13:10 +00:00
|
|
|
Runtime: &config.ControlRuntime{AgentReady: agentReady},
|
2021-07-01 23:08:35 +00:00
|
|
|
HTTPSPort: 6443,
|
|
|
|
SupervisorPort: 6443,
|
|
|
|
AdvertisePort: 6443,
|
|
|
|
ClusterDomain: "cluster.local",
|
|
|
|
ClusterDNS: net.ParseIP("10.43.0.10"),
|
2021-10-07 19:47:00 +00:00
|
|
|
ClusterIPRange: testutil.ClusterIPNet(),
|
2021-07-01 23:08:35 +00:00
|
|
|
DataDir: "/tmp/k3s/", // Different than the default value
|
|
|
|
FlannelBackend: "vxlan",
|
|
|
|
EtcdSnapshotName: "etcd-snapshot",
|
|
|
|
EtcdSnapshotCron: "0 */12 * * *",
|
|
|
|
EtcdSnapshotRetention: 5,
|
|
|
|
EtcdS3Endpoint: "s3.amazonaws.com",
|
|
|
|
EtcdS3Region: "us-east-1",
|
|
|
|
SANs: []string{"127.0.0.1"},
|
2021-10-07 19:47:00 +00:00
|
|
|
ServiceIPRange: testutil.ServiceIPNet(),
|
2021-07-01 23:08:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func generateTestHandler() http.Handler {
|
|
|
|
return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {})
|
|
|
|
}
|
|
|
|
|
2021-07-26 16:59:33 +00:00
|
|
|
func Test_UnitETCD_IsInitialized(t *testing.T) {
|
2021-07-01 23:08:35 +00:00
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
config *config.Control
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
setup func(*config.Control) error
|
|
|
|
teardown func(*config.Control) error
|
|
|
|
want bool
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Directory exists",
|
|
|
|
args: args{
|
|
|
|
ctx: context.TODO(),
|
|
|
|
config: generateTestConfig(),
|
|
|
|
},
|
|
|
|
setup: func(cnf *config.Control) error {
|
2021-08-10 18:13:26 +00:00
|
|
|
if err := testutil.GenerateDataDir(cnf); err != nil {
|
2021-07-01 23:08:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return os.MkdirAll(walDir(cnf), 0700)
|
|
|
|
},
|
|
|
|
teardown: func(cnf *config.Control) error {
|
2021-08-10 18:13:26 +00:00
|
|
|
testutil.CleanupDataDir(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
return os.Remove(walDir(cnf))
|
|
|
|
},
|
|
|
|
wantErr: false,
|
|
|
|
want: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Directory does not exist",
|
|
|
|
args: args{
|
|
|
|
ctx: context.TODO(),
|
|
|
|
config: generateTestConfig(),
|
|
|
|
},
|
|
|
|
setup: func(cnf *config.Control) error {
|
2021-08-10 18:13:26 +00:00
|
|
|
if err := testutil.GenerateDataDir(cnf); err != nil {
|
2021-07-01 23:08:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// We don't care if removal fails to find the dir
|
|
|
|
os.Remove(walDir(cnf))
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
teardown: func(cnf *config.Control) error {
|
2021-08-10 18:13:26 +00:00
|
|
|
testutil.CleanupDataDir(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
wantErr: false,
|
|
|
|
want: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
e := NewETCD()
|
|
|
|
defer tt.teardown(tt.args.config)
|
|
|
|
if err := tt.setup(tt.args.config); err != nil {
|
|
|
|
t.Errorf("Prep for ETCD.IsInitialized() failed = %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
got, err := e.IsInitialized(tt.args.ctx, tt.args.config)
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("ETCD.IsInitialized() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if got != tt.want {
|
|
|
|
t.Errorf("ETCD.IsInitialized() = %+v\nWant = %+v", got, tt.want)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-26 16:59:33 +00:00
|
|
|
func Test_UnitETCD_Register(t *testing.T) {
|
2021-07-01 23:08:35 +00:00
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
config *config.Control
|
|
|
|
handler http.Handler
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
setup func(cnf *config.Control) error
|
|
|
|
teardown func(cnf *config.Control) error
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Call Register with standard config",
|
|
|
|
args: args{
|
|
|
|
ctx: context.TODO(),
|
|
|
|
config: generateTestConfig(),
|
|
|
|
handler: generateTestHandler(),
|
|
|
|
},
|
|
|
|
setup: func(cnf *config.Control) error {
|
2021-08-10 18:13:26 +00:00
|
|
|
return testutil.GenerateRuntime(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
},
|
|
|
|
teardown: func(cnf *config.Control) error {
|
2021-08-10 18:13:26 +00:00
|
|
|
testutil.CleanupDataDir(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Call Register with a tombstone file created",
|
|
|
|
args: args{
|
|
|
|
ctx: context.TODO(),
|
|
|
|
config: generateTestConfig(),
|
|
|
|
handler: generateTestHandler(),
|
|
|
|
},
|
|
|
|
setup: func(cnf *config.Control) error {
|
2021-08-10 18:13:26 +00:00
|
|
|
if err := testutil.GenerateRuntime(cnf); err != nil {
|
2021-07-01 23:08:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := os.MkdirAll(etcdDBDir(cnf), 0700); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
tombstoneFile := filepath.Join(etcdDBDir(cnf), "tombstone")
|
|
|
|
if _, err := os.Create(tombstoneFile); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
teardown: func(cnf *config.Control) error {
|
|
|
|
tombstoneFile := filepath.Join(etcdDBDir(cnf), "tombstone")
|
|
|
|
os.Remove(tombstoneFile)
|
2021-08-10 18:13:26 +00:00
|
|
|
testutil.CleanupDataDir(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
e := NewETCD()
|
|
|
|
|
|
|
|
defer tt.teardown(tt.args.config)
|
|
|
|
if err := tt.setup(tt.args.config); err != nil {
|
|
|
|
t.Errorf("Setup for ETCD.Register() failed = %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_, err := e.Register(tt.args.ctx, tt.args.config, tt.args.handler)
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("ETCD.Register() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-26 16:59:33 +00:00
|
|
|
func Test_UnitETCD_Start(t *testing.T) {
|
2021-10-12 06:13:10 +00:00
|
|
|
type contextInfo struct {
|
|
|
|
ctx context.Context
|
|
|
|
cancel context.CancelFunc
|
|
|
|
}
|
2021-07-01 23:08:35 +00:00
|
|
|
type fields struct {
|
2021-10-12 06:13:10 +00:00
|
|
|
context contextInfo
|
2021-07-02 19:55:47 +00:00
|
|
|
client *clientv3.Client
|
2021-07-01 23:08:35 +00:00
|
|
|
config *config.Control
|
|
|
|
name string
|
|
|
|
address string
|
|
|
|
cron *cron.Cron
|
|
|
|
s3 *S3
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
clientAccessInfo *clientaccess.Info
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
2021-10-12 06:13:10 +00:00
|
|
|
setup func(cnf *config.Control, ctxInfo *contextInfo) error
|
|
|
|
teardown func(cnf *config.Control, ctxInfo *contextInfo) error
|
2021-07-01 23:08:35 +00:00
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Start etcd without clientAccessInfo and without snapshots",
|
|
|
|
fields: fields{
|
|
|
|
config: generateTestConfig(),
|
2021-10-12 06:13:10 +00:00
|
|
|
address: mustGetAddress(),
|
|
|
|
name: "default",
|
2021-07-01 23:08:35 +00:00
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
clientAccessInfo: nil,
|
|
|
|
},
|
2021-10-12 06:13:10 +00:00
|
|
|
setup: func(cnf *config.Control, ctxInfo *contextInfo) error {
|
|
|
|
ctxInfo.ctx, ctxInfo.cancel = context.WithCancel(context.Background())
|
2021-07-01 23:08:35 +00:00
|
|
|
cnf.EtcdDisableSnapshots = true
|
2021-08-10 18:13:26 +00:00
|
|
|
return testutil.GenerateRuntime(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
},
|
2021-10-12 06:13:10 +00:00
|
|
|
teardown: func(cnf *config.Control, ctxInfo *contextInfo) error {
|
|
|
|
ctxInfo.cancel()
|
|
|
|
time.Sleep(5 * time.Second)
|
2021-08-10 18:13:26 +00:00
|
|
|
testutil.CleanupDataDir(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Start etcd without clientAccessInfo on",
|
|
|
|
fields: fields{
|
|
|
|
config: generateTestConfig(),
|
2021-10-12 06:13:10 +00:00
|
|
|
address: mustGetAddress(),
|
|
|
|
name: "default",
|
2021-07-01 23:08:35 +00:00
|
|
|
cron: cron.New(),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
clientAccessInfo: nil,
|
|
|
|
},
|
2021-10-12 06:13:10 +00:00
|
|
|
setup: func(cnf *config.Control, ctxInfo *contextInfo) error {
|
|
|
|
ctxInfo.ctx, ctxInfo.cancel = context.WithCancel(context.Background())
|
2021-08-10 18:13:26 +00:00
|
|
|
return testutil.GenerateRuntime(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
},
|
2021-10-12 06:13:10 +00:00
|
|
|
teardown: func(cnf *config.Control, ctxInfo *contextInfo) error {
|
|
|
|
ctxInfo.cancel()
|
|
|
|
time.Sleep(5 * time.Second)
|
2021-08-10 18:13:26 +00:00
|
|
|
testutil.CleanupDataDir(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Start etcd with an existing cluster",
|
|
|
|
fields: fields{
|
|
|
|
config: generateTestConfig(),
|
2021-10-12 06:13:10 +00:00
|
|
|
address: mustGetAddress(),
|
|
|
|
name: "default",
|
2021-07-01 23:08:35 +00:00
|
|
|
cron: cron.New(),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
clientAccessInfo: nil,
|
|
|
|
},
|
2021-10-12 06:13:10 +00:00
|
|
|
setup: func(cnf *config.Control, ctxInfo *contextInfo) error {
|
|
|
|
ctxInfo.ctx, ctxInfo.cancel = context.WithCancel(context.Background())
|
2021-08-10 18:13:26 +00:00
|
|
|
if err := testutil.GenerateRuntime(cnf); err != nil {
|
2021-07-01 23:08:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return os.MkdirAll(walDir(cnf), 0700)
|
|
|
|
},
|
2021-10-12 06:13:10 +00:00
|
|
|
teardown: func(cnf *config.Control, ctxInfo *contextInfo) error {
|
|
|
|
ctxInfo.cancel()
|
|
|
|
time.Sleep(5 * time.Second)
|
2021-08-10 18:13:26 +00:00
|
|
|
testutil.CleanupDataDir(cnf)
|
2021-07-01 23:08:35 +00:00
|
|
|
os.Remove(walDir(cnf))
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
e := &ETCD{
|
|
|
|
client: tt.fields.client,
|
|
|
|
config: tt.fields.config,
|
|
|
|
name: tt.fields.name,
|
2021-10-12 06:13:10 +00:00
|
|
|
runtime: tt.fields.config.Runtime,
|
2021-07-01 23:08:35 +00:00
|
|
|
address: tt.fields.address,
|
|
|
|
cron: tt.fields.cron,
|
|
|
|
s3: tt.fields.s3,
|
|
|
|
}
|
2021-10-12 06:13:10 +00:00
|
|
|
defer tt.teardown(e.config, &tt.fields.context)
|
|
|
|
if err := tt.setup(e.config, &tt.fields.context); err != nil {
|
2021-07-01 23:08:35 +00:00
|
|
|
t.Errorf("Setup for ETCD.Start() failed = %v", err)
|
|
|
|
return
|
|
|
|
}
|
2021-10-12 06:13:10 +00:00
|
|
|
if err := e.Start(tt.fields.context.ctx, tt.args.clientAccessInfo); (err != nil) != tt.wantErr {
|
2021-07-01 23:08:35 +00:00
|
|
|
t.Errorf("ETCD.Start() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|