forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
decoder_test.go
159 lines (144 loc) · 6.14 KB
/
decoder_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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// 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 decoder
import (
"testing"
"time"
. "github.com/pingcap/check"
"github.com/pingcap/parser/model"
"github.com/pingcap/parser/mysql"
"github.com/pingcap/tidb/expression"
"github.com/pingcap/tidb/sessionctx/stmtctx"
"github.com/pingcap/tidb/table/tables"
"github.com/pingcap/tidb/tablecodec"
"github.com/pingcap/tidb/types"
"github.com/pingcap/tidb/util/mock"
"github.com/pingcap/tidb/util/testleak"
)
func TestT(t *testing.T) {
TestingT(t)
}
var _ = Suite(&testDecoderSuite{})
type testDecoderSuite struct{}
func (s *testDecoderSuite) TestRowDecoder(c *C) {
defer testleak.AfterTest(c)()
c1 := &model.ColumnInfo{ID: 1, Name: model.NewCIStr("c1"), State: model.StatePublic, Offset: 0, FieldType: *types.NewFieldType(mysql.TypeLonglong)}
c2 := &model.ColumnInfo{ID: 2, Name: model.NewCIStr("c2"), State: model.StatePublic, Offset: 1, FieldType: *types.NewFieldType(mysql.TypeVarchar)}
c3 := &model.ColumnInfo{ID: 3, Name: model.NewCIStr("c3"), State: model.StatePublic, Offset: 2, FieldType: *types.NewFieldType(mysql.TypeNewDecimal)}
c4 := &model.ColumnInfo{ID: 4, Name: model.NewCIStr("c4"), State: model.StatePublic, Offset: 3, FieldType: *types.NewFieldType(mysql.TypeTimestamp)}
c5 := &model.ColumnInfo{ID: 5, Name: model.NewCIStr("c5"), State: model.StatePublic, Offset: 4, FieldType: *types.NewFieldType(mysql.TypeDuration), OriginDefaultValue: "02:00:02"}
dependenciesMap := make(map[string]struct{})
dependenciesMap["c4"] = struct{}{}
dependenciesMap["c5"] = struct{}{}
c6 := &model.ColumnInfo{ID: 6, Name: model.NewCIStr("c6"), State: model.StatePublic, Offset: 5, FieldType: *types.NewFieldType(mysql.TypeTimestamp), GeneratedExprString: "c4+c5"}
c7 := &model.ColumnInfo{ID: 7, Name: model.NewCIStr("c7"), State: model.StatePublic, Offset: 6, FieldType: *types.NewFieldType(mysql.TypeLonglong)}
c7.Flag |= mysql.PriKeyFlag
cols := []*model.ColumnInfo{c1, c2, c3, c4, c5, c6, c7}
tblInfo := &model.TableInfo{ID: 1, Columns: cols, PKIsHandle: true}
tbl := tables.MockTableFromMeta(tblInfo)
ctx := mock.NewContext()
sc := &stmtctx.StatementContext{TimeZone: time.UTC}
decodeColsMap := make(map[int64]Column, len(cols))
decodeColsMap2 := make(map[int64]Column, len(cols))
for _, col := range tbl.Cols() {
tpExpr := Column{
Col: col,
}
decodeColsMap2[col.ID] = tpExpr
if col.GeneratedExprString != "" {
expr, err := expression.ParseSimpleExprCastWithTableInfo(ctx, col.GeneratedExprString, tblInfo, &col.FieldType)
c.Assert(err, IsNil)
tpExpr.GenExpr = expr
}
decodeColsMap[col.ID] = tpExpr
}
de := NewRowDecoder(tbl, decodeColsMap)
deWithNoGenCols := NewRowDecoder(tbl, decodeColsMap2)
timeZoneIn8, err := time.LoadLocation("Asia/Shanghai")
c.Assert(err, IsNil)
time1 := types.Time{
Time: types.FromDate(2019, 01, 01, 8, 01, 01, 0),
Type: mysql.TypeTimestamp,
}
t1 := types.NewTimeDatum(time1)
d1 := types.NewDurationDatum(types.Duration{
Duration: time.Hour + time.Second,
})
time2, err := time1.Add(sc, d1.GetMysqlDuration())
c.Assert(err, IsNil)
err = time2.ConvertTimeZone(timeZoneIn8, time.UTC)
c.Assert(err, IsNil)
t2 := types.NewTimeDatum(time2)
time3, err := time1.Add(sc, types.Duration{Duration: time.Hour*2 + time.Second*2})
c.Assert(err, IsNil)
err = time3.ConvertTimeZone(timeZoneIn8, time.UTC)
c.Assert(err, IsNil)
t3 := types.NewTimeDatum(time3)
testRows := []struct {
cols []int64
input []types.Datum
output []types.Datum
}{
{
[]int64{cols[0].ID, cols[1].ID, cols[2].ID, cols[3].ID, cols[4].ID},
[]types.Datum{types.NewIntDatum(100), types.NewBytesDatum([]byte("abc")), types.NewDecimalDatum(types.NewDecFromInt(1)), t1, d1},
[]types.Datum{types.NewIntDatum(100), types.NewBytesDatum([]byte("abc")), types.NewDecimalDatum(types.NewDecFromInt(1)), t1, d1, t2},
},
{
[]int64{cols[0].ID, cols[1].ID, cols[2].ID, cols[3].ID},
[]types.Datum{types.NewIntDatum(100), types.NewBytesDatum([]byte("abc")), types.NewDecimalDatum(types.NewDecFromInt(1)), t1},
[]types.Datum{types.NewIntDatum(100), types.NewBytesDatum([]byte("abc")), types.NewDecimalDatum(types.NewDecFromInt(1)), t1, types.NewDatum(nil), t3},
},
{
[]int64{cols[0].ID, cols[1].ID, cols[2].ID, cols[3].ID, cols[4].ID},
[]types.Datum{types.NewDatum(nil), types.NewDatum(nil), types.NewDatum(nil), types.NewDatum(nil), types.NewDatum(nil)},
[]types.Datum{types.NewDatum(nil), types.NewDatum(nil), types.NewDatum(nil), types.NewDatum(nil), types.NewDatum(nil), types.NewDatum(nil)},
},
}
for i, row := range testRows {
// test case for pk is unsigned.
if i > 0 {
c7.Flag |= mysql.UnsignedFlag
}
bs, err := tablecodec.EncodeRow(sc, row.input, row.cols, nil, nil)
c.Assert(err, IsNil)
c.Assert(bs, NotNil)
r, err := de.DecodeAndEvalRowWithMap(ctx, int64(i), bs, time.UTC, timeZoneIn8, nil)
c.Assert(err, IsNil)
// Last column is primary-key column, and the table primary-key is handle, then the primary-key value won't be
// stored in raw data, but store in the raw key.
// So when decode, we can't get the primary-key value from raw data, then ignore check the value of the
// last primary key column.
for i, col := range cols[:len(cols)-1] {
v, ok := r[col.ID]
if ok {
equal, err1 := v.CompareDatum(sc, &row.output[i])
c.Assert(err1, IsNil)
c.Assert(equal, Equals, 0)
} else {
// use default value.
c.Assert(col.DefaultValue != "", IsTrue)
}
}
// test decode with no generated column.
r2, err := deWithNoGenCols.DecodeAndEvalRowWithMap(ctx, int64(i), bs, time.UTC, timeZoneIn8, nil)
c.Assert(err, IsNil)
for k, v := range r2 {
v1, ok := r[k]
c.Assert(ok, IsTrue)
equal, err1 := v.CompareDatum(sc, &v1)
c.Assert(err1, IsNil)
c.Assert(equal, Equals, 0)
}
}
}