forked from gsl-lite/gsl-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_span.t.cpp
583 lines (456 loc) · 15.7 KB
/
string_span.t.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
//
// gsl-lite is based on GSL: Guidelines Support Library,
// https://github.com/microsoft/gsl
//
// Copyright (c) 2015 Martin Moene
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#include "gsl-lite.t.h"
typedef string_span::size_type size_type;
CASE( "string_span: Disallows construction of a string_span from a const C-string and size (define gsl_CONFIG_CONFIRMS_COMPILATION_ERRORS)" )
{
#if gsl_CONFIG_CONFIRMS_COMPILATION_ERRORS
char s[] = "hello";
cstring_span sv = s;
string_span v2 = sv;
string_span v3 = "Hello";
#endif
}
CASE( "string_span: ToDo: Disallows construction of a string_span from a const std::string (define gsl_CONFIG_CONFIRMS_COMPILATION_ERRORS)" )
{
#if gsl_CONFIG_CONFIRMS_COMPILATION_ERRORS
const std::string s = "hello, world";
string_span sv( s );
EXPECT( std::string( sv.data() ) == s );
#endif
}
CASE( "string_span: Allows to create a string_span from a non-const C-string and size" )
{
char s[] = "hello";
string_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( std::string( sv.data() ) == s );
}
CASE( "string_span: Allows to create a string_span from a non-const C-array" )
{
char s[] = { 'w', 'o', 'r', 'l', 'd', '\0' };
string_span sv( s );
EXPECT( std::string( sv.data() ) == "world" );
}
CASE( "string_span: Allows to create a string_span from a non-const std::array (C++11)" )
{
#if gsl_HAVE_ARRAY
std::array<char,6> arr = {{ 'w', 'o', 'r', 'l', 'd', '\0' }};
string_span sv( arr );
EXPECT( std::equal( sv.begin(), sv.end(), arr.begin() ) );
#else
EXPECT( !!"std::array<> is not available (no C++11)" );
#endif
}
CASE( "string_span: Allows to create a string_span from a non-const std::vector" )
{
#if gsl_COMPILER_MSVC_VERSION == 6
EXPECT( !!"not available for VC6" );
#else
#if gsl_HAVE_INITIALIZER_LIST
std::vector<char> vec = { 'w', 'o', 'r', 'l', 'd', '\0' };
#else
std::vector<char> vec( 'w', 5 );
#endif
#if gsl_HAVE_CONSTRAINED_SPAN_CONTAINER_CTOR || gsl_HAVE_UNCONSTRAINED_SPAN_CONTAINER_CTOR
string_span sv( vec );
EXPECT( std::equal( sv.begin(), sv.end(), vec.begin() ) );
#else
EXPECT( !!"(un)constrained construction from container is not available" );
#endif
#endif
}
CASE( "string_span: ToDo: Allows to create a string_span from a non-const std::string" )
{
#if 0
#if gsl_COMPILER_MSVC_VERSION == 6
EXPECT( !!"not available for VC6" );
#else
std::string s = "hello, world";
string_span sv( s );
EXPECT( std::string( sv.data() ) == s );
#endif
#endif
}
CASE( "string_span: Allows to create a cstring_span from a const C-string and size" )
{
const char s[] = "hello";
cstring_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( std::string( sv.data() ) == s );
}
CASE( "string_span: Allows to create a cstring_span from a const C-array" )
{
const char s[] = { 'w', 'o', 'r', 'l', 'd', '\0' };
cstring_span sv( s );
EXPECT( std::string( sv.data() ) == "world" );
}
CASE( "string_span: Allows to create a cstring_span from a const std::array (C++11)" )
{
#if gsl_HAVE_ARRAY
const std::array<char,6> arr = {{ 'w', 'o', 'r', 'l', 'd', '\0' }};
cstring_span sv( arr );
EXPECT( std::equal( sv.begin(), sv.end(), arr.begin() ) );
#else
EXPECT( !!"std::array<> is not available (no C++11)" );
#endif
}
CASE( "string_span: Allows to create a cstring_span from a const std::vector" )
{
#if gsl_COMPILER_MSVC_VERSION == 6
EXPECT( !!"Not available for MSVC6" );
#else
#if gsl_HAVE_INITIALIZER_LIST
const std::vector<char> vec = { 'w', 'o', 'r', 'l', 'd', '\0' };
#else
const std::vector<char> vec( 'w', 5 );
#endif
#if gsl_HAVE_CONSTRAINED_SPAN_CONTAINER_CTOR || gsl_HAVE_UNCONSTRAINED_SPAN_CONTAINER_CTOR
cstring_span sv( vec );
EXPECT( std::equal( sv.begin(), sv.end(), vec.begin() ) );
#else
EXPECT( !!"(un)constrained construction from container is not available" );
#endif
#endif
}
CASE( "string_span: Allows to create a cstring_span from a const std::string" )
{
#if gsl_COMPILER_MSVC_VERSION == 6
EXPECT( !!"Not available for MSVC6" );
#else
#if gsl_HAVE_CONSTRAINED_SPAN_CONTAINER_CTOR || gsl_HAVE_UNCONSTRAINED_SPAN_CONTAINER_CTOR
const std::string s = "hello, world";
cstring_span sv( s );
EXPECT( std::string( sv.data() ) == s );
#else
EXPECT( !!"(un)constrained construction from container is not available" );
#endif
#endif
}
CASE( "string_span: Allows to create a cstring_span from a non-const C-string and size" )
{
char s[] = "hello";
cstring_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( std::string( sv.data() ) == s );
}
CASE( "string_span: Allows to create a cstring_span from a non-const C-array" )
{
char s[] = { 'w', 'o', 'r', 'l', 'd', '\0' };
cstring_span sv( s );
EXPECT( std::string( sv.data() ) == "world" );
}
CASE( "string_span: Allows to create a cstring_span from a non-const std::array (C++11)" )
{
#if gsl_HAVE_ARRAY
std::array<char,6> arr = {{ 'w', 'o', 'r', 'l', 'd', '\0' }};
cstring_span sv( arr );
EXPECT( std::equal( sv.begin(), sv.end(), arr.begin() ) );
#else
EXPECT( !!"std::array<> is not available (no C++11)" );
#endif
}
CASE( "string_span: Allows to create a cstring_span from a non-const std::vector" )
{
#if gsl_COMPILER_MSVC_VERSION == 6
EXPECT( !!"Not available for MSVC6" );
#else
#if gsl_HAVE_INITIALIZER_LIST
std::vector<char> vec = { 'w', 'o', 'r', 'l', 'd', '\0' };
#else
std::vector<char> vec( 'w', 5 );
#endif
#if gsl_HAVE_CONSTRAINED_SPAN_CONTAINER_CTOR || gsl_HAVE_UNCONSTRAINED_SPAN_CONTAINER_CTOR
cstring_span sv( vec );
EXPECT( std::equal( sv.begin(), sv.end(), vec.begin() ) );
#else
EXPECT( !!"(un)constrained construction from container is not available" );
#endif
#endif
}
CASE( "string_span: Allows to create a cstring_span from a non-const std::string" )
{
#if gsl_COMPILER_MSVC_VERSION == 6
EXPECT( !!"Not available for MSVC6" );
#else
#if gsl_HAVE_CONSTRAINED_SPAN_CONTAINER_CTOR || gsl_HAVE_UNCONSTRAINED_SPAN_CONTAINER_CTOR
std::string s = "hello, world";
cstring_span sv( s );
EXPECT( std::string( sv.data() ) == s );
#else
EXPECT( !!"(un)constrained construction from container is not available" );
#endif
#endif
}
CASE( "string_span: Allows to create a wstring_span from a non-const C-string and size" )
{
wchar_t s[] = L"hello";
wstring_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
}
CASE( "string_span: Allows to create a wstring_span from a non-const C-array" )
{
wchar_t s[] = { L'w', L'o', L'r', L'l', L'd', L'\0' };
wstring_span sv( s );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
}
CASE( "string_span: Allows to create a wstring_span from a non-const std::array (C++11)" )
{
#if gsl_HAVE_ARRAY
std::array<wchar_t,6> arr = {{ 'w', 'o', 'r', 'l', 'd', '\0' }};
wstring_span sv( arr );
EXPECT( std::equal( sv.begin(), sv.end(), arr.begin() ) );
#else
EXPECT( !!"std::array<> is not available (no C++11)" );
#endif
}
CASE( "string_span: Allows to create a wstring_span from a non-const std::vector" )
{
#if gsl_COMPILER_MSVC_VERSION == 6
EXPECT( !!"not available for VC6" );
#else
#if gsl_HAVE_INITIALIZER_LIST
std::vector<wchar_t> vec = { L'w', L'o', L'r', L'l', L'd', L'\0' };
#else
std::vector<wchar_t> vec( 'w', 5 );
#endif
#if gsl_HAVE_CONSTRAINED_SPAN_CONTAINER_CTOR || gsl_HAVE_UNCONSTRAINED_SPAN_CONTAINER_CTOR
wstring_span sv( vec );
EXPECT( std::equal( sv.begin(), sv.end(), vec.begin() ) );
#else
EXPECT( !!"(un)constrained construction from container is not available" );
#endif
#endif
}
CASE( "string_span: Allows to create a cwstring_span from a non-const C-string and size" )
{
wchar_t s[] = L"hello";
cwstring_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
}
CASE( "string_span: Allows to create a cwstring_span from a non-const C-array" )
{
wchar_t s[] = { L'w', L'o', L'r', L'l', L'd', L'\0' };
cwstring_span sv( s );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
}
CASE( "string_span: Allows to create a cwstring_span from a non-const std::array (C++11)" )
{
#if gsl_HAVE_ARRAY
std::array<wchar_t,6> arr = {{ 'w', 'o', 'r', 'l', 'd', '\0' }};
cwstring_span sv( arr );
EXPECT( std::equal( sv.begin(), sv.end(), arr.begin() ) );
#else
EXPECT( !!"std::array<> is not available (no C++11)" );
#endif
}
CASE( "string_span: Allows to create a cwstring_span from a non-const std::vector" )
{
#if gsl_COMPILER_MSVC_VERSION == 6
EXPECT( !!"not available for VC6" );
#else
#if gsl_HAVE_INITIALIZER_LIST
std::vector<wchar_t> vec = { L'w', L'o', L'r', L'l', L'd', L'\0' };
#else
std::vector<wchar_t> vec( 'w', 5 );
#endif
#if gsl_HAVE_CONSTRAINED_SPAN_CONTAINER_CTOR || gsl_HAVE_UNCONSTRAINED_SPAN_CONTAINER_CTOR
cwstring_span sv( vec );
EXPECT( std::equal( sv.begin(), sv.end(), vec.begin() ) );
#else
EXPECT( !!"(un)constrained construction from container is not available" );
#endif
#endif
}
CASE( "string_span: Allows to create a cwstring_span from a const C-string and size" )
{
const wchar_t s[] = L"hello";
cwstring_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
}
CASE( "string_span: Allows to create a cwstring_span from a const C-array" )
{
const wchar_t s[] = { L'w', L'o', L'r', L'l', L'd', L'\0' };
cwstring_span sv( s );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
}
CASE( "string_span: Allows to create a cwstring_span from a const std::array (C++11)" )
{
#if gsl_HAVE_ARRAY
const std::array<wchar_t,6> arr = {{ 'w', 'o', 'r', 'l', 'd', '\0' }};
cwstring_span sv( arr );
EXPECT( std::equal( sv.begin(), sv.end(), arr.begin() ) );
#else
EXPECT( !!"std::array<> is not available (no C++11)" );
#endif
}
CASE( "string_span: Allows to create a cwstring_span from a const std::vector" )
{
#if gsl_COMPILER_MSVC_VERSION == 6
EXPECT( !!"not available for VC6" );
#else
#if gsl_HAVE_INITIALIZER_LIST
const std::vector<wchar_t> vec = { L'w', L'o', L'r', L'l', L'd', L'\0' };
#else
const std::vector<wchar_t> vec( 'w', 5 );
#endif
#if gsl_HAVE_CONSTRAINED_SPAN_CONTAINER_CTOR || gsl_HAVE_UNCONSTRAINED_SPAN_CONTAINER_CTOR
cwstring_span sv( vec );
EXPECT( std::equal( sv.begin(), sv.end(), vec.begin() ) );
#else
EXPECT( !!"(un)constrained construction from container is not available" );
#endif
#endif
}
CASE( "string_span: Allows to compare a string_span with another string_span" )
{
char s[] = "hello";
char t[] = "world";
string_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
string_span tv( t, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( sv == sv );
EXPECT( sv != tv );
EXPECT( sv <= sv );
EXPECT( sv <= tv );
EXPECT( sv < tv );
EXPECT( tv >= tv );
EXPECT( tv >= sv );
EXPECT( tv > sv );
}
CASE( "string_span: Allows to compare a string_span with a cstring_span" )
{
#if gsl_CONFIG_ALLOWS_NONSTRICT_SPAN_COMPARISON
char s[] = "hello";
string_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
cstring_span csv( s, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( sv == csv );
#else
EXPECT( !!"string_span<>: cannot compare different types (gsl_CONFIG_ALLOWS_NONSTRICT_SPAN_COMPARISON=0)" );
#endif
}
CASE( "to_string(): Allows to explicitly convert from string_span to std::string" )
{
char s[] = "hello";
string_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( to_string( sv ) == s );
}
CASE( "to_string(): Allows to explicitly convert from cstring_span to std::string" )
{
const char s[] = "hello";
cstring_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
EXPECT( to_string( sv ) == s );
}
CASE( "to_string(): Allows to explicitly convert from wstring_span to std::wstring" )
{
wchar_t s[] = L"hello";
wstring_span sv( s, gsl_DIMENSION_OF( s ) - 1 );
std::wstring ws( to_string( wstring_span( s, gsl_DIMENSION_OF( s ) - 1 ) ) );
EXPECT( std::equal( ws.begin(), ws.end(), s ) );
}
CASE( "to_string(): Allows to explicitly convert from cwstring_span to std::wstring" )
{
wchar_t s[] = L"hello";
std::wstring ws( to_string( cwstring_span( s, gsl_DIMENSION_OF( s ) - 1 ) ) );
EXPECT( std::equal( ws.begin(), ws.end(), s ) );
}
CASE( "ensure_z(): Disallows to build a string_span from a const C-string" )
{
#if gsl_CONFIG_CONFIRMS_COMPILATION_ERRORS
const char s[] = "hello";
string_span sv = ensure_z( s );
EXPECT( sv.length() == 5 );
EXPECT( std::string( sv.data() ) == s );
#endif
}
CASE( "ensure_z(): Disallows to build a wstring_span from a const wide C-string" )
{
#if gsl_CONFIG_CONFIRMS_COMPILATION_ERRORS
const wchar_t s[] = L"hello";
wstring_span sv = ensure_z( s );
EXPECT( sv.length() == 5 );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
#endif
}
CASE( "ensure_z(): Allows to build a string_span from a non-const C-string" )
{
char s[] = "hello";
#if gsl_COMPILER_MSVC_VERSION != 6
string_span sv = ensure_z( s );
#else
string_span sv = ensure_z( &s[0] );
#endif
EXPECT( sv.length() == size_type( 5 ) );
EXPECT( std::string( sv.data() ) == s );
}
CASE( "ensure_z(): Allows to build a cstring_span from a non-const C-string" )
{
char s[] = "hello";
#if gsl_COMPILER_MSVC_VERSION != 6
cstring_span sv = ensure_z( s );
#else
cstring_span sv = ensure_z( &s[0] );
#endif
EXPECT( sv.length() == size_type( 5 ) );
EXPECT( std::string( sv.data() ) == s );
}
CASE( "ensure_z(): Allows to build a cstring_span from a const C-string" )
{
const char s[] = "hello";
#if gsl_COMPILER_MSVC_VERSION != 6
cstring_span sv = ensure_z( s );
#else
cstring_span sv = ensure_z( &s[0] );
#endif
EXPECT( sv.length() == size_type( 5 ) );
EXPECT( std::string( sv.data() ) == s );
}
CASE( "ensure_z(): Allows to build a wstring_span from a non-const wide C-string" )
{
wchar_t s[] = L"hello";
#if gsl_COMPILER_MSVC_VERSION != 6
wstring_span sv = ensure_z( s );
#else
wstring_span sv = ensure_z( &s[0] );
#endif
EXPECT( sv.length() == size_type( 5 ) );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
}
CASE( "ensure_z(): Allows to build a cwstring_span from a non-const wide C-string" )
{
wchar_t s[] = L"hello";
#if gsl_COMPILER_MSVC_VERSION != 6
cwstring_span sv = ensure_z( s );
#else
cwstring_span sv = ensure_z( &s[0] );
#endif
EXPECT( sv.length() == size_type( 5 ) );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
}
CASE( "ensure_z(): Allows to build a cwstring_span from a const wide C-string" )
{
const wchar_t s[] = L"hello";
#if gsl_COMPILER_MSVC_VERSION != 6
cwstring_span sv = ensure_z( s );
#else
cwstring_span sv = ensure_z( &s[0] );
#endif
EXPECT( sv.length() == size_type( 5 ) );
EXPECT( std::wstring( sv.data() ) == std::wstring( s ) );
}
CASE( "ensure_z(): Allows to specify ultimate location of the sentinel and ensure its presence" )
{
const char * s = "hello"; // not: s[]
EXPECT_THROWS( ensure_z( s, size_type( 3 ) ) );
}
// end of file