Files
tidb/executor/explain_unit_test.go

99 lines
2.7 KiB
Go

// 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 executor
import (
"context"
"errors"
"testing"
"github.com/pingcap/tidb/executor/internal/exec"
"github.com/pingcap/tidb/expression"
"github.com/pingcap/tidb/parser/mysql"
"github.com/pingcap/tidb/sessionctx/variable"
"github.com/pingcap/tidb/types"
"github.com/pingcap/tidb/util/chunk"
"github.com/pingcap/tidb/util/mock"
"github.com/stretchr/testify/require"
)
var (
_ exec.Executor = &mockErrorOperator{}
)
type mockErrorOperator struct {
exec.BaseExecutor
toPanic bool
closed bool
}
func (e *mockErrorOperator) Open(_ context.Context) error {
return nil
}
func (e *mockErrorOperator) Next(_ context.Context, _ *chunk.Chunk) error {
if e.toPanic {
panic("next panic")
} else {
return errors.New("next error")
}
}
func (e *mockErrorOperator) Close() error {
e.closed = true
return errors.New("close error")
}
func getColumns() []*expression.Column {
return []*expression.Column{
{Index: 1, RetType: types.NewFieldType(mysql.TypeLonglong)},
}
}
// close() must be called after next() to avoid goroutines leak
func TestExplainAnalyzeInvokeNextAndClose(t *testing.T) {
ctx := mock.NewContext()
ctx.GetSessionVars().InitChunkSize = variable.DefInitChunkSize
ctx.GetSessionVars().MaxChunkSize = variable.DefMaxChunkSize
schema := expression.NewSchema(getColumns()...)
baseExec := exec.NewBaseExecutor(ctx, schema, 0)
explainExec := &ExplainExec{
BaseExecutor: baseExec,
explain: nil,
}
// mockErrorOperator returns errors
mockOpr := mockErrorOperator{baseExec, false, false}
explainExec.analyzeExec = &mockOpr
tmpCtx := context.Background()
_, err := explainExec.generateExplainInfo(tmpCtx)
require.EqualError(t, err, "next error, close error")
require.True(t, mockOpr.closed)
// mockErrorOperator panic
explainExec = &ExplainExec{
BaseExecutor: baseExec,
explain: nil,
}
mockOpr = mockErrorOperator{baseExec, true, false}
explainExec.analyzeExec = &mockOpr
defer func() {
panicErr := recover()
require.NotNil(t, panicErr)
require.True(t, mockOpr.closed)
}()
_, _ = explainExec.generateExplainInfo(tmpCtx)
require.FailNow(t, "generateExplainInfo should panic")
}