blob: 1da5d36ecf6623dd54e0ce1addfee9b31c3fe222 [file] [log] [blame]
Roger Meier01144552015-04-04 16:14:08 +02001/*
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>
Roger Meierefd14e72015-04-14 21:06:14 +020023#include "TTransportCheckThrow.h"
Ben Craig1684c422015-04-24 08:52:44 -050024#include <iostream>
Roger Meier01144552015-04-04 16:14:08 +020025
26using apache::thrift::transport::TServerSocket;
27using apache::thrift::transport::TSocket;
28using apache::thrift::transport::TTransport;
29using apache::thrift::transport::TTransportException;
30
John Siroiscab56002016-02-12 17:58:14 -070031BOOST_AUTO_TEST_SUITE(TServerSocketTest)
Roger Meier01144552015-04-04 16:14:08 +020032
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020033BOOST_AUTO_TEST_CASE(test_bind_to_address) {
John Siroiscab56002016-02-12 17:58:14 -070034 TServerSocket sock1("localhost", 0);
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020035 sock1.listen();
John Siroiscab56002016-02-12 17:58:14 -070036 int port = sock1.getPort();
37 TSocket clientSock("localhost", port);
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020038 clientSock.open();
39 boost::shared_ptr<TTransport> accepted = sock1.accept();
40 accepted->close();
41 sock1.close();
Roger Meier01144552015-04-04 16:14:08 +020042
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020043 std::cout << "An error message from getaddrinfo on the console is expected:" << std::endl;
John Siroiscab56002016-02-12 17:58:14 -070044 TServerSocket sock2("257.258.259.260", 0);
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020045 BOOST_CHECK_THROW(sock2.listen(), TTransportException);
46 sock2.close();
Roger Meier01144552015-04-04 16:14:08 +020047}
48
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020049BOOST_AUTO_TEST_CASE(test_listen_valid_port) {
50 TServerSocket sock1(-1);
51 TTRANSPORT_CHECK_THROW(sock1.listen(), TTransportException::BAD_ARGS);
Roger Meierefd14e72015-04-14 21:06:14 +020052
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020053 TServerSocket sock2(65536);
54 TTRANSPORT_CHECK_THROW(sock2.listen(), TTransportException::BAD_ARGS);
Roger Meierefd14e72015-04-14 21:06:14 +020055}
56
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020057BOOST_AUTO_TEST_CASE(test_close_before_listen) {
John Siroiscab56002016-02-12 17:58:14 -070058 TServerSocket sock1("localhost", 0);
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020059 sock1.close();
Roger Meier01144552015-04-04 16:14:08 +020060}
61
Konrad Grochowski1f6e3802015-05-18 18:10:06 +020062BOOST_AUTO_TEST_CASE(test_get_port) {
63 TServerSocket sock1("localHost", 888);
64 BOOST_CHECK_EQUAL(888, sock1.getPort());
Roger Meier01144552015-04-04 16:14:08 +020065}
66
67BOOST_AUTO_TEST_SUITE_END()