forked from anthonywilliams/strong_typedef
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_strong_typedef.cpp
More file actions
1894 lines (1621 loc) · 67.7 KB
/
Copy pathtest_strong_typedef.cpp
File metadata and controls
1894 lines (1621 loc) · 67.7 KB
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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "strong_typedef.hpp"
#include <type_traits>
#include <assert.h>
#include <iostream>
#include <sstream>
void test_strong_typedef_is_not_original() {
std::cout << __FUNCTION__ << std::endl;
static_assert(
!std::is_same<int, jss::strong_typedef<struct MyTag, int>>::value,
"Strong typedef should not be the same");
static_assert(
!std::is_same<
jss::strong_typedef<struct MyTag, int>,
jss::strong_typedef<struct MyTag2, int>>::value,
"Strong typedefs with different tags should not be the same");
}
void test_strong_typedef_explicitly_convertible_from_source() {
std::cout << __FUNCTION__ << std::endl;
jss::strong_typedef<struct Tag, int> st(42);
}
using ConvTestTypedef= jss::strong_typedef<struct ConvTest, int>;
using small_result= char;
struct large_result {
small_result dummy[2];
};
small_result conv_test(ConvTestTypedef);
large_result conv_test(...);
void test_strong_typedef_not_implicitly_convertible_from_source() {
std::cout << __FUNCTION__ << std::endl;
static_assert(sizeof(conv_test(42)) == sizeof(large_result));
}
void test_strong_typedef_explicitly_convertible_to_source() {
std::cout << __FUNCTION__ << std::endl;
jss::strong_typedef<struct Tag, int> st(42);
assert(static_cast<int>(st) == 42);
}
small_result conv_test_to_int(int);
large_result conv_test_to_int(...);
void test_strong_typedef_not_implicitly_convertible_to_source() {
std::cout << __FUNCTION__ << std::endl;
jss::strong_typedef<struct Tag, int> st(42);
static_assert(sizeof(conv_test_to_int(st)) == sizeof(large_result));
}
void test_strong_typedef_is_copyable_and_movable() {
std::cout << __FUNCTION__ << std::endl;
std::string const s=
"hello there this is quote a long string abcdefghijklmnopoq";
using ST= jss::strong_typedef<struct Tag, std::string>;
ST st(s);
static_assert(
std::is_copy_constructible<ST>::value,
"strong typedef should be copy constructible");
static_assert(
std::is_copy_assignable<ST>::value,
"strong typedef should be copy assignable");
static_assert(
std::is_move_constructible<ST>::value,
"strong typedef should be move constructible");
static_assert(
std::is_move_assignable<ST>::value,
"strong typedef should be move assignable");
ST st2(st);
assert(static_cast<std::string>(st) == s);
assert(static_cast<std::string>(st2) == s);
ST st3(std::move(st));
assert(static_cast<std::string>(st) == "");
assert(static_cast<std::string>(st2) == s);
assert(static_cast<std::string>(st3) == s);
st= std::move(st2);
assert(static_cast<std::string>(st) == s);
assert(static_cast<std::string>(st2) == "");
assert(static_cast<std::string>(st3) == s);
st2= st;
assert(static_cast<std::string>(st) == s);
assert(static_cast<std::string>(st2) == s);
assert(static_cast<std::string>(st3) == s);
}
template <typename T>
typename std::enable_if<
sizeof(std::declval<T const &>() == std::declval<T const &>()) != 0,
small_result>::type
test_equality(int);
template <typename T> large_result test_equality(...);
template <typename T>
typename std::enable_if<
sizeof(std::declval<T const &>() != std::declval<T const &>()) != 0,
small_result>::type
test_inequality(int);
template <typename T> large_result test_inequality(...);
void test_by_default_strong_typedef_is_not_equality_comparable() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<struct Tag, std::string>;
static_assert(sizeof(test_equality<ST>(0)) == sizeof(large_result));
static_assert(
sizeof(test_equality<std::string>(0)) == sizeof(small_result));
static_assert(sizeof(test_inequality<ST>(0)) == sizeof(large_result));
static_assert(
sizeof(test_inequality<std::string>(0)) == sizeof(small_result));
}
void test_can_get_underlying_value_and_type() {
std::cout << __FUNCTION__ << std::endl;
struct LocalTag;
struct X {
int i;
};
using ST= jss::strong_typedef<LocalTag, X>;
ST st({42});
static_assert(
std::is_same<typename ST::underlying_value_type, X>::value,
"Strong typedef must expose underlying type");
static_assert(
std::is_same<
decltype(std::declval<ST &>().underlying_value()), X &>::value,
"Strong typedef must expose underlying value");
static_assert(
std::is_same<
decltype(std::declval<ST const &>().underlying_value()),
X const &>::value,
"Strong typedef must expose underlying value");
assert(st.underlying_value().i == 42);
}
void test_strong_typedef_is_equality_comparable_if_tagged_as_such() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, std::string,
jss::strong_typedef_properties::equality_comparable>;
static_assert(sizeof(test_equality<ST>(0)) == sizeof(small_result));
static_assert(
sizeof(test_equality<std::string>(0)) == sizeof(small_result));
static_assert(sizeof(test_inequality<ST>(0)) == sizeof(small_result));
static_assert(
sizeof(test_inequality<std::string>(0)) == sizeof(small_result));
}
template <typename T>
typename std::enable_if<sizeof(std::declval<T &>()++) != 0, small_result>::type
test_post_incrementable(int);
template <typename T> large_result test_post_incrementable(...);
template <typename T>
typename std::enable_if<sizeof(++std::declval<T &>()) != 0, small_result>::type
test_pre_incrementable(int);
template <typename T> large_result test_pre_incrementable(...);
void test_by_default_strong_typedef_is_not_incrementable() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<struct Tag, int>;
static_assert(
sizeof(test_post_incrementable<ST>(0)) == sizeof(large_result));
assert(
sizeof(test_post_incrementable<std::string>(0)) ==
sizeof(large_result));
static_assert(
sizeof(test_post_incrementable<int>(0)) == sizeof(small_result));
static_assert(
sizeof(test_pre_incrementable<ST>(0)) == sizeof(large_result));
assert(
sizeof(test_pre_incrementable<std::string>(0)) == sizeof(large_result));
static_assert(
sizeof(test_pre_incrementable<int>(0)) == sizeof(small_result));
}
void test_strong_typedef_is_incrementable_if_tagged_as_such() {
std::cout << __FUNCTION__ << std::endl;
using ST_post= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::post_incrementable>;
using ST_pre= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::pre_incrementable>;
using ST_both= jss::strong_typedef<
struct ST_both_tag, int, jss::strong_typedef_properties::incrementable>;
static_assert(
sizeof(test_pre_incrementable<ST_pre>(0)) == sizeof(small_result));
static_assert(
sizeof(test_pre_incrementable<ST_post>(0)) == sizeof(large_result));
static_assert(
sizeof(test_post_incrementable<ST_pre>(0)) == sizeof(large_result));
static_assert(
sizeof(test_post_incrementable<ST_post>(0)) == sizeof(small_result));
static_assert(
sizeof(test_pre_incrementable<ST_both>(0)) == sizeof(small_result));
static_assert(
sizeof(test_post_incrementable<ST_both>(0)) == sizeof(small_result));
ST_post post1(42);
ST_post post2= post1++;
assert(post1.underlying_value() == 43);
assert(post2.underlying_value() == 42);
ST_pre pre1(42);
ST_pre &pre2= ++pre1;
assert(&pre2 == &pre1);
assert(pre1.underlying_value() == 43);
}
template <typename T>
typename std::enable_if<sizeof(std::declval<T &>()--) != 0, small_result>::type
test_post_decrementable(int);
template <typename T> large_result test_post_decrementable(...);
template <typename T>
typename std::enable_if<sizeof(--std::declval<T &>()) != 0, small_result>::type
test_pre_decrementable(int);
template <typename T> large_result test_pre_decrementable(...);
void test_by_default_strong_typedef_is_not_decrementable() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<struct Tag, int>;
static_assert(
sizeof(test_post_decrementable<ST>(0)) == sizeof(large_result));
assert(
sizeof(test_post_decrementable<std::string>(0)) ==
sizeof(large_result));
static_assert(
sizeof(test_post_decrementable<int>(0)) == sizeof(small_result));
static_assert(
sizeof(test_pre_decrementable<ST>(0)) == sizeof(large_result));
assert(
sizeof(test_pre_decrementable<std::string>(0)) == sizeof(large_result));
static_assert(
sizeof(test_pre_decrementable<int>(0)) == sizeof(small_result));
}
void test_strong_typedef_is_decrementable_if_tagged_as_such() {
std::cout << __FUNCTION__ << std::endl;
using ST_post= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::post_decrementable>;
using ST_pre= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::pre_decrementable>;
static_assert(
sizeof(test_pre_decrementable<ST_pre>(0)) == sizeof(small_result));
static_assert(
sizeof(test_pre_decrementable<ST_post>(0)) == sizeof(large_result));
static_assert(
sizeof(test_post_decrementable<ST_pre>(0)) == sizeof(large_result));
static_assert(
sizeof(test_post_decrementable<ST_post>(0)) == sizeof(small_result));
ST_post post1(42);
ST_post post2= post1--;
assert(post1.underlying_value() == 41);
assert(post2.underlying_value() == 42);
ST_pre pre1(42);
ST_pre &pre2= --pre1;
assert(&pre2 == &pre1);
assert(pre1.underlying_value() == 41);
}
template <typename T, typename U>
typename std::enable_if<
sizeof(std::declval<T &>() + std::declval<U &>()) != 0, small_result>::type
test_addable(int);
template <typename T, typename U> large_result test_addable(...);
void test_by_default_strong_typedef_is_not_addable() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<struct Tag, std::string>;
static_assert(sizeof(test_addable<ST, ST>(0)) == sizeof(large_result));
static_assert(
sizeof(test_addable<ST, std::string>(0)) == sizeof(large_result));
static_assert(sizeof(test_addable<ST, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_addable<std::string, ST>(0)) == sizeof(large_result));
static_assert(sizeof(test_addable<int, ST>(0)) == sizeof(large_result));
assert(
sizeof(test_addable<std::string, std::string>(0)) ==
sizeof(small_result));
static_assert(sizeof(test_addable<int, int>(0)) == sizeof(small_result));
static_assert(
sizeof(test_addable<std::string, int>(0)) == sizeof(large_result));
}
void test_strong_typedef_is_addable_if_tagged_as_such() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, std::string, jss::strong_typedef_properties::addable>;
static_assert(sizeof(test_addable<ST, ST>(0)) == sizeof(small_result));
static_assert(
sizeof(test_addable<ST, std::string>(0)) == sizeof(small_result));
static_assert(sizeof(test_addable<ST, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_addable<std::string, ST>(0)) == sizeof(small_result));
static_assert(sizeof(test_addable<int, ST>(0)) == sizeof(large_result));
ST st1("hello");
ST st2= st1 + " world";
assert(st1.underlying_value() == "hello");
assert(st2.underlying_value() == "hello world");
auto st3= "goodbye" + st1;
assert(st1.underlying_value() == "hello");
assert(st3.underlying_value() == "goodbyehello");
auto st4= st1 + st1;
assert(st1.underlying_value() == "hello");
assert(st4.underlying_value() == "hellohello");
}
template <typename T, typename U>
typename std::enable_if<
sizeof(std::declval<T &>() - std::declval<U &>()) != 0, small_result>::type
test_subtractable(int);
template <typename T, typename U> large_result test_subtractable(...);
void test_by_default_strong_typedef_is_not_subtractable() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<struct Tag, int>;
static_assert(sizeof(test_subtractable<ST, ST>(0)) == sizeof(large_result));
assert(
sizeof(test_subtractable<ST, std::string>(0)) == sizeof(large_result));
static_assert(
sizeof(test_subtractable<ST, int>(0)) == sizeof(large_result));
assert(
sizeof(test_subtractable<std::string, ST>(0)) == sizeof(large_result));
static_assert(
sizeof(test_subtractable<int, ST>(0)) == sizeof(large_result));
assert(
sizeof(test_subtractable<std::string, std::string>(0)) ==
sizeof(large_result));
static_assert(
sizeof(test_subtractable<int, int>(0)) == sizeof(small_result));
assert(
sizeof(test_subtractable<std::string, int>(0)) == sizeof(large_result));
}
void test_strong_typedef_is_subtractable_if_tagged_as_such() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::subtractable>;
static_assert(sizeof(test_subtractable<ST, ST>(0)) == sizeof(small_result));
assert(
sizeof(test_subtractable<ST, std::string>(0)) == sizeof(large_result));
static_assert(
sizeof(test_subtractable<ST, int>(0)) == sizeof(small_result));
assert(
sizeof(test_subtractable<std::string, ST>(0)) == sizeof(large_result));
static_assert(
sizeof(test_subtractable<int, ST>(0)) == sizeof(small_result));
}
template <typename T, typename U>
typename std::enable_if<
std::is_same<
bool, decltype(std::declval<T const &>() < std::declval<U const &>())>::
value &&
std::is_same<
bool, decltype(
std::declval<T const &>() >
std::declval<U const &>())>::value &&
std::is_same<
bool, decltype(
std::declval<T const &>() <=
std::declval<U const &>())>::value &&
std::is_same<
bool,
decltype(
std::declval<T const &>() >= std::declval<U const &>())>::value,
small_result>::type
test_ordered(int);
template <typename T, typename U> large_result test_ordered(...);
void test_by_default_strong_typedef_is_not_ordered() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<struct Tag, int>;
static_assert(sizeof(test_ordered<ST, ST>(0)) == sizeof(large_result));
static_assert(
sizeof(test_ordered<ST, std::string>(0)) == sizeof(large_result));
static_assert(sizeof(test_ordered<ST, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_ordered<std::string, ST>(0)) == sizeof(large_result));
static_assert(sizeof(test_ordered<int, ST>(0)) == sizeof(large_result));
assert(
sizeof(test_ordered<std::string, std::string>(0)) ==
sizeof(small_result));
static_assert(sizeof(test_ordered<int, int>(0)) == sizeof(small_result));
static_assert(sizeof(test_ordered<float, int>(0)) == sizeof(small_result));
static_assert(
sizeof(test_ordered<std::string, int>(0)) == sizeof(large_result));
}
void test_strong_typedef_is_ordered_if_tagged_as_such() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::ordered>;
using ST2= jss::strong_typedef<
struct Tag2, int, jss::strong_typedef_properties::ordered>;
static_assert(sizeof(test_ordered<ST, ST>(0)) == sizeof(small_result));
static_assert(sizeof(test_ordered<ST, ST2>(0)) == sizeof(large_result));
static_assert(
sizeof(test_ordered<ST, std::string>(0)) == sizeof(large_result));
static_assert(sizeof(test_ordered<ST, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_ordered<std::string, ST>(0)) == sizeof(large_result));
static_assert(sizeof(test_ordered<int, ST>(0)) == sizeof(large_result));
ST const st1(42);
ST const st2(43);
assert(!(st1 < st1));
assert(!(st1 > st1));
assert(st1 <= st1);
assert(st1 >= st1);
assert(st1 < st2);
assert(st1 <= st2);
assert(!(st2 < st1));
assert(!(st2 <= st1));
assert(st2 > st1);
assert(st2 >= st1);
assert(!(st1 > st2));
assert(!(st1 >= st2));
}
void test_strong_typedef_is_mixed_ordered_if_tagged_as_such() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::mixed_ordered<int>>;
using ST2= jss::strong_typedef<
struct Tag2, int, jss::strong_typedef_properties::mixed_ordered<int>>;
static_assert(sizeof(test_ordered<ST, ST>(0)) == sizeof(large_result));
static_assert(sizeof(test_ordered<ST, ST2>(0)) == sizeof(large_result));
static_assert(
sizeof(test_ordered<ST, std::string>(0)) == sizeof(large_result));
static_assert(sizeof(test_ordered<ST, int>(0)) == sizeof(small_result));
static_assert(
sizeof(test_ordered<std::string, ST>(0)) == sizeof(large_result));
static_assert(sizeof(test_ordered<int, ST>(0)) == sizeof(small_result));
ST constexpr st1(42);
int const st2(43);
assert(st1 < st2);
assert(st1 <= st2);
assert(!(st2 < st1));
assert(!(st2 <= st1));
assert(st2 > st1);
assert(st2 >= st1);
assert(!(st1 > st2));
assert(!(st1 >= st2));
}
template <typename T>
typename std::enable_if<
std::is_convertible<
decltype(std::hash<T>()(std::declval<T const &>())), size_t>::value,
small_result>::type
test_hashable(int);
template <typename T> large_result test_hashable(...);
void test_by_default_strong_typedef_is_not_hashable() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<struct Tag, int>;
static_assert(sizeof(test_hashable<ST>(0)) == sizeof(large_result));
static_assert(
sizeof(test_hashable<std::string>(0)) == sizeof(small_result));
static_assert(sizeof(test_hashable<int>(0)) == sizeof(small_result));
}
void test_strong_typedef_is_hashable_if_tagged_as_such() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, std::string, jss::strong_typedef_properties::hashable>;
static_assert(sizeof(test_hashable<ST>(0)) == sizeof(small_result));
std::string s("hello");
ST st(s);
assert(std::hash<ST>()(st) == std::hash<std::string>()(s));
}
template <typename T>
typename std::enable_if<
std::is_convertible<
decltype(std::declval<std::ostream &>() << std::declval<T const &>()),
std::ostream &>::value,
small_result>::type
test_streamable(int);
template <typename T> large_result test_streamable(...);
void test_by_default_strong_typedef_is_not_streamable() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<struct Tag, int>;
static_assert(sizeof(test_streamable<ST>(0)) == sizeof(large_result));
static_assert(
sizeof(test_streamable<std::string>(0)) == sizeof(small_result));
static_assert(sizeof(test_streamable<int>(0)) == sizeof(small_result));
}
void test_strong_typedef_is_streamable_if_tagged_as_such() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, std::string, jss::strong_typedef_properties::streamable>;
static_assert(
sizeof(test_streamable<ST>(0)) == sizeof(small_result),
"Must be streamable when tagged");
std::string s("hello");
ST st(s);
std::stringstream os;
os << st;
assert(os.str() == s);
}
void test_properties_can_be_combined() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, std::string, jss::strong_typedef_properties::streamable,
jss::strong_typedef_properties::hashable,
jss::strong_typedef_properties::comparable>;
static_assert(
sizeof(test_streamable<ST>(0)) == sizeof(small_result),
"Must be streamable when tagged");
static_assert(
sizeof(test_hashable<ST>(0)) == sizeof(small_result),
"Must be hashable when tagged");
static_assert(
sizeof(test_ordered<ST, ST>(0)) == sizeof(small_result),
"Must be ordered when tagged");
static_assert(
sizeof(test_equality<ST>(0)) == sizeof(small_result),
"Must be equality-comparable when tagged");
}
void test_strong_typedef_is_default_constructible() {
std::cout << __FUNCTION__ << std::endl;
struct X {
int value;
X() : value(42) {}
};
using ST= jss::strong_typedef<struct sometag, X>;
ST st;
assert(static_cast<X>(st).value == 42);
jss::strong_typedef<struct footag, int> i;
assert(static_cast<int>(i) == 0);
}
void test_can_support_difference_with_other_type() {
std::cout << __FUNCTION__ << std::endl;
using difference_type= jss::strong_typedef<struct difftag, int>;
using ST= jss::strong_typedef<
struct sometag, int,
jss::strong_typedef_properties::difference<difference_type>>;
static_assert(sizeof(test_subtractable<ST, ST>(0)) == sizeof(small_result));
static_assert(
std::is_same<
decltype(std::declval<ST const &>() - std::declval<ST const &>()),
difference_type>::value);
ST st1(45);
ST st2(99);
difference_type res= st2 - st1;
assert(res.underlying_value() == 54);
}
template <typename T, typename U>
typename std::enable_if<
sizeof(std::declval<T &>() * std::declval<U &>()) != 0, small_result>::type
test_multiplicable(int);
template <typename T, typename U> large_result test_multiplicable(...);
void test_self_multiplication() {
std::cout << __FUNCTION__ << std::endl;
static_assert(
sizeof(test_multiplicable<int, int>(0)) == sizeof(small_result));
using ST1= jss::strong_typedef<struct Tag1, int>;
static_assert(
sizeof(test_multiplicable<ST1, ST1>(0)) == sizeof(large_result));
static_assert(
sizeof(test_multiplicable<ST1, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_multiplicable<int, ST1>(0)) == sizeof(large_result));
}
void test_mixed_multiplication() {
std::cout << __FUNCTION__ << std::endl;
using ST2= jss::strong_typedef<
struct Tag2, int, jss::strong_typedef_properties::self_multiplicable>;
static_assert(
sizeof(test_multiplicable<ST2, ST2>(0)) == sizeof(small_result));
static_assert(
sizeof(test_multiplicable<ST2, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_multiplicable<int, ST2>(0)) == sizeof(large_result));
ST2 a(5);
ST2 b(6);
ST2 c= a * b;
assert(c.underlying_value() == 30);
using ST3= jss::strong_typedef<
struct Tag3, int,
jss::strong_typedef_properties::mixed_multiplicable<int>>;
static_assert(
sizeof(test_multiplicable<ST3, ST3>(0)) == sizeof(large_result));
static_assert(
sizeof(test_multiplicable<ST3, int>(0)) == sizeof(small_result));
static_assert(
sizeof(test_multiplicable<int, ST3>(0)) == sizeof(small_result));
ST3 d(9);
int e(7);
ST3 f= d * e;
assert(f.underlying_value() == 63);
using ST4= jss::strong_typedef<
struct Tag4, int, jss::strong_typedef_properties::multiplicable>;
static_assert(
sizeof(test_multiplicable<ST4, ST4>(0)) == sizeof(small_result));
static_assert(
sizeof(test_multiplicable<ST4, int>(0)) == sizeof(small_result));
static_assert(
sizeof(test_multiplicable<int, ST4>(0)) == sizeof(small_result));
}
template <typename T, typename U>
typename std::enable_if<
sizeof(std::declval<T &>() / std::declval<U &>()) != 0, small_result>::type
test_divisible(int);
template <typename T, typename U> large_result test_divisible(...);
void test_self_division() {
std::cout << __FUNCTION__ << std::endl;
static_assert(sizeof(test_divisible<int, int>(0)) == sizeof(small_result));
using ST1= jss::strong_typedef<struct Tag1, int>;
static_assert(sizeof(test_divisible<ST1, ST1>(0)) == sizeof(large_result));
static_assert(sizeof(test_divisible<ST1, int>(0)) == sizeof(large_result));
static_assert(sizeof(test_divisible<int, ST1>(0)) == sizeof(large_result));
}
void test_mixed_division() {
std::cout << __FUNCTION__ << std::endl;
using ST2= jss::strong_typedef<
struct Tag2, int, jss::strong_typedef_properties::self_divisible>;
static_assert(sizeof(test_divisible<ST2, ST2>(0)) == sizeof(small_result));
static_assert(sizeof(test_divisible<ST2, int>(0)) == sizeof(large_result));
static_assert(sizeof(test_divisible<int, ST2>(0)) == sizeof(large_result));
ST2 a(42);
ST2 b(6);
ST2 c= a / b;
assert(c.underlying_value() == 7);
using ST3= jss::strong_typedef<
struct Tag3, int, jss::strong_typedef_properties::mixed_divisible<int>>;
static_assert(sizeof(test_divisible<ST3, ST3>(0)) == sizeof(large_result));
static_assert(sizeof(test_divisible<ST3, int>(0)) == sizeof(small_result));
static_assert(sizeof(test_divisible<int, ST3>(0)) == sizeof(small_result));
ST3 d(99);
int e(11);
ST3 f= d / e;
assert(f.underlying_value() == 9);
using ST4= jss::strong_typedef<
struct Tag4, int, jss::strong_typedef_properties::divisible>;
static_assert(sizeof(test_divisible<ST4, ST4>(0)) == sizeof(small_result));
static_assert(sizeof(test_divisible<ST4, int>(0)) == sizeof(small_result));
static_assert(sizeof(test_divisible<int, ST4>(0)) == sizeof(small_result));
}
template <typename T, typename U>
typename std::enable_if<
sizeof(std::declval<T &>() % std::declval<U &>()) != 0, small_result>::type
test_modulus(int);
template <typename T, typename U> large_result test_modulus(...);
void test_self_modulus() {
std::cout << __FUNCTION__ << std::endl;
static_assert(sizeof(test_modulus<int, int>(0)) == sizeof(small_result));
using ST1= jss::strong_typedef<struct Tag1, int>;
static_assert(sizeof(test_modulus<ST1, ST1>(0)) == sizeof(large_result));
static_assert(sizeof(test_modulus<ST1, int>(0)) == sizeof(large_result));
static_assert(sizeof(test_modulus<int, ST1>(0)) == sizeof(large_result));
}
void test_mixed_modulus() {
std::cout << __FUNCTION__ << std::endl;
using ST2= jss::strong_typedef<
struct Tag2, int, jss::strong_typedef_properties::self_modulus>;
static_assert(sizeof(test_modulus<ST2, ST2>(0)) == sizeof(small_result));
static_assert(sizeof(test_modulus<ST2, int>(0)) == sizeof(large_result));
static_assert(sizeof(test_modulus<int, ST2>(0)) == sizeof(large_result));
constexpr ST2 a(42);
constexpr ST2 b(5);
constexpr ST2 c= a % b;
static_assert(c.underlying_value() == 2);
using ST3= jss::strong_typedef<
struct Tag3, int, jss::strong_typedef_properties::mixed_modulus<int>>;
static_assert(sizeof(test_modulus<ST3, ST3>(0)) == sizeof(large_result));
static_assert(sizeof(test_modulus<ST3, int>(0)) == sizeof(small_result));
static_assert(sizeof(test_modulus<int, ST3>(0)) == sizeof(small_result));
constexpr ST3 d(99);
constexpr int e(8);
constexpr ST3 f= d % e;
static_assert(f.underlying_value() == 3);
using ST4= jss::strong_typedef<
struct Tag4, int, jss::strong_typedef_properties::modulus>;
static_assert(sizeof(test_modulus<ST4, ST4>(0)) == sizeof(small_result));
static_assert(sizeof(test_modulus<ST4, int>(0)) == sizeof(small_result));
static_assert(sizeof(test_modulus<int, ST4>(0)) == sizeof(small_result));
}
void test_ratio() {
std::cout << __FUNCTION__ << std::endl;
using ratio_type= jss::strong_typedef<struct difftag, int>;
using ST= jss::strong_typedef<
struct sometag, int, jss::strong_typedef_properties::ratio<ratio_type>>;
static_assert(sizeof(test_divisible<ST, ST>(0)) == sizeof(small_result));
static_assert(
std::is_same<
decltype(std::declval<ST const &>() / std::declval<ST const &>()),
ratio_type>::value);
ST st1(125);
ST st2(5);
ratio_type res= st1 / st2;
assert(res.underlying_value() == 25);
}
void test_constexpr_comparison() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::comparable>;
constexpr ST st1(42);
constexpr ST st2(43);
constexpr bool r1= st1 == st2;
constexpr bool r2= st1 < st2;
constexpr bool r3= st1 > st2;
constexpr bool r4= st1 <= st2;
constexpr bool r5= st1 >= st2;
constexpr bool r6= st1 != st2;
static_assert(!r1);
static_assert(r2);
static_assert(!r3);
static_assert(r4);
static_assert(!r5);
static_assert(r6);
}
void test_constexpr_addition() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::addable>;
constexpr ST st1(42);
constexpr ST st2(3);
constexpr ST st3= st1 + st2;
constexpr ST st4= st1 + 1;
constexpr ST st5= -1 + st1;
static_assert(st3.underlying_value() == 45);
static_assert(st4.underlying_value() == 43);
static_assert(st5.underlying_value() == 41);
}
void test_constexpr_subtraction() {
std::cout << __FUNCTION__ << std::endl;
using ST= jss::strong_typedef<
struct Tag, int, jss::strong_typedef_properties::subtractable>;
constexpr ST st1(42);
constexpr ST st2(3);
constexpr ST st3= st1 - st2;
constexpr ST st4= st1 - 1;
constexpr ST st5= -1 - st1;
static_assert(st3.underlying_value() == 39);
static_assert(st4.underlying_value() == 41);
static_assert(st5.underlying_value() == -43);
}
template <typename T, typename U>
typename std::enable_if<
sizeof(std::declval<T &>() | std::declval<U &>()) != 0, small_result>::type
test_bitwise_or(int);
template <typename T, typename U> large_result test_bitwise_or(...);
void test_bitwise_or() {
std::cout << __FUNCTION__ << std::endl;
using ST_plain= jss::strong_typedef<struct Plain, int>;
using ST_self= jss::strong_typedef<
struct Self, int, jss::strong_typedef_properties::self_bitwise_or>;
using ST_mixed= jss::strong_typedef<
struct Mixed, int,
jss::strong_typedef_properties::mixed_bitwise_or<int>>;
static_assert(
sizeof(test_bitwise_or<ST_plain, ST_plain>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_or<ST_plain, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_or<int, ST_plain>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_or<ST_self, ST_self>(0)) == sizeof(small_result));
static_assert(
sizeof(test_bitwise_or<ST_self, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_or<int, ST_self>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_or<ST_mixed, ST_mixed>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_or<ST_mixed, int>(0)) == sizeof(small_result));
static_assert(
sizeof(test_bitwise_or<int, ST_mixed>(0)) == sizeof(small_result));
constexpr ST_self st1{0x1842};
constexpr ST_self st2(0x8214);
constexpr ST_self st3= st1 | st2;
static_assert(st3.underlying_value() == 0x9a56);
constexpr ST_mixed st4{0x1842a5};
constexpr int i1(0x82145a);
constexpr ST_mixed st5= st4 | i1;
constexpr ST_mixed st6= i1 | st4;
static_assert(st5.underlying_value() == 0x9a56ff);
static_assert(st6.underlying_value() == 0x9a56ff);
}
template <typename T, typename U>
typename std::enable_if<
sizeof(std::declval<T &>() & std::declval<U &>()) != 0, small_result>::type
test_bitwise_and(int);
template <typename T, typename U> large_result test_bitwise_and(...);
void test_bitwise_and() {
std::cout << __FUNCTION__ << std::endl;
using ST_plain= jss::strong_typedef<struct Plain, int>;
using ST_self= jss::strong_typedef<
struct Self, int, jss::strong_typedef_properties::self_bitwise_and>;
using ST_mixed= jss::strong_typedef<
struct Mixed, int,
jss::strong_typedef_properties::mixed_bitwise_and<int>>;
static_assert(
sizeof(test_bitwise_and<ST_plain, ST_plain>(0)) ==
sizeof(large_result));
static_assert(
sizeof(test_bitwise_and<ST_plain, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_and<int, ST_plain>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_and<ST_self, ST_self>(0)) == sizeof(small_result));
static_assert(
sizeof(test_bitwise_and<ST_self, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_and<int, ST_self>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_and<ST_mixed, ST_mixed>(0)) ==
sizeof(large_result));
static_assert(
sizeof(test_bitwise_and<ST_mixed, int>(0)) == sizeof(small_result));
static_assert(
sizeof(test_bitwise_and<int, ST_mixed>(0)) == sizeof(small_result));
constexpr ST_self st1{0x1876};
constexpr ST_self st2(0x9af4);
constexpr ST_self st3= st1 & st2;
static_assert(st3.underlying_value() == 0x1874);
constexpr ST_mixed st4{0xf3c5a5};
constexpr int i1(0x83945a);
constexpr ST_mixed st5= st4 & i1;
constexpr ST_mixed st6= i1 & st4;
static_assert(st5.underlying_value() == 0x838400);
static_assert(st6.underlying_value() == 0x838400);
}
template <typename T, typename U>
typename std::enable_if<
sizeof(std::declval<T &>() ^ std::declval<U &>()) != 0, small_result>::type
test_bitwise_xor(int);
template <typename T, typename U> large_result test_bitwise_xor(...);
void test_bitwise_xor() {
std::cout << __FUNCTION__ << std::endl;
using ST_plain= jss::strong_typedef<struct Plain, int>;
using ST_self= jss::strong_typedef<
struct Self, int, jss::strong_typedef_properties::self_bitwise_xor>;
using ST_mixed= jss::strong_typedef<
struct Mixed, int,
jss::strong_typedef_properties::mixed_bitwise_xor<int>>;
static_assert(
sizeof(test_bitwise_xor<ST_plain, ST_plain>(0)) ==
sizeof(large_result));
static_assert(
sizeof(test_bitwise_xor<ST_plain, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_xor<int, ST_plain>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_xor<ST_self, ST_self>(0)) == sizeof(small_result));
static_assert(
sizeof(test_bitwise_xor<ST_self, int>(0)) == sizeof(large_result));
static_assert(
sizeof(test_bitwise_xor<int, ST_self>(0)) == sizeof(large_result));