Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARROW-17254: [C++][Go][Java][FlightRPC] Implement and test Flight SQL GetSchema #13898

Merged
merged 2 commits into from
Aug 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions cpp/src/arrow/flight/integration_tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,14 @@ target_link_libraries(flight-test-integration-client

add_dependencies(arrow-integration flight-test-integration-client
flight-test-integration-server)

if(ARROW_BUILD_TESTS)
add_arrow_test(flight_integration_test
SOURCES
flight_integration_test.cc
test_integration.cc
STATIC_LINK_LIBS
${ARROW_FLIGHT_INTEGRATION_TEST_LINK_LIBS}
LABELS
"arrow_flight")
endif()
60 changes: 60 additions & 0 deletions cpp/src/arrow/flight/integration_tests/flight_integration_test.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
// 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.

// Run the integration test scenarios in-process.

#include <gmock/gmock.h>
#include <gtest/gtest.h>

#include "arrow/flight/integration_tests/test_integration.h"
#include "arrow/status.h"
#include "arrow/testing/gtest_util.h"

namespace arrow {
namespace flight {
namespace integration_tests {

Status RunScenario(const std::string& scenario_name) {
std::shared_ptr<Scenario> scenario;
ARROW_RETURN_NOT_OK(GetScenario(scenario_name, &scenario));

std::unique_ptr<FlightServerBase> server;
ARROW_ASSIGN_OR_RAISE(Location bind_location,
arrow::flight::Location::ForGrpcTcp("0.0.0.0", 0));
FlightServerOptions server_options(bind_location);
ARROW_RETURN_NOT_OK(scenario->MakeServer(&server, &server_options));
ARROW_RETURN_NOT_OK(server->Init(server_options));

ARROW_ASSIGN_OR_RAISE(Location location,
arrow::flight::Location::ForGrpcTcp("0.0.0.0", server->port()));
auto client_options = arrow::flight::FlightClientOptions::Defaults();
ARROW_RETURN_NOT_OK(scenario->MakeClient(&client_options));
ARROW_ASSIGN_OR_RAISE(std::unique_ptr<FlightClient> client,
FlightClient::Connect(location, client_options));
ARROW_RETURN_NOT_OK(scenario->RunClient(std::move(client)));
return Status::OK();
}

TEST(FlightIntegration, AuthBasicProto) { ASSERT_OK(RunScenario("auth:basic_proto")); }

TEST(FlightIntegration, Middleware) { ASSERT_OK(RunScenario("middleware")); }

TEST(FlightIntegration, FlightSql) { ASSERT_OK(RunScenario("flight_sql")); }

} // namespace integration_tests
} // namespace flight
} // namespace arrow
351 changes: 223 additions & 128 deletions cpp/src/arrow/flight/integration_tests/test_integration.cc

Large diffs are not rendered by default.

Loading