]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/21_strings/basic_string/operations/find/char/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / operations / find / char / 1.cc
1 // 1999-06-09 bkoz
2
3 // Copyright (C) 1994-2024 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
19
20 // 21.3.6.1 basic_string find
21
22 #include <testsuite_string.h>
23 #include <testsuite_hooks.h>
24
25 void test01(void)
26 {
27 typedef __gnu_test::string::size_type csize_type;
28 typedef __gnu_test::string::const_reference cref;
29 typedef __gnu_test::string::reference ref;
30 csize_type npos = __gnu_test::string::npos;
31 csize_type csz01, csz02;
32
33 const char str_lit01[] = "mave";
34 const __gnu_test::string str01("mavericks, santa cruz");
35 __gnu_test::string str02(str_lit01);
36 __gnu_test::string str03("s, s");
37 __gnu_test::string str04;
38
39 // size_type find(const string&, size_type pos = 0) const;
40 csz01 = str01.find(str01);
41 VERIFY( csz01 == 0 );
42 csz01 = str01.find(str01, 4);
43 VERIFY( csz01 == npos );
44 csz01 = str01.find(str02, 0);
45 VERIFY( csz01 == 0 );
46 csz01 = str01.find(str02, 3);
47 VERIFY( csz01 == npos );
48 csz01 = str01.find(str03, 0);
49 VERIFY( csz01 == 8 );
50 csz01 = str01.find(str03, 3);
51 VERIFY( csz01 == 8 );
52 csz01 = str01.find(str03, 12);
53 VERIFY( csz01 == npos );
54
55 // An empty string consists of no characters
56 // therefore it should be found at every point in a string,
57 // except beyond the end
58 csz01 = str01.find(str04, 0);
59 VERIFY( csz01 == 0 );
60 csz01 = str01.find(str04, 5);
61 VERIFY( csz01 == 5 );
62 csz01 = str01.find(str04, str01.size());
63 VERIFY( csz01 == str01.size() );
64 csz01 = str01.find(str04, str01.size()+1);
65 VERIFY( csz01 == npos );
66
67 // size_type find(const char* s, size_type pos, size_type n) const;
68 csz01 = str01.find(str_lit01, 0, 3);
69 VERIFY( csz01 == 0 );
70 csz01 = str01.find(str_lit01, 3, 0);
71 VERIFY( csz01 == 3 );
72
73 // size_type find(const char* s, size_type pos = 0) const;
74 csz01 = str01.find(str_lit01);
75 VERIFY( csz01 == 0 );
76 csz01 = str01.find(str_lit01, 3);
77 VERIFY( csz01 == npos );
78
79 // size_type find(char c, size_type pos = 0) const;
80 csz01 = str01.find('z');
81 csz02 = str01.size() - 1;
82 VERIFY( csz01 == csz02 );
83 csz01 = str01.find('/');
84 VERIFY( csz01 == npos );
85 }
86
87 int main()
88 {
89 test01();
90 return 0;
91 }