forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_test.go
126 lines (115 loc) · 3.93 KB
/
db_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
// 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,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package domain_test
import (
"context"
"testing"
"time"
"github.com/pingcap/failpoint"
"github.com/pingcap/tidb/config"
"github.com/pingcap/tidb/ddl"
"github.com/pingcap/tidb/domain/infosync"
"github.com/pingcap/tidb/server"
"github.com/pingcap/tidb/session"
"github.com/pingcap/tidb/store/mockstore"
"github.com/stretchr/testify/require"
)
func TestDomainSession(t *testing.T) {
lease := 50 * time.Millisecond
store, err := mockstore.NewMockStore()
require.NoError(t, err)
defer func() {
err := store.Close()
require.NoError(t, err)
}()
session.SetSchemaLease(lease)
domain, err := session.BootstrapSession(store)
require.NoError(t, err)
ddl.DisableTiFlashPoll(domain.DDL())
defer domain.Close()
// for NotifyUpdatePrivilege
createRoleSQL := `CREATE ROLE 'test'@'localhost';`
se, err := session.CreateSession4Test(store)
require.NoError(t, err)
_, err = se.Execute(context.Background(), createRoleSQL)
require.NoError(t, err)
// for BindHandle
_, err = se.Execute(context.Background(), "use test")
require.NoError(t, err)
_, err = se.Execute(context.Background(), "drop table if exists t")
require.NoError(t, err)
_, err = se.Execute(context.Background(), "create table t(i int, s varchar(20), index index_t(i, s))")
require.NoError(t, err)
_, err = se.Execute(context.Background(), "create global binding for select * from t where i>100 using select * from t use index(index_t) where i>100")
require.NoError(t, err)
}
func TestNormalSessionPool(t *testing.T) {
lease := 100 * time.Millisecond
store, err := mockstore.NewMockStore()
require.NoError(t, err)
defer func() {
err := store.Close()
require.NoError(t, err)
}()
session.SetSchemaLease(lease)
domain, err := session.BootstrapSession(store)
require.NoError(t, err)
defer domain.Close()
info, err1 := infosync.GlobalInfoSyncerInit(context.Background(), "t", func() uint64 { return 1 }, nil, true)
require.NoError(t, err1)
conf := config.GetGlobalConfig()
conf.Port = 0
conf.Status.StatusPort = 10045
svr, err := server.NewServer(conf, nil)
require.NoError(t, err)
svr.SetDomain(domain)
svr.InitGlobalConnID(domain.ServerID)
info.SetSessionManager(svr)
pool := domain.SysSessionPool()
se, err := pool.Get()
require.NoError(t, err)
require.NotEmpty(t, se)
require.Equal(t, svr.InternalSessionExists(se), true)
pool.Put(se)
require.Equal(t, svr.InternalSessionExists(se), false)
}
func TestAbnormalSessionPool(t *testing.T) {
lease := 100 * time.Millisecond
store, err := mockstore.NewMockStore()
require.NoError(t, err)
defer func() {
err := store.Close()
require.NoError(t, err)
}()
session.SetSchemaLease(lease)
domain, err := session.BootstrapSession(store)
require.NoError(t, err)
defer domain.Close()
info, err1 := infosync.GlobalInfoSyncerInit(context.Background(), "t", func() uint64 { return 1 }, nil, true)
require.NoError(t, err1)
conf := config.GetGlobalConfig()
conf.Port = 0
conf.Status.StatusPort = 10046
svr, err := server.NewServer(conf, nil)
require.NoError(t, err)
svr.SetDomain(domain)
svr.InitGlobalConnID(domain.ServerID)
info.SetSessionManager(svr)
pool := domain.SysSessionPool()
failpoint.Enable("github.com/pingcap/tidb/domain/mockSessionPoolReturnError", "return")
se, err := pool.Get()
require.Error(t, err)
failpoint.Disable("github.com/pingcap/tidb/domain/mockSessionPoolReturnError")
require.Equal(t, svr.InternalSessionExists(se), false)
}