Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(varlogtest): add functional options to varlogtest #582

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions pkg/varlogtest/config.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
package varlogtest

import (
"fmt"

"github.com/kakao/varlog/pkg/types"
)

type config struct {
clusterID types.ClusterID
replicationFactor int
}

func newConfig(opts []Option) (config, error) {
cfg := config{}
for _, opt := range opts {
opt.apply(&cfg)
}
if err := cfg.validate(); err != nil {
return config{}, err
}
return cfg, nil
}

func (cfg *config) validate() error {
if cfg.clusterID.Invalid() {
return fmt.Errorf("invalid cluster id %d", cfg.clusterID)
}
if cfg.replicationFactor < 1 {
return fmt.Errorf("invalid replication factor %d", cfg.replicationFactor)
}
return nil
}

type Option interface {
apply(*config)
}

type funcOption struct {
f func(*config)
}

func newFuncOption(f func(*config)) *funcOption {
return &funcOption{f: f}
}

func (fo *funcOption) apply(cfg *config) {
fo.f(cfg)
}

func WithClusterID(cid types.ClusterID) Option {
return newFuncOption(func(cfg *config) {
cfg.clusterID = cid
})
}

func WithReplicationFactor(repfactor int) Option {
return newFuncOption(func(cfg *config) {
cfg.replicationFactor = repfactor
})
}
31 changes: 17 additions & 14 deletions pkg/varlogtest/varlogtest.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ import (
)

type VarlogTest struct {
config

admin *testAdmin
vlg *testLog

clusterID types.ClusterID
replicationFactor int

rng *rand.Rand

mu sync.Mutex
Expand All @@ -41,22 +40,26 @@ type VarlogTest struct {
varlogClientClosed bool
}

func New(clusterID types.ClusterID, replicationFactor int) *VarlogTest {
func New(opts ...Option) (*VarlogTest, error) {
cfg, err := newConfig(opts)
if err != nil {
return nil, err
}

vt := &VarlogTest{
clusterID: clusterID,
replicationFactor: replicationFactor,
rng: rand.New(rand.NewSource(time.Now().UnixMilli())),
storageNodes: make(map[types.StorageNodeID]snpb.StorageNodeMetadataDescriptor),
logStreams: make(map[types.LogStreamID]varlogpb.LogStreamDescriptor),
topics: make(map[types.TopicID]varlogpb.TopicDescriptor),
globalLogEntries: make(map[types.TopicID][]*varlogpb.LogEntry),
localLogEntries: make(map[types.LogStreamID][]*varlogpb.LogEntry),
trimGLSNs: make(map[types.TopicID]types.GLSN),
config: cfg,
rng: rand.New(rand.NewSource(time.Now().UnixMilli())),
storageNodes: make(map[types.StorageNodeID]snpb.StorageNodeMetadataDescriptor),
logStreams: make(map[types.LogStreamID]varlogpb.LogStreamDescriptor),
topics: make(map[types.TopicID]varlogpb.TopicDescriptor),
globalLogEntries: make(map[types.TopicID][]*varlogpb.LogEntry),
localLogEntries: make(map[types.LogStreamID][]*varlogpb.LogEntry),
trimGLSNs: make(map[types.TopicID]types.GLSN),
}
vt.cond = sync.NewCond(&vt.mu)
vt.admin = &testAdmin{vt: vt}
vt.vlg = &testLog{vt: vt}
return vt
return vt, nil
}

func (vt *VarlogTest) Admin() varlog.Admin {
Expand Down
23 changes: 19 additions & 4 deletions pkg/varlogtest/varlogtest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,12 @@ func TestVarlotTest_LogStreamAppender(t *testing.T) {
for _, tc := range tcs {
tc := tc
t.Run(tc.name, func(t *testing.T) {
vt := varlogtest.New(cid, replicationFactor)
vt, err := varlogtest.New(
varlogtest.WithClusterID(cid),
varlogtest.WithReplicationFactor(replicationFactor),
)
require.NoError(t, err)

adm := vt.Admin()
vlg := vt.Log()
defer func() {
Expand Down Expand Up @@ -164,7 +169,12 @@ func TestVarlogTest(t *testing.T) {

rng := rand.New(rand.NewSource(time.Now().UnixMilli()))

vt := varlogtest.New(clusterID, replicationFactor)
vt, err := varlogtest.New(
varlogtest.WithClusterID(clusterID),
varlogtest.WithReplicationFactor(replicationFactor),
)
require.NoError(t, err)

adm := vt.Admin()
vlg := vt.Log()
defer func() {
Expand All @@ -181,7 +191,7 @@ func TestVarlogTest(t *testing.T) {
)

// No topic 1
_, err := adm.DescribeTopic(context.Background(), types.TopicID(1))
_, err = adm.DescribeTopic(context.Background(), types.TopicID(1))
require.Error(t, err)

// Add topics
Expand Down Expand Up @@ -577,7 +587,12 @@ func TestVarlogTest_Trim(t *testing.T) {
numLogs = 10
)

vt := varlogtest.New(clusterID, replicationFactor)
vt, err := varlogtest.New(
varlogtest.WithClusterID(clusterID),
varlogtest.WithReplicationFactor(replicationFactor),
)
require.NoError(t, err)

adm := vt.Admin()
vlg := vt.Log()
defer func() {
Expand Down