branch-2.1:[fix](ut)Fix StmtExecutorTest (#50322) (#50362)

backport: https://github.com/apache/doris/pull/50322
This commit is contained in:
James
2025-04-24 16:18:02 +08:00
committed by GitHub
parent 91eed373be
commit dd43f13549
2 changed files with 45 additions and 20 deletions

View File

@ -0,0 +1,45 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 org.apache.doris.qe;
import org.apache.doris.analysis.StatementBase;
import org.apache.doris.nereids.NereidsPlanner;
import mockit.Mock;
import mockit.MockUp;
import org.junit.Assert;
import org.junit.Test;
public class StmtExecutorInternalQueryTest {
@Test
public void testSetSqlHash() {
StmtExecutor executor = new StmtExecutor(new ConnectContext(), "select * from table1");
new MockUp<NereidsPlanner>() {
@Mock
public void plan(StatementBase queryStmt, org.apache.doris.thrift.TQueryOptions queryOptions) {
throw new RuntimeException();
}
};
try {
executor.executeInternalQuery();
} catch (Exception e) {
// do nothing
}
Assert.assertEquals("a8ec30e5ad0820f8c5bd16a82a4491ca", executor.getContext().getSqlHash());
}
}

View File

@ -38,7 +38,6 @@ import org.apache.doris.datasource.InternalCatalog;
import org.apache.doris.metric.MetricRepo;
import org.apache.doris.mysql.MysqlChannel;
import org.apache.doris.mysql.MysqlSerializer;
import org.apache.doris.nereids.NereidsPlanner;
import org.apache.doris.planner.OriginalPlanner;
import org.apache.doris.qe.ConnectContext.ConnectType;
import org.apache.doris.rewrite.ExprRewriter;
@ -50,8 +49,6 @@ import com.google.common.collect.Lists;
import com.google.common.collect.Sets;
import java_cup.runtime.Symbol;
import mockit.Expectations;
import mockit.Mock;
import mockit.MockUp;
import mockit.Mocked;
import org.junit.Assert;
import org.junit.Before;
@ -804,21 +801,4 @@ public class StmtExecutorTest {
Assert.assertEquals(QueryState.MysqlStateType.ERR, state.getStateType());
}
@Test
public void testSetSqlHash() {
StmtExecutor executor = new StmtExecutor(ctx, "select * from table1");
new MockUp<NereidsPlanner>() {
@Mock
public void plan(StatementBase queryStmt, org.apache.doris.thrift.TQueryOptions queryOptions) {
throw new RuntimeException();
}
};
try {
executor.executeInternalQuery();
} catch (Exception e) {
// do nothing
}
Assert.assertEquals("a8ec30e5ad0820f8c5bd16a82a4491ca", executor.getContext().getSqlHash());
}
}