forked from pingcap/dm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
heartbeat_test.go
112 lines (89 loc) · 2.75 KB
/
heartbeat_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright 2019 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 syncer
import (
"context"
. "github.com/pingcap/check"
"github.com/pingcap/tidb-tools/pkg/filter"
"github.com/pingcap/dm/dm/config"
)
var _ = Suite(&testHeartbeatSuite{})
type testHeartbeatSuite struct {
from config.DBConfig
lag map[string]float64
}
func (t *testHeartbeatSuite) SetUpSuite(c *C) {
t.from = getDBConfigFromEnv()
t.lag = make(map[string]float64)
reportLagFunc = t.reportLag
}
func (t *testHeartbeatSuite) TestTearDown(c *C) {
reportLagFunc = reportLag
}
func (t *testHeartbeatSuite) reportLag(taskName string, lag float64) {
t.lag[taskName] = lag
}
func (t *testHeartbeatSuite) TestHeartbeatConfig(c *C) {
cfg1 := &HeartbeatConfig{
serverID: 123,
masterCfg: t.from,
updateInterval: int64(1),
reportInterval: int64(1),
}
cfg2 := &HeartbeatConfig{
serverID: 234,
masterCfg: t.from,
updateInterval: int64(1),
reportInterval: int64(1),
}
err := cfg1.Equal(cfg2)
c.Assert(err, ErrorMatches, ".*serverID not equal.*")
}
func (t *testHeartbeatSuite) TestHeartbeat(c *C) {
heartbeat, err := GetHeartbeat(&HeartbeatConfig{
serverID: 123,
masterCfg: t.from,
updateInterval: int64(1),
reportInterval: int64(1),
})
c.Assert(err, IsNil)
err = heartbeat.AddTask("heartbeat_test_1")
c.Assert(err, IsNil)
err = heartbeat.AddTask("heartbeat_test_1")
c.Assert(err, ErrorMatches, ".*already exists.*")
err = heartbeat.AddTask("heartbeat_test_2")
c.Assert(err, IsNil)
err = heartbeat.updateTS()
c.Assert(err, IsNil)
err = heartbeat.calculateLag(context.Background())
c.Assert(err, IsNil)
c.Assert(t.lag, Not(Equals), float64(0))
oldlag1 := t.lag["heartbeat_test_1"]
oldlag2 := t.lag["heartbeat_test_2"]
heartbeat.TryUpdateTaskTs("heartbeat_test_1", filter.DMHeartbeatSchema, filter.DMHeartbeatTable, [][]interface{}{
{
"2019-05-15 15:25:42",
int32(123),
},
})
err = heartbeat.calculateLag(context.Background())
c.Assert(err, IsNil)
c.Assert(t.lag["heartbeat_test_1"], Not(Equals), oldlag1)
c.Assert(t.lag["heartbeat_test_2"], Equals, oldlag2)
err = heartbeat.RemoveTask("wrong")
c.Assert(err, ErrorMatches, ".*not found.*")
err = heartbeat.RemoveTask("heartbeat_test_1")
c.Assert(err, IsNil)
err = heartbeat.RemoveTask("heartbeat_test_2")
c.Assert(err, IsNil)
}