Add a switch for perfschema and disable it by default. You can enable perfschema by set tidb-server flag.
192 lines
5.4 KiB
Go
192 lines
5.4 KiB
Go
// Copyright 2016 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 perfschema_test
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
"sync"
|
|
"testing"
|
|
|
|
. "github.com/pingcap/check"
|
|
"github.com/pingcap/tidb"
|
|
"github.com/pingcap/tidb/perfschema"
|
|
"github.com/pingcap/tidb/util/testleak"
|
|
)
|
|
|
|
func TestT(t *testing.T) {
|
|
TestingT(t)
|
|
}
|
|
|
|
type testPerfSchemaSuit struct {
|
|
vars map[string]interface{}
|
|
}
|
|
|
|
var _ = Suite(&testPerfSchemaSuit{
|
|
vars: make(map[string]interface{}),
|
|
})
|
|
|
|
func (s *testPerfSchemaSuit) SetUpSuite(c *C) {
|
|
perfschema.EnablePerfSchema()
|
|
}
|
|
|
|
func mustBegin(c *C, currDB *sql.DB) *sql.Tx {
|
|
tx, err := currDB.Begin()
|
|
c.Assert(err, IsNil)
|
|
return tx
|
|
}
|
|
|
|
func mustCommit(c *C, tx *sql.Tx) {
|
|
err := tx.Commit()
|
|
c.Assert(err, IsNil)
|
|
}
|
|
|
|
func mustExecuteSql(c *C, tx *sql.Tx, sql string) sql.Result {
|
|
r, err := tx.Exec(sql)
|
|
c.Assert(err, IsNil)
|
|
return r
|
|
}
|
|
|
|
func mustQuery(c *C, currDB *sql.DB, s string) int {
|
|
tx := mustBegin(c, currDB)
|
|
r, err := tx.Query(s)
|
|
c.Assert(err, IsNil)
|
|
cols, _ := r.Columns()
|
|
l := len(cols)
|
|
c.Assert(l, Greater, 0)
|
|
cnt := 0
|
|
res := make([]interface{}, l)
|
|
for i := 0; i < l; i++ {
|
|
res[i] = &sql.RawBytes{}
|
|
}
|
|
for r.Next() {
|
|
err := r.Scan(res...)
|
|
c.Assert(err, IsNil)
|
|
cnt++
|
|
}
|
|
c.Assert(r.Err(), IsNil)
|
|
r.Close()
|
|
mustCommit(c, tx)
|
|
return cnt
|
|
}
|
|
|
|
func mustFailQuery(c *C, currDB *sql.DB, s string) {
|
|
rows, err := currDB.Query(s)
|
|
c.Assert(err, IsNil)
|
|
rows.Next()
|
|
c.Assert(rows.Err(), NotNil)
|
|
rows.Close()
|
|
}
|
|
|
|
func mustExec(c *C, currDB *sql.DB, sql string) sql.Result {
|
|
tx := mustBegin(c, currDB)
|
|
r := mustExecuteSql(c, tx, sql)
|
|
mustCommit(c, tx)
|
|
return r
|
|
}
|
|
|
|
func mustFailExec(c *C, currDB *sql.DB, sql string) {
|
|
tx := mustBegin(c, currDB)
|
|
_, err := tx.Exec(sql)
|
|
c.Assert(err, NotNil)
|
|
mustCommit(c, tx)
|
|
}
|
|
|
|
func checkResult(c *C, r sql.Result, affectedRows int64, insertID int64) {
|
|
gotRows, err := r.RowsAffected()
|
|
c.Assert(err, IsNil)
|
|
c.Assert(gotRows, Equals, affectedRows)
|
|
|
|
gotID, err := r.LastInsertId()
|
|
c.Assert(err, IsNil)
|
|
c.Assert(gotID, Equals, insertID)
|
|
}
|
|
|
|
func (p *testPerfSchemaSuit) TestInsert(c *C) {
|
|
defer testleak.AfterTest(c)()
|
|
testDB, err := sql.Open(tidb.DriverName, tidb.EngineGoLevelDBMemory+"/test/test")
|
|
c.Assert(err, IsNil)
|
|
defer testDB.Close()
|
|
|
|
r := mustExec(c, testDB, `insert into performance_schema.setup_actors values("localhost", "nieyy", "contributor", "NO", "NO");`)
|
|
checkResult(c, r, 0, 0)
|
|
cnt := mustQuery(c, testDB, "select * from performance_schema.setup_actors")
|
|
c.Assert(cnt, Equals, 2)
|
|
|
|
r = mustExec(c, testDB, `insert into performance_schema.setup_actors (host, user, role) values ("localhost", "lijian", "contributor");`)
|
|
checkResult(c, r, 0, 0)
|
|
cnt = mustQuery(c, testDB, "select * from performance_schema.setup_actors")
|
|
c.Assert(cnt, Equals, 3)
|
|
|
|
r = mustExec(c, testDB, `insert into performance_schema.setup_objects values("EVENT", "test", "%", "NO", "NO")`)
|
|
checkResult(c, r, 0, 0)
|
|
cnt = mustQuery(c, testDB, "select * from performance_schema.setup_objects")
|
|
c.Assert(cnt, Equals, 13)
|
|
|
|
r = mustExec(c, testDB, `insert into performance_schema.setup_objects (object_schema, object_name) values ("test1", "%")`)
|
|
checkResult(c, r, 0, 0)
|
|
cnt = mustQuery(c, testDB, "select * from performance_schema.setup_objects")
|
|
c.Assert(cnt, Equals, 14)
|
|
|
|
mustFailExec(c, testDB, `insert into performance_schema.setup_actors (host) values (null);`)
|
|
mustFailExec(c, testDB, `insert into performance_schema.setup_objects (object_type) values (null);`)
|
|
mustFailExec(c, testDB, `insert into performance_schema.setup_instruments values("select", "N/A", "N/A");`)
|
|
mustFailExec(c, testDB, `insert into performance_schema.setup_consumers values("events_stages_current", "N/A");`)
|
|
mustFailExec(c, testDB, `insert into performance_schema.setup_timers values("timer1", "XXXSECOND");`)
|
|
}
|
|
|
|
func (p *testPerfSchemaSuit) TestInstrument(c *C) {
|
|
defer testleak.AfterTest(c)()
|
|
testDB, err := sql.Open(tidb.DriverName, tidb.EngineGoLevelDBMemory+"/test/test")
|
|
c.Assert(err, IsNil)
|
|
defer testDB.Close()
|
|
|
|
cnt := mustQuery(c, testDB, "select * from performance_schema.setup_instruments")
|
|
c.Assert(cnt, Greater, 0)
|
|
|
|
mustExec(c, testDB, "show tables")
|
|
cnt = mustQuery(c, testDB, "select * from performance_schema.events_statements_current")
|
|
c.Assert(cnt, Equals, 1)
|
|
cnt = mustQuery(c, testDB, "select * from performance_schema.events_statements_history")
|
|
c.Assert(cnt, Greater, 0)
|
|
}
|
|
|
|
func (p *testPerfSchemaSuit) TestConcurrentStatement(c *C) {
|
|
defer testleak.AfterTest(c)()
|
|
testDB, err := sql.Open(tidb.DriverName, tidb.EngineGoLevelDBMemory+"/test/test")
|
|
c.Assert(err, IsNil)
|
|
defer testDB.Close()
|
|
|
|
mustExec(c, testDB, "create table test (a int, b int)")
|
|
|
|
var wg sync.WaitGroup
|
|
iFunc := func(a, b int) {
|
|
defer wg.Done()
|
|
mustExec(c, testDB, fmt.Sprintf(`INSERT INTO test VALUES (%d, %d);`, a, b))
|
|
}
|
|
sFunc := func() {
|
|
defer wg.Done()
|
|
mustQuery(c, testDB, "select * from performance_schema.events_statements_current")
|
|
mustQuery(c, testDB, "select * from performance_schema.events_statements_history")
|
|
}
|
|
|
|
cnt := 10
|
|
for i := 0; i < cnt; i++ {
|
|
wg.Add(2)
|
|
go iFunc(i, i)
|
|
go sFunc()
|
|
}
|
|
wg.Wait()
|
|
}
|