1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 // <string>
10 
11 // size_type find_first_not_of(const charT* s, size_type pos = 0) const; // constexpr since C++20
12 
13 #include <string>
14 #include <cassert>
15 
16 #include "test_macros.h"
17 #include "min_allocator.h"
18 
19 template <class S>
20 TEST_CONSTEXPR_CXX20 void
test(const S & s,const typename S::value_type * str,typename S::size_type pos,typename S::size_type x)21 test(const S& s, const typename S::value_type* str, typename S::size_type pos,
22      typename S::size_type x)
23 {
24     LIBCPP_ASSERT_NOEXCEPT(s.find_first_not_of(str, pos));
25     assert(s.find_first_not_of(str, pos) == x);
26     if (x != S::npos)
27         assert(pos <= x && x < s.size());
28 }
29 
30 template <class S>
31 TEST_CONSTEXPR_CXX20 void
test(const S & s,const typename S::value_type * str,typename S::size_type x)32 test(const S& s, const typename S::value_type* str, typename S::size_type x)
33 {
34     assert(s.find_first_not_of(str) == x);
35     if (x != S::npos)
36         assert(x < s.size());
37 }
38 
39 template <class S>
test0()40 TEST_CONSTEXPR_CXX20 void test0()
41 {
42     test(S(""), "", 0, S::npos);
43     test(S(""), "laenf", 0, S::npos);
44     test(S(""), "pqlnkmbdjo", 0, S::npos);
45     test(S(""), "qkamfogpnljdcshbreti", 0, S::npos);
46     test(S(""), "", 1, S::npos);
47     test(S(""), "bjaht", 1, S::npos);
48     test(S(""), "hjlcmgpket", 1, S::npos);
49     test(S(""), "htaobedqikfplcgjsmrn", 1, S::npos);
50     test(S("fodgq"), "", 0, 0);
51     test(S("qanej"), "dfkap", 0, 0);
52     test(S("clbao"), "ihqrfebgad", 0, 0);
53     test(S("mekdn"), "ngtjfcalbseiqrphmkdo", 0, S::npos);
54     test(S("srdfq"), "", 1, 1);
55     test(S("oemth"), "ikcrq", 1, 1);
56     test(S("cdaih"), "dmajblfhsg", 1, 3);
57     test(S("qohtk"), "oqftjhdmkgsblacenirp", 1, S::npos);
58     test(S("cshmd"), "", 2, 2);
59     test(S("lhcdo"), "oebqi", 2, 2);
60     test(S("qnsoh"), "kojhpmbsfe", 2, S::npos);
61     test(S("pkrof"), "acbsjqogpltdkhinfrem", 2, S::npos);
62     test(S("fmtsp"), "", 4, 4);
63     test(S("khbpm"), "aobjd", 4, 4);
64     test(S("pbsji"), "pcbahntsje", 4, 4);
65     test(S("mprdj"), "fhepcrntkoagbmldqijs", 4, S::npos);
66     test(S("eqmpa"), "", 5, S::npos);
67     test(S("omigs"), "kocgb", 5, S::npos);
68     test(S("onmje"), "fbslrjiqkm", 5, S::npos);
69     test(S("oqmrj"), "jeidpcmalhfnqbgtrsko", 5, S::npos);
70     test(S("schfa"), "", 6, S::npos);
71     test(S("igdsc"), "qngpd", 6, S::npos);
72     test(S("brqgo"), "rodhqklgmb", 6, S::npos);
73     test(S("tnrph"), "thdjgafrlbkoiqcspmne", 6, S::npos);
74     test(S("hcjitbfapl"), "", 0, 0);
75     test(S("daiprenocl"), "ashjd", 0, 2);
76     test(S("litpcfdghe"), "mgojkldsqh", 0, 1);
77     test(S("aidjksrolc"), "imqnaghkfrdtlopbjesc", 0, S::npos);
78     test(S("qpghtfbaji"), "", 1, 1);
79     test(S("gfshlcmdjr"), "nadkh", 1, 1);
80     test(S("nkodajteqp"), "ofdrqmkebl", 1, 4);
81     test(S("gbmetiprqd"), "bdfjqgatlksriohemnpc", 1, S::npos);
82     test(S("crnklpmegd"), "", 5, 5);
83     test(S("jsbtafedoc"), "prqgn", 5, 5);
84     test(S("qnmodrtkeb"), "pejafmnokr", 5, 6);
85     test(S("cpebqsfmnj"), "odnqkgijrhabfmcestlp", 5, S::npos);
86     test(S("lmofqdhpki"), "", 9, 9);
87     test(S("hnefkqimca"), "rtjpa", 9, S::npos);
88     test(S("drtasbgmfp"), "ktsrmnqagd", 9, 9);
89     test(S("lsaijeqhtr"), "rtdhgcisbnmoaqkfpjle", 9, S::npos);
90     test(S("elgofjmbrq"), "", 10, S::npos);
91     test(S("mjqdgalkpc"), "dplqa", 10, S::npos);
92     test(S("kthqnfcerm"), "dkacjoptns", 10, S::npos);
93     test(S("dfsjhanorc"), "hqfimtrgnbekpdcsjalo", 10, S::npos);
94     test(S("eqsgalomhb"), "", 11, S::npos);
95     test(S("akiteljmoh"), "lofbc", 11, S::npos);
96     test(S("hlbdfreqjo"), "astoegbfpn", 11, S::npos);
97     test(S("taqobhlerg"), "pdgreqomsncafklhtibj", 11, S::npos);
98     test(S("snafbdlghrjkpqtoceim"), "", 0, 0);
99     test(S("aemtbrgcklhndjisfpoq"), "lbtqd", 0, 0);
100     test(S("pnracgfkjdiholtbqsem"), "tboimldpjh", 0, 1);
101     test(S("dicfltehbsgrmojnpkaq"), "slcerthdaiqjfnobgkpm", 0, S::npos);
102     test(S("jlnkraeodhcspfgbqitm"), "", 1, 1);
103     test(S("lhosrngtmfjikbqpcade"), "aqibs", 1, 1);
104     test(S("rbtaqjhgkneisldpmfoc"), "gtfblmqinc", 1, 3);
105     test(S("gpifsqlrdkbonjtmheca"), "mkqpbtdalgniorhfescj", 1, S::npos);
106     test(S("hdpkobnsalmcfijregtq"), "", 10, 10);
107     test(S("jtlshdgqaiprkbcoenfm"), "pblas", 10, 11);
108     test(S("fkdrbqltsgmcoiphneaj"), "arosdhcfme", 10, 13);
109     test(S("crsplifgtqedjohnabmk"), "blkhjeogicatqfnpdmsr", 10, S::npos);
110     test(S("niptglfbosehkamrdqcj"), "", 19, 19);
111     test(S("copqdhstbingamjfkler"), "djkqc", 19, 19);
112     test(S("mrtaefilpdsgocnhqbjk"), "lgokshjtpb", 19, S::npos);
113     test(S("kojatdhlcmigpbfrqnes"), "bqjhtkfepimcnsgrlado", 19, S::npos);
114     test(S("eaintpchlqsbdgrkjofm"), "", 20, S::npos);
115     test(S("gjnhidfsepkrtaqbmclo"), "nocfa", 20, S::npos);
116     test(S("spocfaktqdbiejlhngmr"), "bgtajmiedc", 20, S::npos);
117     test(S("rphmlekgfscndtaobiqj"), "lsckfnqgdahejiopbtmr", 20, S::npos);
118     test(S("liatsqdoegkmfcnbhrpj"), "", 21, S::npos);
119     test(S("binjagtfldkrspcomqeh"), "gfsrt", 21, S::npos);
120     test(S("latkmisecnorjbfhqpdg"), "pfsocbhjtm", 21, S::npos);
121     test(S("lecfratdjkhnsmqpoigb"), "tpflmdnoicjgkberhqsa", 21, S::npos);
122 }
123 
124 template <class S>
test1()125 TEST_CONSTEXPR_CXX20 void test1()
126 {
127     test(S(""), "", S::npos);
128     test(S(""), "laenf", S::npos);
129     test(S(""), "pqlnkmbdjo", S::npos);
130     test(S(""), "qkamfogpnljdcshbreti", S::npos);
131     test(S("nhmko"), "", 0);
132     test(S("lahfb"), "irkhs", 0);
133     test(S("gmfhd"), "kantesmpgj", 2);
134     test(S("odaft"), "oknlrstdpiqmjbaghcfe", S::npos);
135     test(S("eolhfgpjqk"), "", 0);
136     test(S("nbatdlmekr"), "bnrpe", 2);
137     test(S("jdmciepkaq"), "jtdaefblso", 2);
138     test(S("hkbgspoflt"), "oselktgbcapndfjihrmq", S::npos);
139     test(S("gprdcokbnjhlsfmtieqa"), "", 0);
140     test(S("qjghlnftcaismkropdeb"), "bjaht", 0);
141     test(S("pnalfrdtkqcmojiesbhg"), "hjlcmgpket", 1);
142     test(S("pniotcfrhqsmgdkjbael"), "htaobedqikfplcgjsmrn", S::npos);
143 }
144 
test()145 TEST_CONSTEXPR_CXX20 bool test() {
146   {
147     typedef std::string S;
148     test0<S>();
149     test1<S>();
150   }
151 #if TEST_STD_VER >= 11
152   {
153     typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
154     test0<S>();
155     test1<S>();
156   }
157 #endif
158 
159   return true;
160 }
161 
main(int,char **)162 int main(int, char**)
163 {
164   test();
165 #if TEST_STD_VER > 17
166   static_assert(test());
167 #endif
168 
169   return 0;
170 }
171