]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/multiset/modifiers/extract.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / multiset / modifiers / extract.cc
CommitLineData
7adcbafe 1// Copyright (C) 2016-2022 Free Software Foundation, Inc.
2dbe56bd
JW
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
6458742a 18// { dg-do run { target c++17 } }
2dbe56bd
JW
19
20#include <set>
21#include <algorithm>
22#include <testsuite_hooks.h>
23
24using test_type = std::multiset<int>;
25
26void
27test01()
28{
2dbe56bd
JW
29 test_type c{ 1, 1, 2, 2, 3, 3 };
30 test_type::node_type node;
31 test_type::iterator pos;
32
33 node = c.extract(0);
34 VERIFY( !node );
35 VERIFY( node.empty() );
36 VERIFY( c.size() == 6 );
37
38 pos = c.insert(std::move(node));
39 VERIFY( !node );
40 VERIFY( node.empty() );
41 VERIFY( c.size() == 6 );
42 VERIFY( pos == c.end() );
43
44 node = c.extract(1);
45 VERIFY( (bool)node );
46 VERIFY( !node.empty() );
47 VERIFY( c.size() == 5 );
48 VERIFY( node.get_allocator() == c.get_allocator() );
49 VERIFY( node.value() == 1 );
50
51 node.value() = 4;
52 VERIFY( node.value() == 4 );
53
54 pos = c.insert(std::move(node));
55 VERIFY( !node );
56 VERIFY( node.empty() );
57 VERIFY( c.size() == 6 );
58 VERIFY( pos != c.end() );
59 VERIFY( *pos == 4 );
60 VERIFY( c.count(1) == 1 );
61 VERIFY( c.count(4) == 1 );
62 VERIFY( std::is_sorted(c.begin(), c.end()) );
63
64 pos = c.insert(c.begin(), std::move(node));
65 VERIFY( !node );
66 VERIFY( node.empty() );
67 VERIFY( c.size() == 6 );
68 VERIFY( pos == c.end() );
69
70 node = c.extract(1);
71 pos = c.insert(c.begin(), std::move(node));
72 VERIFY( !node );
73 VERIFY( c.size() == 6 );
74 VERIFY( pos != c.end() );
75 VERIFY( *pos == 1 );
76
77 test_type c2 = c;
78 node = c2.extract(1);
79 pos = c.insert(std::move(node));
80 VERIFY( pos != c.end() );
81 VERIFY( node.empty() );
82 VERIFY( *pos == 1 );
83}
84
85void
86test02()
87{
2dbe56bd
JW
88 test_type c{ 1, 1, 2, 2, 3, 3 };
89 test_type::node_type node;
90 test_type::iterator pos;
91
92 node = c.extract(c.begin());
93 VERIFY( !node.empty() );
94 VERIFY( c.size() == 5 );
95 VERIFY( node.get_allocator() == c.get_allocator() );
96 VERIFY( node.value() == 1 );
97
98 pos = c.insert(std::next(c.begin()), std::move(node));
99 VERIFY( node.empty() );
100 VERIFY( c.size() == 6 );
101 VERIFY( pos != c.end() );
102 VERIFY( *pos == 1 );
103 VERIFY( pos == std::next(c.begin()) );
104}
105
106void
107test03()
108{
109 struct less : std::less<int> { };
110 using std::is_same_v;
111 using compat_type1 = std::multiset<int, less>;
112 static_assert( is_same_v<test_type::node_type, compat_type1::node_type> );
113 using compat_type2 = std::set<int>;
114 static_assert( is_same_v<test_type::node_type, compat_type2::node_type> );
115 using compat_type3 = std::set<int, less>;
116 static_assert( is_same_v<test_type::node_type, compat_type3::node_type> );
117}
118
119int
120main()
121{
122 test01();
123 test02();
124 test03();
125}