Skip to content
This repository has been archived by the owner on Nov 24, 2023. It is now read-only.

add dumpling unit test #1115

Merged
merged 12 commits into from
Oct 9, 2020
5 changes: 5 additions & 0 deletions dumpling/dumpling.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ func (m *Dumpling) Process(ctx context.Context, pr chan pb.ProcessResult) {
return
}

failpoint.Inject("dumpUnitProcessCancel", func() {
m.logger.Info("mock dump unit cancel", zap.String("failpoint", "dumpUnitProcessCancel"))
<-ctx.Done()
})

newCtx, cancel := context.WithCancel(ctx)
err = export.Dump(newCtx, m.dumpConfig)
cancel()
Expand Down
116 changes: 116 additions & 0 deletions dumpling/dumpling_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
// Copyright 2020 PingCAP, Inc.
//
// 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,
// See the License for the specific language governing permissions and
// limitations under the License.

package dumpling

import (
"context"
"os"
"strconv"
"testing"
"time"

"github.com/pingcap/dm/dm/config"
"github.com/pingcap/dm/dm/pb"
"github.com/pingcap/dm/pkg/log"
"github.com/pingcap/failpoint"

. "github.com/pingcap/check"
)

var _ = Suite(&testDumplingSuite{})

func TestSuite(t *testing.T) {
TestingT(t)
}

type testDumplingSuite struct {
cfg *config.SubTaskConfig
}

func getDBConfigFromEnv() config.DBConfig {
host := os.Getenv("MYSQL_HOST")
if host == "" {
host = "127.0.0.1"
}
port, _ := strconv.Atoi(os.Getenv("MYSQL_PORT"))
if port == 0 {
port = 3306
}
user := os.Getenv("MYSQL_USER")
if user == "" {
user = "root"
}
pswd := os.Getenv("MYSQL_PSWD")
return config.DBConfig{
Host: host,
User: user,
Password: pswd,
Port: port,
}
}

func (d *testDumplingSuite) SetUpSuite(c *C) {
dir := c.MkDir()
d.cfg = &config.SubTaskConfig{
Name: "dumpling_ut",
From: getDBConfigFromEnv(),
LoaderConfig: config.LoaderConfig{
Dir: dir,
},
}
c.Assert(log.InitLogger(&log.Config{}), IsNil)
}

func (d *testDumplingSuite) TestDumpling(c *C) {
dumpling := NewDumpling(d.cfg)
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how about only use WithTimeout in third dumpling.Process, I'm afraid when CI runs slowly it will fail

defer cancel()

err := dumpling.Init(ctx)
c.Assert(err, IsNil)
resultCh := make(chan pb.ProcessResult, 1)

dumpling.Process(ctx, resultCh)
c.Assert(len(resultCh), Equals, 1)
result := <-resultCh
c.Assert(result.IsCanceled, IsFalse)
c.Assert(len(result.Errors), Equals, 0, Commentf("errors: %v", result.Errors))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't forget to remove this Commentf since it's zero-length


c.Assert(failpoint.Enable("github.com/pingcap/dm/dumpling/dumpUnitProcessWithError", `return("unknown error")`), IsNil)
// nolint:errcheck
defer failpoint.Disable("github.com/pingcap/dm/dumpling/dumpUnitProcessWithError")

// return error
dumpling.Process(ctx, resultCh)
c.Assert(len(resultCh), Equals, 1)
result = <-resultCh
c.Assert(result.IsCanceled, IsFalse)
c.Assert(len(result.Errors), Equals, 1)
c.Assert(result.Errors[0].Message, Equals, "unknown error")

// nolint:errcheck
failpoint.Disable("github.com/pingcap/dm/dumpling/dumpUnitProcessWithError")

c.Assert(failpoint.Enable("github.com/pingcap/dm/dumpling/dumpUnitProcessCancel", `return("unknown error")`), IsNil)
// nolint:errcheck
defer failpoint.Disable("github.com/pingcap/dm/dumpling/dumpUnitProcessCancel")

// cancel
dumpling.Process(ctx, resultCh)
c.Assert(len(resultCh), Equals, 1)
result = <-resultCh
c.Assert(result.IsCanceled, IsTrue)
c.Assert(len(result.Errors), Equals, 1)
c.Assert(result.Errors[0].String(), Matches, ".*context deadline exceeded.*")
}
9 changes: 0 additions & 9 deletions dumpling/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,13 @@ package dumpling

import (
"strings"
"testing"

"github.com/pingcap/dm/dm/config"
"github.com/pingcap/dm/pkg/log"

. "github.com/pingcap/check"
)

var _ = Suite(&testDumplingSuite{})

func TestSuite(t *testing.T) {
TestingT(t)
}

type testDumplingSuite struct{}

func (m *testDumplingSuite) TestParseArgs(c *C) {
logger := log.L()

Expand Down