109 lines
3.9 KiB
Go
109 lines
3.9 KiB
Go
// Copyright 2023 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 testutil
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/pingcap/tidb/pkg/config/kerneltype"
|
|
"github.com/pingcap/tidb/pkg/dxf/framework/proto"
|
|
"github.com/pingcap/tidb/pkg/dxf/framework/storage"
|
|
"github.com/pingcap/tidb/pkg/dxf/framework/taskexecutor/execute"
|
|
"github.com/pingcap/tidb/pkg/keyspace"
|
|
"github.com/pingcap/tidb/pkg/sessionctx"
|
|
"github.com/pingcap/tidb/pkg/util/sqlexec"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/tikv/client-go/v2/util"
|
|
)
|
|
|
|
// CreateSubTask adds a new task to subtask table.
|
|
// used for testing.
|
|
func CreateSubTask(t *testing.T, gm *storage.TaskManager, taskID int64, step proto.Step, execID string, meta []byte, tp proto.TaskType, concurrency int) int64 {
|
|
return InsertSubtask(t, gm, taskID, step, execID, meta, proto.SubtaskStatePending, tp, concurrency)
|
|
}
|
|
|
|
// InsertSubtask adds a new subtask of any state to subtask table.
|
|
func InsertSubtask(t *testing.T, gm *storage.TaskManager, taskID int64, step proto.Step, execID string, meta []byte, state proto.SubtaskState, tp proto.TaskType, concurrency int) int64 {
|
|
ctx := context.Background()
|
|
ctx = util.WithInternalSourceType(ctx, "table_test")
|
|
var id int64
|
|
require.NoError(t, gm.WithNewSession(func(se sessionctx.Context) error {
|
|
_, err := sqlexec.ExecSQL(ctx, se.GetSQLExecutor(), `
|
|
insert into mysql.tidb_background_subtask(`+storage.InsertSubtaskColumns+`) values`+
|
|
`(%?, %?, %?, %?, %?, %?, %?, NULL, CURRENT_TIMESTAMP(), '{}', '{}')`,
|
|
step, taskID, execID, meta, state, proto.Type2Int(tp), concurrency)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
rs, err := sqlexec.ExecSQL(ctx, se.GetSQLExecutor(), "select @@last_insert_id")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
id = rs[0].GetInt64(0)
|
|
return nil
|
|
}))
|
|
return id
|
|
}
|
|
|
|
// CreateSubTaskWithSummary adds a new task to subtask table with given summary.
|
|
// used for testing.
|
|
func CreateSubTaskWithSummary(
|
|
t *testing.T, gm *storage.TaskManager,
|
|
taskID int64, step proto.Step, execID string, meta []byte,
|
|
summary *execute.SubtaskSummary, state proto.SubtaskState, tp proto.TaskType, concurrency int,
|
|
) int64 {
|
|
return InsertSubtaskWithSummary(t, gm, taskID, step, execID, meta, summary, state, tp, concurrency)
|
|
}
|
|
|
|
// InsertSubtaskWithSummary adds a new subtask of any state to subtask table.
|
|
func InsertSubtaskWithSummary(
|
|
t *testing.T, gm *storage.TaskManager,
|
|
taskID int64, step proto.Step, execID string, meta []byte,
|
|
summary *execute.SubtaskSummary, state proto.SubtaskState, tp proto.TaskType, concurrency int,
|
|
) int64 {
|
|
ctx := context.Background()
|
|
ctx = util.WithInternalSourceType(ctx, "table_test")
|
|
var id int64
|
|
|
|
summaryBytes, err := json.Marshal(summary)
|
|
require.NoError(t, err)
|
|
|
|
require.NoError(t, gm.WithNewSession(func(se sessionctx.Context) error {
|
|
_, err := sqlexec.ExecSQL(ctx, se.GetSQLExecutor(), `
|
|
insert into mysql.tidb_background_subtask(`+storage.InsertSubtaskColumns+",start_time"+`) values`+
|
|
`(%?, %?, %?, %?, %?, %?, %?, NULL, CURRENT_TIMESTAMP(), '{}', %?, CURRENT_TIMESTAMP())`,
|
|
step, taskID, execID, meta, state, proto.Type2Int(tp), concurrency, summaryBytes)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
rs, err := sqlexec.ExecSQL(ctx, se.GetSQLExecutor(), "select @@last_insert_id")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
id = rs[0].GetInt64(0)
|
|
return nil
|
|
}))
|
|
return id
|
|
}
|
|
|
|
func getTaskKS() string {
|
|
if kerneltype.IsNextGen() {
|
|
return keyspace.System
|
|
}
|
|
return ""
|
|
}
|