David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [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 | |
Roger Meier | 49ff8b1 | 2012-04-13 09:12:31 +0000 | [diff] [blame] | 20 | #include <thrift/Thrift.h> |
cyy | 316723a | 2019-01-05 16:35:14 +0800 | [diff] [blame^] | 21 | #include <memory> |
Roger Meier | 49ff8b1 | 2012-04-13 09:12:31 +0000 | [diff] [blame] | 22 | #include <thrift/transport/TTransportUtils.h> |
| 23 | #include <thrift/transport/TBufferTransports.h> |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame] | 24 | |
| 25 | #define BOOST_TEST_MODULE TPipedTransportTest |
| 26 | #include <boost/test/unit_test.hpp> |
| 27 | |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 28 | using apache::thrift::transport::TTransportException; |
| 29 | using apache::thrift::transport::TPipedTransport; |
| 30 | using apache::thrift::transport::TMemoryBuffer; |
James E. King, III | 82ae957 | 2017-08-05 12:23:54 -0400 | [diff] [blame] | 31 | using namespace apache::thrift; |
David Reiss | 1ffb61b | 2008-04-08 05:07:26 +0000 | [diff] [blame] | 32 | |
jfarrell | e2e5e22 | 2015-08-25 14:59:40 -0400 | [diff] [blame] | 33 | BOOST_AUTO_TEST_CASE(test_read_write) { |
cyy | 316723a | 2019-01-05 16:35:14 +0800 | [diff] [blame^] | 34 | std::shared_ptr<TMemoryBuffer> underlying(new TMemoryBuffer); |
| 35 | std::shared_ptr<TMemoryBuffer> pipe(new TMemoryBuffer); |
| 36 | std::shared_ptr<TPipedTransport> trans(new TPipedTransport(underlying, pipe)); |
David Reiss | 1ffb61b | 2008-04-08 05:07:26 +0000 | [diff] [blame] | 37 | |
| 38 | uint8_t buffer[4]; |
| 39 | |
| 40 | underlying->write((uint8_t*)"abcd", 4); |
| 41 | trans->readAll(buffer, 2); |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame] | 42 | BOOST_CHECK(std::string((char*)buffer, 2) == "ab"); |
David Reiss | 1ffb61b | 2008-04-08 05:07:26 +0000 | [diff] [blame] | 43 | trans->readEnd(); |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame] | 44 | BOOST_CHECK(pipe->getBufferAsString() == "ab"); |
David Reiss | 1ffb61b | 2008-04-08 05:07:26 +0000 | [diff] [blame] | 45 | pipe->resetBuffer(); |
| 46 | underlying->write((uint8_t*)"ef", 2); |
| 47 | trans->readAll(buffer, 2); |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame] | 48 | BOOST_CHECK(std::string((char*)buffer, 2) == "cd"); |
David Reiss | 1ffb61b | 2008-04-08 05:07:26 +0000 | [diff] [blame] | 49 | trans->readAll(buffer, 2); |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame] | 50 | BOOST_CHECK(std::string((char*)buffer, 2) == "ef"); |
David Reiss | 1ffb61b | 2008-04-08 05:07:26 +0000 | [diff] [blame] | 51 | trans->readEnd(); |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame] | 52 | BOOST_CHECK(pipe->getBufferAsString() == "cdef"); |
David Reiss | 1ffb61b | 2008-04-08 05:07:26 +0000 | [diff] [blame] | 53 | } |