blob: 8426992319617e826d57f07706714ae05cf2f8ea [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.analysis;
import org.apache.doris.common.AnalysisException;
import org.junit.Assert;
import org.junit.Test;
public class ColumnSeparatorTest {
@Test
public void testNormal() throws AnalysisException {
// \t
ColumnSeparator separator = new ColumnSeparator("\t");
separator.analyze();
Assert.assertEquals("'\t'", separator.toSql());
Assert.assertEquals("\t", separator.getColumnSeparator());
// \x01
separator = new ColumnSeparator("\\x01");
separator.analyze();
Assert.assertEquals("'\\x01'", separator.toSql());
Assert.assertEquals("\1", separator.getColumnSeparator());
// \x00 \x01
separator = new ColumnSeparator("\\x0001");
separator.analyze();
Assert.assertEquals("'\\x0001'", separator.toSql());
Assert.assertEquals("\0\1", separator.getColumnSeparator());
separator = new ColumnSeparator("|");
separator.analyze();
Assert.assertEquals("'|'", separator.toSql());
Assert.assertEquals("|", separator.getColumnSeparator());
separator = new ColumnSeparator("\\|");
separator.analyze();
Assert.assertEquals("'\\|'", separator.toSql());
Assert.assertEquals("\\|", separator.getColumnSeparator());
}
@Test(expected = AnalysisException.class)
public void testHexFormatError() throws AnalysisException {
ColumnSeparator separator = new ColumnSeparator("\\x0g");
separator.analyze();
}
@Test(expected = AnalysisException.class)
public void testHexLengthError() throws AnalysisException {
ColumnSeparator separator = new ColumnSeparator("\\x011");
separator.analyze();
}
}