]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/experimental/net/internet/resolver/ops/lookup.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / net / internet / resolver / ops / lookup.cc
1 // Copyright (C) 2015-2019 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // { dg-do run { target c++14 } }
19 // { dg-add-options net_ts }
20
21 #include <experimental/internet>
22 #include <testsuite_hooks.h>
23
24 using namespace std::experimental::net;
25
26 void
27 test01()
28 {
29 bool test __attribute__((unused)) = false;
30
31 std::error_code ec;
32 io_context ctx;
33 ip::tcp::resolver resolv(ctx);
34 auto addrs = resolv.resolve("localhost", "http", ec);
35 VERIFY( !ec );
36 VERIFY( addrs.size() > 0 );
37 VERIFY( addrs.begin() != addrs.end() );
38 VERIFY( ! addrs.empty() );
39
40 auto addrs2 = resolv.resolve("localhost", "http");
41 VERIFY( addrs == addrs2 );
42 }
43
44 void
45 test02()
46 {
47 bool test __attribute__((unused)) = false;
48
49 std::error_code ec;
50 io_context ctx;
51 ip::tcp::resolver resolv(ctx);
52 auto flags = ip::resolver_base::numeric_host | ip::tcp::resolver::numeric_service;
53 auto addrs = resolv.resolve("127.0.0.1", "42", flags, ec);
54 VERIFY( !ec );
55 VERIFY( addrs.size() > 0 );
56 VERIFY( addrs.begin() != addrs.end() );
57
58 auto addrs2 = resolv.resolve("127.0.0.1", "42", flags);
59 VERIFY( addrs == addrs2 );
60
61 addrs = resolv.resolve("localhost", "42", flags, ec);
62 VERIFY( ec );
63 VERIFY( addrs.empty() );
64 addrs = resolv.resolve("127.0.0.1", "nameserver", flags, ec);
65 VERIFY( ec );
66 VERIFY( addrs.empty() );
67
68 #if __cpp_exceptions
69 bool caught = false;
70 try {
71 resolv.resolve("localhost", "http", flags);
72 } catch (const std::system_error& e) {
73 caught = true;
74 VERIFY( e.code() == ec );
75 }
76 VERIFY( caught );
77 #endif
78 }
79
80 void
81 test03()
82 {
83 bool test __attribute__((unused)) = false;
84
85 std::error_code ec;
86 io_context ctx;
87 ip::tcp::resolver resolv(ctx);
88 auto addrs = resolv.resolve("test.invalid", "http", ec);
89 VERIFY( ec );
90 VERIFY( addrs.size() == 0 );
91 VERIFY( addrs.begin() == addrs.end() );
92 VERIFY( addrs.empty() );
93 #if __cpp_exceptions
94 bool caught = false;
95 try {
96 resolv.resolve("test.invalid", "http");
97 } catch (const std::system_error& e) {
98 caught = true;
99 VERIFY( e.code() == ec );
100 }
101 VERIFY( caught );
102 #endif
103 }
104
105 int
106 main()
107 {
108 test01();
109 test02();
110 test03();
111 }