Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | * or more contributor license agreements. See the NOTICE file |
| 4 | * distributed with this work for additional information |
| 5 | * regarding copyright ownership. The ASF licenses this file |
| 6 | * to you under the Apache License, Version 2.0 (the |
| 7 | * "License"); you may not use this file except in compliance |
| 8 | * with the License. You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, |
| 13 | * software distributed under the License is distributed on an |
| 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | * KIND, either express or implied. See the License for the |
| 16 | * specific language governing permissions and limitations |
| 17 | * under the License. |
| 18 | */ |
| 19 | |
| 20 | #include <boost/test/auto_unit_test.hpp> |
| 21 | #include <thrift/transport/TSocket.h> |
| 22 | #include <thrift/transport/TServerTransport.h> |
| 23 | #include "TestPortFixture.h" |
| 24 | |
| 25 | using apache::thrift::transport::TServerTransport; |
| 26 | using apache::thrift::transport::TTransport; |
| 27 | using apache::thrift::transport::TTransportException; |
| 28 | |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame^] | 29 | BOOST_AUTO_TEST_SUITE(TServerTransportTest) |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 30 | |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame^] | 31 | class TestTTransport : public TTransport {}; |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 32 | |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame^] | 33 | class TestTServerTransport : public TServerTransport { |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 34 | public: |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame^] | 35 | TestTServerTransport() : valid_(true) {} |
| 36 | void close() {} |
| 37 | bool valid_; |
| 38 | |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 39 | protected: |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame^] | 40 | boost::shared_ptr<TTransport> acceptImpl() { |
| 41 | return valid_ ? boost::shared_ptr<TestTTransport>(new TestTTransport) |
| 42 | : boost::shared_ptr<TestTTransport>(); |
| 43 | } |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 44 | }; |
| 45 | |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame^] | 46 | BOOST_AUTO_TEST_CASE(test_positive_accept) { |
| 47 | TestTServerTransport uut; |
| 48 | BOOST_CHECK(uut.accept()); |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 49 | } |
| 50 | |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame^] | 51 | BOOST_AUTO_TEST_CASE(test_negative_accept) { |
| 52 | TestTServerTransport uut; |
| 53 | uut.valid_ = false; |
| 54 | BOOST_CHECK_THROW(uut.accept(), TTransportException); |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | BOOST_AUTO_TEST_SUITE_END() |