Imported Upstream version 1.64.0
[platform/upstream/boost.git] / libs / process / test / bind_stdin_stdout.cpp
1 // Copyright (c) 2006, 2007 Julio M. Merino Vidal
2 // Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
3 // Copyright (c) 2009 Boris Schaeling
4 // Copyright (c) 2010 Felipe Tanus, Boris Schaeling
5 // Copyright (c) 2011, 2012 Jeff Flinn, Boris Schaeling
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9
10 #define BOOST_TEST_MAIN
11 #define BOOST_TEST_IGNORE_SIGCHLD
12 #include <boost/test/included/unit_test.hpp>
13
14 #include <boost/process/error.hpp>
15 #include <boost/process/io.hpp>
16 #include <boost/process/child.hpp>
17 #include <boost/process/args.hpp>
18 #include <system_error>
19
20 #include <boost/system/error_code.hpp>
21 #include <string>
22 #include <iostream>
23
24 namespace bp = boost::process;
25
26 BOOST_AUTO_TEST_CASE(sync_io, *boost::unit_test::timeout(10))
27 {
28     using boost::unit_test::framework::master_test_suite;
29
30
31     bp::opstream os;
32     bp::ipstream is;
33     std::error_code ec;
34     bp::child c(
35         master_test_suite().argv[1],
36         bp::args+={"test", "--stdin-to-stdout"},
37         bp::std_in<os,
38         bp::std_out>is,
39         ec
40     );
41     BOOST_REQUIRE(!ec);
42
43     std::string s = "abcdefghi j";
44     for (std::string::const_iterator it = s.begin(); it != s.end(); ++it)
45     {
46         os << *it << std::flush;
47         char c;
48         is >> std::noskipws >> c;
49         BOOST_CHECK_EQUAL(*it, c);
50     }
51     
52     os.pipe().close();
53     
54     BOOST_CHECK(c.wait_for(std::chrono::seconds(3)));
55 }