// Copyright 2017-present 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 executor_test

import (
	"fmt"

	"github.com/hanchuanchuan/goInception/executor"
	"github.com/hanchuanchuan/goInception/parser"
	"github.com/hanchuanchuan/goInception/planner"
	plannercore "github.com/hanchuanchuan/goInception/planner/core"
	"github.com/hanchuanchuan/goInception/sessionctx"
	"github.com/hanchuanchuan/goInception/util/testkit"
	. "github.com/pingcap/check"
)

func (s *testSuite) TestStmtLabel(c *C) {
	tk := testkit.NewTestKit(c, s.store)
	tk.MustExec("use test")
	tk.MustExec("create table label (c1 int primary key, c2 int, c3 int, index (c2))")
	for i := 0; i < 10; i++ {
		sql := fmt.Sprintf("insert into label values (%d, %d, %d)", i, i, i)
		tk.MustExec(sql)
	}
	tk.MustExec("analyze table label")

	tests := []struct {
		sql   string
		label string
	}{
		{"select 1", "Select"},
		{"select * from label t1, label t2", "Select"},
		{"select * from label t1 where t1.c3 > (select count(t1.c1 = t2.c1) = 0 from label t2)", "Select"},
		{"select count(*) from label", "Select"},
		{"select * from label where c2 = 1", "Select"},
		{"select c1, c2 from label where c2 = 1", "Select"},
		{"select * from label where c1 > 1", "Select"},
		{"select * from label where c1 > 1", "Select"},
		{"select * from label order by c3 limit 1", "Select"},
		{"delete from label", "Delete"},
		{"delete from label where c1 = 1", "Delete"},
		{"delete from label where c2 = 1", "Delete"},
		{"delete from label where c2 = 1 order by c3 limit 1", "Delete"},
		{"update label set c3 = 3", "Update"},
		{"update label set c3 = 3 where c1 = 1", "Update"},
		{"update label set c3 = 3 where c2 = 1", "Update"},
		{"update label set c3 = 3 where c2 = 1 order by c3 limit 1", "Update"},
	}
	for _, tt := range tests {
		stmtNode, err := parser.New().ParseOneStmt(tt.sql, "", "")
		c.Check(err, IsNil)
		is := executor.GetInfoSchema(tk.Se)
		err = plannercore.Preprocess(tk.Se.(sessionctx.Context), stmtNode, is, false)
		c.Assert(err, IsNil)
		_, err = planner.Optimize(tk.Se, stmtNode, is)
		c.Assert(err, IsNil)
		c.Assert(executor.GetStmtLabel(stmtNode), Equals, tt.label)
	}
}