]> git.llucax.com Git - software/posixx.git/blob - test/socket/unix/common.hpp
Generalize basic_buffer's value_type
[software/posixx.git] / test / socket / unix / common.hpp
1 #ifndef TEST_SOCKET_UNIX_COMMON_HPP_
2 #define TEST_SOCKET_UNIX_COMMON_HPP_
3
4 #include <posixx/socket/unix.hpp> // posixx::socket::unix
5 #include <posixx/socket/unix/print.hpp> // address ostream formatting
6 #include <boost/test/unit_test.hpp> // unit testing stuff
7 #include <ostream> // std::ostream
8 #include <unistd.h> // unlink
9 #include <sys/stat.h> // struct stat
10
11 #define PATH "/tmp/posixx_socket_unix_test"
12 #define PATH1 PATH "1"
13 #define PATH2 PATH "2"
14
15 static inline
16 void clean_test_address(posixx::socket::unix::socket& socket,
17                 const posixx::socket::unix::sockaddr& addr)
18 {
19         // remove the socket file, if exists
20         struct stat st;
21         if (stat(addr.sun_path, &st) == 0)
22                 BOOST_REQUIRE_EQUAL(unlink(addr.sun_path), 0);
23 }
24
25 static posixx::socket::unix::sockaddr test_address1(PATH1);
26 static posixx::socket::unix::sockaddr test_address2(PATH2);
27
28 #endif // TEST_SOCKET_UNIX_COMMON_HPP_