]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/thrift/lib/cpp/test/TServerSocketTest.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / jaegertracing / thrift / lib / cpp / test / TServerSocketTest.cpp
CommitLineData
f67539c2
TL
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 <memory>
24#include "TTransportCheckThrow.h"
25#include <iostream>
26
27using apache::thrift::transport::TServerSocket;
28using apache::thrift::transport::TSocket;
29using apache::thrift::transport::TTransport;
30using apache::thrift::transport::TTransportException;
31using std::shared_ptr;
32
33BOOST_AUTO_TEST_SUITE(TServerSocketTest)
34
35BOOST_AUTO_TEST_CASE(test_bind_to_address) {
36 TServerSocket sock1("localhost", 0);
37 sock1.listen();
38 int port = sock1.getPort();
39 TSocket clientSock("localhost", port);
40 clientSock.open();
41 shared_ptr<TTransport> accepted = sock1.accept();
42 accepted->close();
43 sock1.close();
44
45 std::cout << "An error message from getaddrinfo on the console is expected:" << std::endl;
46 TServerSocket sock2("257.258.259.260", 0);
47 BOOST_CHECK_THROW(sock2.listen(), TTransportException);
48 sock2.close();
49}
50
51BOOST_AUTO_TEST_CASE(test_listen_valid_port) {
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
59BOOST_AUTO_TEST_CASE(test_close_before_listen) {
60 TServerSocket sock1("localhost", 0);
61 sock1.close();
62}
63
64BOOST_AUTO_TEST_CASE(test_get_port) {
65 TServerSocket sock1("localHost", 888);
66 BOOST_CHECK_EQUAL(888, sock1.getPort());
67}
68
69BOOST_AUTO_TEST_SUITE_END()