You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.5 KiB
60 lines
1.5 KiB
// 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 main_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
. "github.com/pingcap/check"
|
|
"github.com/pingcap/tidb/plugin"
|
|
"github.com/pingcap/tidb/sessionctx/variable"
|
|
)
|
|
|
|
func LoadRunShutdownPluginExample() {
|
|
ctx := context.Background()
|
|
var pluginVarNames []string
|
|
cfg := plugin.Config{
|
|
Plugins: []string{"conn_ip_example-1"},
|
|
PluginDir: "/home/robi/Code/go/src/github.com/pingcap/tidb/plugin/conn_ip_example",
|
|
GlobalSysVar: &variable.SysVars,
|
|
PluginVarNames: &pluginVarNames,
|
|
}
|
|
|
|
err := plugin.Load(ctx, cfg)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// load and start TiDB domain.
|
|
|
|
err = plugin.Init(ctx, cfg)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
err = plugin.ForeachPlugin(plugin.Audit, func(auditPlugin *plugin.Plugin) error {
|
|
plugin.DeclareAuditManifest(auditPlugin.Manifest).OnGeneralEvent(context.Background(), nil, plugin.Log, "QUERY")
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
plugin.Shutdown(context.Background())
|
|
}
|
|
|
|
func TestT(t *testing.T) {
|
|
TestingT(t)
|
|
}
|
|
|