milvus/internal/core/unittest/test_rust_result.cpp

27 lines
1.1 KiB
C++

// Copyright (C) 2019-2020 Zilliz. All rights reserved.
//
// 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, 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 <cstdint>
#include "gtest/gtest.h"
#include "tantivy-binding.h"
TEST(RustResultTest, TestResult) {
auto arr = test_enum_with_array();
auto len = arr.value.rust_array._0.len;
for (size_t i = 0; i < len; i++) {
EXPECT_EQ(i + 1, arr.value.rust_array._0.array[i]);
}
free_rust_result(arr);
auto ptr = test_enum_with_ptr();
EXPECT_EQ(1, *static_cast<uint32_t*>(ptr.value.ptr._0));
free_rust_result(ptr);
free_test_ptr(ptr.value.ptr._0);
}