blob: 68f6de1c5ef2b264295279a73ba4a7e455b7d5c0 [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.
*/
#include "orc/Reader.hh"
#include "Adaptor.hh"
#include "wrap/gmock.h"
#include "wrap/gtest-wrapper.h"
namespace orc {
TEST(TestReader, testWriterVersions) {
EXPECT_EQ("original", writerVersionToString(WriterVersion_ORIGINAL));
EXPECT_EQ("HIVE-8732", writerVersionToString(WriterVersion_HIVE_8732));
EXPECT_EQ("HIVE-4243", writerVersionToString(WriterVersion_HIVE_4243));
EXPECT_EQ("HIVE-12055", writerVersionToString(WriterVersion_HIVE_12055));
EXPECT_EQ("HIVE-13083", writerVersionToString(WriterVersion_HIVE_13083));
EXPECT_EQ("future - 99",
writerVersionToString(static_cast<WriterVersion>(99)));
}
TEST(TestReader, testCompressionNames) {
EXPECT_EQ("none", compressionKindToString(CompressionKind_NONE));
EXPECT_EQ("zlib", compressionKindToString(CompressionKind_ZLIB));
EXPECT_EQ("snappy", compressionKindToString(CompressionKind_SNAPPY));
EXPECT_EQ("lzo", compressionKindToString(CompressionKind_LZO));
EXPECT_EQ("lz4", compressionKindToString(CompressionKind_LZ4));
EXPECT_EQ("zstd", compressionKindToString(CompressionKind_ZSTD));
EXPECT_EQ("unknown - 99",
compressionKindToString(static_cast<CompressionKind>(99)));
}
} // namespace