Roger Meier | 0114455 | 2015-04-04 16:14:08 +0200 | [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/TServerSocket.h> |
| 23 | #include "TestPortFixture.h" |
Roger Meier | efd14e7 | 2015-04-14 21:06:14 +0200 | [diff] [blame] | 24 | #include "TTransportCheckThrow.h" |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame^] | 25 | #include <iostream> |
Roger Meier | 0114455 | 2015-04-04 16:14:08 +0200 | [diff] [blame] | 26 | |
| 27 | using apache::thrift::transport::TServerSocket; |
| 28 | using apache::thrift::transport::TSocket; |
| 29 | using apache::thrift::transport::TTransport; |
| 30 | using apache::thrift::transport::TTransportException; |
| 31 | |
| 32 | BOOST_FIXTURE_TEST_SUITE ( TServerSocketTest, TestPortFixture ) |
| 33 | |
Roger Meier | 0114455 | 2015-04-04 16:14:08 +0200 | [diff] [blame] | 34 | BOOST_AUTO_TEST_CASE( test_bind_to_address ) |
| 35 | { |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame^] | 36 | TServerSocket sock1("localhost", m_serverPort); |
Roger Meier | 0114455 | 2015-04-04 16:14:08 +0200 | [diff] [blame] | 37 | sock1.listen(); |
| 38 | TSocket clientSock("localhost", m_serverPort); |
| 39 | clientSock.open(); |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame^] | 40 | boost::shared_ptr<TTransport> accepted = sock1.accept(); |
Roger Meier | 0114455 | 2015-04-04 16:14:08 +0200 | [diff] [blame] | 41 | accepted->close(); |
| 42 | sock1.close(); |
| 43 | |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame^] | 44 | std::cout << "An error message from getaddrinfo on the console is expected:" << std::endl; |
| 45 | TServerSocket sock2("257.258.259.260", m_serverPort); |
Roger Meier | 0114455 | 2015-04-04 16:14:08 +0200 | [diff] [blame] | 46 | BOOST_CHECK_THROW(sock2.listen(), TTransportException); |
| 47 | sock2.close(); |
| 48 | } |
| 49 | |
Roger Meier | efd14e7 | 2015-04-14 21:06:14 +0200 | [diff] [blame] | 50 | BOOST_AUTO_TEST_CASE( test_listen_valid_port ) |
| 51 | { |
| 52 | TServerSocket sock1(-1); |
| 53 | TTRANSPORT_CHECK_THROW(sock1.listen(), TTransportException::BAD_ARGS); |
| 54 | |
| 55 | TServerSocket sock2(65536); |
| 56 | TTRANSPORT_CHECK_THROW(sock2.listen(), TTransportException::BAD_ARGS); |
| 57 | } |
| 58 | |
Roger Meier | 0114455 | 2015-04-04 16:14:08 +0200 | [diff] [blame] | 59 | BOOST_AUTO_TEST_CASE( test_close_before_listen ) |
| 60 | { |
| 61 | TServerSocket sock1("localhost", m_serverPort); |
| 62 | sock1.close(); |
| 63 | } |
| 64 | |
| 65 | BOOST_AUTO_TEST_CASE( test_get_port ) |
| 66 | { |
| 67 | TServerSocket sock1("localHost", 888); |
| 68 | BOOST_CHECK_EQUAL(888, sock1.getPort()); |
| 69 | } |
| 70 | |
| 71 | BOOST_AUTO_TEST_SUITE_END() |
| 72 | |