blob: 3313630492b33d6360953622fc17117090ad2b7d [file] [log] [blame]
// 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.thrift.TQueryOptions;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import java.lang.reflect.Field;
import java.util.Map;
public class SessionVariablesTest {
private static SessionVariable sessionVariable;
private static int numOfForwardVars;
@BeforeClass
public static void beforeClass() throws Exception {
sessionVariable = new SessionVariable();
Field[] fields = SessionVariable.class.getFields();
for (Field f : fields) {
VariableMgr.VarAttr varAttr = f.getAnnotation(VariableMgr.VarAttr.class);
if (varAttr == null || !varAttr.needForward()) {
continue;
}
numOfForwardVars++;
}
}
@Test
public void testForwardSessionVariables() {
Map<String, String> vars = sessionVariable.getForwardVariables();
Assert.assertTrue(numOfForwardVars >= 6);
Assert.assertEquals(numOfForwardVars, vars.size());
vars.put(SessionVariable.IS_REPORT_SUCCESS, "true");
sessionVariable.setForwardedSessionVariables(vars);
Assert.assertEquals(true, sessionVariable.isReportSucc);
}
@Test
public void testForwardQueryOptions() {
TQueryOptions queryOptions = sessionVariable.getQueryOptionVariables();
Assert.assertTrue(queryOptions.isSetMemLimit());
Assert.assertTrue(queryOptions.isSetLoadMemLimit());
Assert.assertTrue(queryOptions.isSetQueryTimeout());
queryOptions.setQueryTimeout(123);
sessionVariable.setForwardedSessionVariables(queryOptions);
Assert.assertEquals(123, sessionVariable.getQueryTimeoutS());
}
}