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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
|
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "android-base/expected.h"
#include <cstdio>
#include <memory>
#include <string>
#include <gtest/gtest.h>
using android::base::expected;
using android::base::unexpected;
typedef expected<int, int> exp_int;
typedef expected<double, double> exp_double;
typedef expected<std::string, std::string> exp_string;
typedef expected<std::pair<std::string, int>, int> exp_pair;
typedef expected<void, int> exp_void;
struct T {
int a;
int b;
T() = default;
T(int a, int b) noexcept : a(a), b(b) {}
};
bool operator==(const T& x, const T& y) {
return x.a == y.a && x.b == y.b;
}
bool operator!=(const T& x, const T& y) {
return x.a != y.a || x.b != y.b;
}
struct E {
std::string message;
int cause;
E(const std::string& message, int cause) : message(message), cause(cause) {}
};
typedef expected<T,E> exp_complex;
TEST(Expected, testDefaultConstructible) {
exp_int e;
EXPECT_TRUE(e.has_value());
EXPECT_EQ(0, e.value());
exp_complex e2;
EXPECT_TRUE(e2.has_value());
EXPECT_EQ(T(0,0), e2.value());
exp_void e3;
EXPECT_TRUE(e3.has_value());
}
TEST(Expected, testCopyConstructible) {
exp_int e;
exp_int e2 = e;
EXPECT_TRUE(e.has_value());
EXPECT_TRUE(e2.has_value());
EXPECT_EQ(0, e.value());
EXPECT_EQ(0, e2.value());
exp_void e3;
exp_void e4 = e3;
EXPECT_TRUE(e3.has_value());
EXPECT_TRUE(e4.has_value());
}
TEST(Expected, testMoveConstructible) {
exp_int e;
exp_int e2 = std::move(e);
EXPECT_TRUE(e.has_value());
EXPECT_TRUE(e2.has_value());
EXPECT_EQ(0, e.value());
EXPECT_EQ(0, e2.value());
exp_string e3(std::string("hello"));
exp_string e4 = std::move(e3);
EXPECT_TRUE(e3.has_value());
EXPECT_TRUE(e4.has_value());
EXPECT_EQ("", e3.value()); // e3 is moved
EXPECT_EQ("hello", e4.value());
exp_void e5;
exp_void e6 = std::move(e5);
EXPECT_TRUE(e5.has_value());
EXPECT_TRUE(e6.has_value());
}
TEST(Expected, testCopyConstructibleFromConvertibleType) {
exp_double e = 3.3;
exp_int e2 = e;
EXPECT_TRUE(e.has_value());
EXPECT_TRUE(e2.has_value());
EXPECT_EQ(3.3, e.value());
EXPECT_EQ(3, e2.value());
}
TEST(Expected, testMoveConstructibleFromConvertibleType) {
exp_double e = 3.3;
exp_int e2 = std::move(e);
EXPECT_TRUE(e.has_value());
EXPECT_TRUE(e2.has_value());
EXPECT_EQ(3.3, e.value());
EXPECT_EQ(3, e2.value());
}
TEST(Expected, testConstructibleFromValue) {
exp_int e = 3;
exp_double e2 = 5.5;
exp_string e3 = std::string("hello");
exp_complex e4 = T(10, 20);
exp_void e5 = {};
EXPECT_TRUE(e.has_value());
EXPECT_TRUE(e2.has_value());
EXPECT_TRUE(e3.has_value());
EXPECT_TRUE(e4.has_value());
EXPECT_TRUE(e5.has_value());
EXPECT_EQ(3, e.value());
EXPECT_EQ(5.5, e2.value());
EXPECT_EQ("hello", e3.value());
EXPECT_EQ(T(10,20), e4.value());
}
TEST(Expected, testConstructibleFromMovedValue) {
std::string hello = "hello";
exp_string e = std::move(hello);
EXPECT_TRUE(e.has_value());
EXPECT_EQ("hello", e.value());
EXPECT_EQ("", hello);
}
TEST(Expected, testConstructibleFromConvertibleValue) {
exp_int e = 3.3; // double to int
exp_string e2 = "hello"; // char* to std::string
EXPECT_TRUE(e.has_value());
EXPECT_EQ(3, e.value());
EXPECT_TRUE(e2.has_value());
EXPECT_EQ("hello", e2.value());
}
TEST(Expected, testConstructibleFromUnexpected) {
exp_int::unexpected_type unexp = unexpected(10);
exp_int e = unexp;
exp_double::unexpected_type unexp2 = unexpected(10.5);
exp_double e2 = unexp2;
exp_string::unexpected_type unexp3 = unexpected(std::string("error"));
exp_string e3 = unexp3;
exp_void::unexpected_type unexp4 = unexpected(10);
exp_void e4 = unexp4;
EXPECT_FALSE(e.has_value());
EXPECT_FALSE(e2.has_value());
EXPECT_FALSE(e3.has_value());
EXPECT_FALSE(e4.has_value());
EXPECT_EQ(10, e.error());
EXPECT_EQ(10.5, e2.error());
EXPECT_EQ("error", e3.error());
EXPECT_EQ(10, e4.error());
}
TEST(Expected, testMoveConstructibleFromUnexpected) {
exp_int e = unexpected(10);
exp_double e2 = unexpected(10.5);
exp_string e3 = unexpected(std::string("error"));
exp_void e4 = unexpected(10);
EXPECT_FALSE(e.has_value());
EXPECT_FALSE(e2.has_value());
EXPECT_FALSE(e3.has_value());
EXPECT_FALSE(e4.has_value());
EXPECT_EQ(10, e.error());
EXPECT_EQ(10.5, e2.error());
EXPECT_EQ("error", e3.error());
EXPECT_EQ(10, e4.error());
}
TEST(Expected, testConstructibleByForwarding) {
exp_string e(std::in_place, 5, 'a');
EXPECT_TRUE(e.has_value());
EXPECT_EQ("aaaaa", e.value());
exp_string e2({'a', 'b', 'c'});
EXPECT_TRUE(e2.has_value());
EXPECT_EQ("abc", e2.value());
exp_pair e3({"hello", 30});
EXPECT_TRUE(e3.has_value());
EXPECT_EQ("hello",e3->first);
EXPECT_EQ(30,e3->second);
exp_void e4({});
EXPECT_TRUE(e4.has_value());
}
TEST(Expected, testDestructible) {
bool destroyed = false;
struct T {
bool* flag_;
T(bool* flag) : flag_(flag) {}
~T() { *flag_ = true; }
};
{
expected<T, int> exp = T(&destroyed);
}
EXPECT_TRUE(destroyed);
}
TEST(Expected, testAssignable) {
exp_int e = 10;
exp_int e2 = 20;
e = e2;
EXPECT_EQ(20, e.value());
EXPECT_EQ(20, e2.value());
exp_int e3 = 10;
exp_int e4 = 20;
e3 = std::move(e4);
EXPECT_EQ(20, e3.value());
EXPECT_EQ(20, e4.value());
exp_void e5 = unexpected(10);
ASSERT_FALSE(e5.has_value());
exp_void e6;
e5 = e6;
EXPECT_TRUE(e5.has_value());
EXPECT_TRUE(e6.has_value());
}
TEST(Expected, testAssignableFromValue) {
exp_int e = 10;
e = 20;
EXPECT_EQ(20, e.value());
exp_double e2 = 3.5;
e2 = 10.5;
EXPECT_EQ(10.5, e2.value());
exp_string e3 = "hello";
e3 = "world";
EXPECT_EQ("world", e3.value());
exp_void e4 = unexpected(10);
ASSERT_FALSE(e4.has_value());
e4 = {};
EXPECT_TRUE(e4.has_value());
}
TEST(Expected, testAssignableFromUnexpected) {
exp_int e = 10;
e = unexpected(30);
EXPECT_FALSE(e.has_value());
EXPECT_EQ(30, e.error());
exp_double e2 = 3.5;
e2 = unexpected(10.5);
EXPECT_FALSE(e2.has_value());
EXPECT_EQ(10.5, e2.error());
exp_string e3 = "hello";
e3 = unexpected("world");
EXPECT_FALSE(e3.has_value());
EXPECT_EQ("world", e3.error());
exp_void e4 = {};
e4 = unexpected(10);
EXPECT_FALSE(e4.has_value());
EXPECT_EQ(10, e4.error());
}
TEST(Expected, testAssignableFromMovedValue) {
std::string world = "world";
exp_string e = "hello";
e = std::move(world);
EXPECT_TRUE(e.has_value());
EXPECT_EQ("world", e.value());
EXPECT_EQ("", world);
}
TEST(Expected, testAssignableFromMovedUnexpected) {
std::string world = "world";
exp_string e = "hello";
e = unexpected(std::move(world));
EXPECT_FALSE(e.has_value());
EXPECT_EQ("world", e.error());
EXPECT_EQ("", world);
}
TEST(Expected, testEmplace) {
struct T {
int a;
double b;
T() {}
T(int a, double b) noexcept : a(a), b(b) {}
};
expected<T, int> exp;
T& t = exp.emplace(3, 10.5);
EXPECT_TRUE(exp.has_value());
EXPECT_EQ(3, t.a);
EXPECT_EQ(10.5, t.b);
EXPECT_EQ(3, exp.value().a);
EXPECT_EQ(10.5, exp.value().b);
exp_void e = unexpected(10);
ASSERT_FALSE(e.has_value());
e.emplace();
EXPECT_TRUE(e.has_value());
}
// For the swap tests, call swap using an unqualified identifier, which should
// find the namespace-scope android::base::swap() function using
// argument-dependent lookup. The usual idiom for swapping an arbitrary C++ type
// is `using std::swap; swap(...);`.
TEST(Expected, testSwapExpectedExpected) {
exp_int e = 10;
exp_int e2 = 20;
swap(e, e2);
EXPECT_TRUE(e.has_value());
EXPECT_TRUE(e2.has_value());
EXPECT_EQ(20, e.value());
EXPECT_EQ(10, e2.value());
exp_void e3;
exp_void e4;
swap(e3, e4);
EXPECT_TRUE(e3.has_value());
EXPECT_TRUE(e4.has_value());
}
TEST(Expected, testSwapUnexpectedUnexpected) {
exp_int e = unexpected(10);
exp_int e2 = unexpected(20);
swap(e, e2);
EXPECT_FALSE(e.has_value());
EXPECT_FALSE(e2.has_value());
EXPECT_EQ(20, e.error());
EXPECT_EQ(10, e2.error());
exp_void e3 = unexpected(10);
exp_void e4 = unexpected(20);
swap(e3, e4);
EXPECT_FALSE(e3.has_value());
EXPECT_FALSE(e4.has_value());
EXPECT_EQ(20, e3.error());
EXPECT_EQ(10, e4.error());
}
TEST(Expected, testSwapExpectedUnepected) {
exp_int e = 10;
exp_int e2 = unexpected(30);
swap(e, e2);
EXPECT_FALSE(e.has_value());
EXPECT_TRUE(e2.has_value());
EXPECT_EQ(30, e.error());
EXPECT_EQ(10, e2.value());
exp_void e3;
exp_void e4 = unexpected(10);
swap(e3, e4);
EXPECT_FALSE(e3.has_value());
EXPECT_TRUE(e4.has_value());
EXPECT_EQ(10, e3.error());
}
TEST(Expected, testNonswappable) {
struct NoSwap {
NoSwap(int val) : val(val) {}
NoSwap(const NoSwap& other) : val(other.val) {}
NoSwap(NoSwap&& other) : val(other.val) {}
int val;
};
// NoSwap has no namespace-scope swap function, and because it lacks a
// move assignment operator, std::swap is also not defined for it.
static_assert(!std::is_move_assignable_v<NoSwap>);
static_assert(!std::is_swappable_v<NoSwap>);
// A non-swappable type may still be used in the expected class.
expected<NoSwap, int> e1(NoSwap(3));
EXPECT_EQ(3, e1.value().val);
expected<int, NoSwap> e2(unexpected(NoSwap(5)));
EXPECT_EQ(5, e2.error().val);
expected<void, NoSwap> e3(unexpected(NoSwap(7)));
EXPECT_EQ(7, e3.error().val);
static_assert(!std::is_move_assignable_v<decltype(e1)>);
static_assert(!std::is_move_assignable_v<decltype(e2)>);
static_assert(!std::is_move_assignable_v<decltype(e3)>);
static_assert(!std::is_swappable_v<decltype(e1)>);
static_assert(!std::is_swappable_v<decltype(e2)>);
static_assert(!std::is_swappable_v<decltype(e3)>);
}
TEST(Expected, testDereference) {
struct T {
int a;
double b;
T() {}
T(int a, double b) : a(a), b(b) {}
};
expected<T, int> exp = T(3, 10.5);
EXPECT_EQ(3, exp->a);
EXPECT_EQ(10.5, exp->b);
EXPECT_EQ(3, (*exp).a);
EXPECT_EQ(10.5, (*exp).b);
}
TEST(Expected, testTest) {
exp_int e = 10;
EXPECT_TRUE(e.ok());
EXPECT_TRUE(e.has_value());
exp_int e2 = unexpected(10);
EXPECT_FALSE(e2.ok());
EXPECT_FALSE(e2.has_value());
}
TEST(Expected, testGetValue) {
exp_int e = 10;
EXPECT_EQ(10, e.value());
EXPECT_EQ(10, e.value_or(20));
exp_int e2 = unexpected(10);
EXPECT_EQ(10, e2.error());
EXPECT_EQ(20, e2.value_or(20));
}
TEST(Expected, testSameValues) {
exp_int e = 10;
exp_int e2 = 10;
EXPECT_TRUE(e == e2);
EXPECT_TRUE(e2 == e);
EXPECT_FALSE(e != e2);
EXPECT_FALSE(e2 != e);
exp_void e3;
exp_void e4;
EXPECT_TRUE(e3 == e4);
EXPECT_TRUE(e4 == e3);
EXPECT_FALSE(e3 != e4);
EXPECT_FALSE(e4 != e3);
}
TEST(Expected, testDifferentValues) {
exp_int e = 10;
exp_int e2 = 20;
EXPECT_FALSE(e == e2);
EXPECT_FALSE(e2 == e);
EXPECT_TRUE(e != e2);
EXPECT_TRUE(e2 != e);
}
TEST(Expected, testValueWithError) {
exp_int e = 10;
exp_int e2 = unexpected(10);
EXPECT_FALSE(e == e2);
EXPECT_FALSE(e2 == e);
EXPECT_TRUE(e != e2);
EXPECT_TRUE(e2 != e);
exp_void e3;
exp_void e4 = unexpected(10);
EXPECT_FALSE(e3 == e4);
EXPECT_FALSE(e4 == e3);
EXPECT_TRUE(e3 != e4);
EXPECT_TRUE(e4 != e3);
}
TEST(Expected, testSameErrors) {
exp_int e = unexpected(10);
exp_int e2 = unexpected(10);
EXPECT_TRUE(e == e2);
EXPECT_TRUE(e2 == e);
EXPECT_FALSE(e != e2);
EXPECT_FALSE(e2 != e);
exp_void e3 = unexpected(10);
exp_void e4 = unexpected(10);
EXPECT_TRUE(e3 == e4);
EXPECT_TRUE(e4 == e3);
EXPECT_FALSE(e3 != e4);
EXPECT_FALSE(e4 != e3);
}
TEST(Expected, testDifferentErrors) {
exp_int e = unexpected(10);
exp_int e2 = unexpected(20);
EXPECT_FALSE(e == e2);
EXPECT_FALSE(e2 == e);
EXPECT_TRUE(e != e2);
EXPECT_TRUE(e2 != e);
exp_void e3 = unexpected(10);
exp_void e4 = unexpected(20);
EXPECT_FALSE(e3 == e4);
EXPECT_FALSE(e4 == e3);
EXPECT_TRUE(e3 != e4);
EXPECT_TRUE(e4 != e3);
}
TEST(Expected, testCompareWithSameError) {
exp_int e = unexpected(10);
exp_int::unexpected_type error{10};
EXPECT_TRUE(e == error);
EXPECT_TRUE(error == e);
EXPECT_FALSE(e != error);
EXPECT_FALSE(error != e);
exp_void e2 = unexpected(10);
exp_void::unexpected_type error2{10};
EXPECT_TRUE(e2 == error2);
EXPECT_TRUE(error2 == e2);
EXPECT_FALSE(e2 != error2);
EXPECT_FALSE(error2 != e2);
}
TEST(Expected, testCompareWithDifferentError) {
exp_int e = unexpected(10);
exp_int::unexpected_type error{20};
EXPECT_FALSE(e == error);
EXPECT_FALSE(error == e);
EXPECT_TRUE(e != error);
EXPECT_TRUE(error != e);
exp_void e2 = unexpected(10);
exp_void::unexpected_type error2{20};
EXPECT_FALSE(e2 == error2);
EXPECT_FALSE(error2 == e2);
EXPECT_TRUE(e2 != error2);
EXPECT_TRUE(error2 != e2);
}
TEST(Expected, testCompareDifferentType) {
expected<int,int> e = 10;
expected<int32_t, int> e2 = 10;
EXPECT_TRUE(e == e2);
e2 = 20;
EXPECT_FALSE(e == e2);
expected<std::string_view,int> e3 = "hello";
expected<std::string,int> e4 = "hello";
EXPECT_TRUE(e3 == e4);
e4 = "world";
EXPECT_FALSE(e3 == e4);
expected<void,int> e5;
expected<int,int> e6 = 10;
EXPECT_FALSE(e5 == e6);
EXPECT_FALSE(e6 == e5);
}
TEST(Expected, testDivideExample) {
struct QR {
int quotient;
int remainder;
QR(int q, int r) noexcept : quotient(q), remainder(r) {}
bool operator==(const QR& rhs) const {
return quotient == rhs.quotient && remainder == rhs.remainder;
}
bool operator!=(const QR& rhs) const {
return quotient != rhs.quotient || remainder == rhs.remainder;
}
};
auto divide = [](int x, int y) -> expected<QR,E> {
if (y == 0) {
return unexpected(E("divide by zero", -1));
} else {
return QR(x / y, x % y);
}
};
EXPECT_FALSE(divide(10, 0).ok());
EXPECT_EQ("divide by zero", divide(10, 0).error().message);
EXPECT_EQ(-1, divide(10, 0).error().cause);
EXPECT_TRUE(divide(10, 3).ok());
EXPECT_EQ(QR(3, 1), *divide(10, 3));
}
TEST(Expected, testPair) {
auto test = [](bool yes) -> exp_pair {
if (yes) {
return exp_pair({"yes", 42});
} else {
return unexpected(42);
}
};
auto r = test(true);
EXPECT_TRUE(r.ok());
EXPECT_EQ("yes", r->first);
}
TEST(Expected, testVoid) {
auto test = [](bool ok) -> exp_void {
if (ok) {
return {};
} else {
return unexpected(10);
}
};
auto r = test(true);
EXPECT_TRUE(r.ok());
r = test(false);
EXPECT_FALSE(r.ok());
EXPECT_EQ(10, r.error());
}
// copied from result_test.cpp
struct ConstructorTracker {
static size_t constructor_called;
static size_t copy_constructor_called;
static size_t move_constructor_called;
static size_t copy_assignment_called;
static size_t move_assignment_called;
template <typename T,
typename std::enable_if_t<std::is_convertible_v<T, std::string>>* = nullptr>
ConstructorTracker(T&& string) : string(string) {
++constructor_called;
}
ConstructorTracker(const ConstructorTracker& ct) {
++copy_constructor_called;
string = ct.string;
}
ConstructorTracker(ConstructorTracker&& ct) noexcept {
++move_constructor_called;
string = std::move(ct.string);
}
ConstructorTracker& operator=(const ConstructorTracker& ct) {
++copy_assignment_called;
string = ct.string;
return *this;
}
ConstructorTracker& operator=(ConstructorTracker&& ct) noexcept {
++move_assignment_called;
string = std::move(ct.string);
return *this;
}
static void Reset() {
constructor_called = 0;
copy_constructor_called = 0;
move_constructor_called = 0;
copy_assignment_called = 0;
move_assignment_called = 0;
}
std::string string;
};
size_t ConstructorTracker::constructor_called = 0;
size_t ConstructorTracker::copy_constructor_called = 0;
size_t ConstructorTracker::move_constructor_called = 0;
size_t ConstructorTracker::copy_assignment_called = 0;
size_t ConstructorTracker::move_assignment_called = 0;
typedef expected<ConstructorTracker, int> exp_track;
TEST(Expected, testNumberOfCopies) {
// ordinary constructor
ConstructorTracker::Reset();
exp_track e("hello");
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
// copy constructor
ConstructorTracker::Reset();
exp_track e2 = e;
EXPECT_EQ(0U, ConstructorTracker::constructor_called);
EXPECT_EQ(1U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
// move constructor
ConstructorTracker::Reset();
exp_track e3 = std::move(e);
EXPECT_EQ(0U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(1U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
// construct from lvalue
ConstructorTracker::Reset();
ConstructorTracker ct = "hello";
exp_track e4(ct);
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(1U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
// construct from rvalue
ConstructorTracker::Reset();
ConstructorTracker ct2 = "hello";
exp_track e5(std::move(ct2));
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(1U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
// copy assignment
ConstructorTracker::Reset();
exp_track e6 = "hello";
exp_track e7 = "world";
e7 = e6;
EXPECT_EQ(2U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(1U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
// move assignment
ConstructorTracker::Reset();
exp_track e8 = "hello";
exp_track e9 = "world";
e9 = std::move(e8);
EXPECT_EQ(2U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(1U, ConstructorTracker::move_assignment_called);
// swap
ConstructorTracker::Reset();
exp_track e10 = "hello";
exp_track e11 = "world";
swap(e10, e11);
EXPECT_EQ(2U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(1U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(2U, ConstructorTracker::move_assignment_called);
}
TEST(Expected, testCopiesWithDifferentValueOrErrorTypes) {
ConstructorTracker::Reset();
// copy success value
expected<std::string, int> e1 = "hello";
expected<ConstructorTracker, int> e2 = e1;
// move success value
expected<std::string, int> e3 = "hello";
expected<ConstructorTracker, int> e4 = std::move(e3);
// copy error value
expected<int, std::string> e5 = unexpected("hello");
expected<int, ConstructorTracker> e6 = e5;
// move error value
expected<int, std::string> e7 = unexpected("hello");
expected<int, ConstructorTracker> e8 = std::move(e7);
EXPECT_EQ(4U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
}
// Constructing an expected type from a different expected type where either the
// value or the error type is ConstructorTracker in both expected types.
TEST(Expected, testCopyOrMoveTrackerAcrossExpectedConversion) {
struct IntObj {
IntObj(int) {}
};
// same value type, copy
ConstructorTracker::Reset();
expected<ConstructorTracker, int> e1 = std::string("hello");
expected<ConstructorTracker, IntObj> e2 = e1;
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(1U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
// same value type, move
ConstructorTracker::Reset();
expected<ConstructorTracker, int> e3 = std::string("hello");
expected<ConstructorTracker, IntObj> e4 = std::move(e3);
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(1U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
// same error type, copy
ConstructorTracker::Reset();
expected<int, ConstructorTracker> e5 = unexpected(std::string("hello"));
expected<IntObj, ConstructorTracker> e6 = e5;
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(1U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
// same error type, move
ConstructorTracker::Reset();
expected<int, ConstructorTracker> e7 = unexpected(std::string("hello"));
expected<IntObj, ConstructorTracker> e8 = std::move(e7);
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(1U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
}
TEST(Expected, testNoCopyOnReturn) {
auto test = [](const std::string& in) -> exp_track {
if (in.empty()) {
return "literal string";
}
if (in == "test2") {
return ConstructorTracker(in + in + "2");
}
ConstructorTracker result(in + " " + in);
return result;
};
ConstructorTracker::Reset();
auto result1 = test("");
ASSERT_TRUE(result1.ok());
EXPECT_EQ("literal string", result1->string);
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
ConstructorTracker::Reset();
auto result2 = test("test2");
ASSERT_TRUE(result2.ok());
EXPECT_EQ("test2test22", result2->string);
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(1U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
ConstructorTracker::Reset();
auto result3 = test("test3");
ASSERT_TRUE(result3.ok());
EXPECT_EQ("test3 test3", result3->string);
EXPECT_EQ(1U, ConstructorTracker::constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_constructor_called);
EXPECT_EQ(1U, ConstructorTracker::move_constructor_called);
EXPECT_EQ(0U, ConstructorTracker::copy_assignment_called);
EXPECT_EQ(0U, ConstructorTracker::move_assignment_called);
}
TEST(Expected, testNested) {
expected<exp_string, std::string> e = "hello";
EXPECT_TRUE(e.ok());
EXPECT_TRUE(e.has_value());
EXPECT_TRUE(e.value().has_value());
EXPECT_TRUE(e->ok());
EXPECT_EQ("hello", e.value().value());
expected<exp_string, std::string> e2 = unexpected("world");
EXPECT_FALSE(e2.has_value());
EXPECT_FALSE(e2.ok());
EXPECT_EQ("world", e2.error());
expected<exp_string, std::string> e3 = exp_string(unexpected("world"));
EXPECT_TRUE(e3.has_value());
EXPECT_FALSE(e3.value().has_value());
EXPECT_TRUE(e3.ok());
EXPECT_FALSE(e3->ok());
EXPECT_EQ("world", e3.value().error());
}
constexpr bool equals(const char* a, const char* b) {
return (a == nullptr && b == nullptr) ||
(a != nullptr && b != nullptr && *a == *b &&
(*a == '\0' || equals(a + 1, b + 1)));
}
TEST(Expected, testConstexpr) {
// Compilation error will occur if these expressions can't be
// evaluated at compile time
constexpr exp_int e(3);
constexpr exp_int::unexpected_type err(3);
constexpr int i = 4;
// default constructor
static_assert(exp_int().value() == 0);
// copy constructor
static_assert(exp_int(e).value() == 3);
// move constructor
static_assert(exp_int(exp_int(4)).value() == 4);
// copy construct from value
static_assert(exp_int(i).value() == 4);
// copy construct from unexpected
static_assert(exp_int(err).error() == 3);
// move construct from unexpected
static_assert(exp_int(unexpected(3)).error() == 3);
// observers
static_assert(*exp_int(3) == 3);
static_assert(exp_int(3).has_value() == true);
static_assert(static_cast<bool>(exp_int(3)));
static_assert(!static_cast<bool>(exp_int(err)));
static_assert(exp_int(3).value_or(4) == 3);
typedef expected<const char*, int> exp_s;
constexpr exp_s s("hello");
constexpr const char* c = "hello";
static_assert(equals(exp_s().value(), nullptr));
static_assert(equals(exp_s(s).value(), "hello"));
static_assert(equals(exp_s(exp_s("hello")).value(), "hello"));
static_assert(equals(exp_s("hello").value(), "hello"));
static_assert(equals(exp_s(c).value(), "hello"));
}
TEST(Expected, testWithNonConstructible) {
struct AssertNotConstructed {
AssertNotConstructed() = delete;
};
expected<int, AssertNotConstructed> v(42);
EXPECT_TRUE(v.has_value());
EXPECT_EQ(42, v.value());
expected<AssertNotConstructed, int> e(unexpected(42));
EXPECT_FALSE(e.has_value());
EXPECT_EQ(42, e.error());
}
TEST(Expected, testWithMoveOnlyType) {
typedef expected<std::unique_ptr<int>,std::unique_ptr<int>> exp_ptr;
exp_ptr e(std::make_unique<int>(3));
exp_ptr e2(unexpected(std::make_unique<int>(4)));
EXPECT_TRUE(e.has_value());
EXPECT_FALSE(e2.has_value());
EXPECT_EQ(3, *(e.value()));
EXPECT_EQ(4, *(e2.error()));
e2 = std::move(e);
EXPECT_TRUE(e.has_value());
EXPECT_TRUE(e2.has_value());
EXPECT_EQ(3, *(e2.value()));
}
// Verify that operator bool doesn't cause surprising behavior when converting
// between expected types. See wg21.link/LWG3836.
TEST(Expected, testExpectedConversionWithBoolType) {
expected<bool, int> e1{false};
expected<bool, long> e2{e1};
EXPECT_TRUE(e1.has_value());
EXPECT_TRUE(e2.has_value());
EXPECT_FALSE(e1.value());
EXPECT_FALSE(e2.value());
expected<bool, int> e3{unexpected{17}};
expected<bool, long> e4{e3};
EXPECT_FALSE(e3.has_value());
EXPECT_FALSE(e4.has_value());
EXPECT_EQ(17, e3.error());
EXPECT_EQ(17, e4.error());
}
TEST(Expected, testConversionToClassWithExplicitCtor) {
struct IntObj {
explicit IntObj(int val) : val(val) {}
int val;
};
expected<int, int> e1(3);
expected<IntObj, int> e2(e1);
EXPECT_TRUE(e2.has_value());
EXPECT_EQ(3, e2.value().val);
expected<int, int> e3(unexpected(4));
expected<int, IntObj> e4(e3);
EXPECT_FALSE(e4.has_value());
EXPECT_EQ(4, e4.error().val);
}
TEST(Expected, testNoexcept) {
struct Foo {
Foo(int) noexcept {}
};
struct Bar {
Bar(Foo) noexcept {}
};
expected<Foo, Foo> e1{3};
expected<Foo, Foo> e2{4};
expected<Bar, Bar> e3{e1};
Foo foo{5};
static_assert(noexcept(expected<Foo, Foo>(e1)));
static_assert(noexcept(expected<Foo, Foo>(std::move(e1))));
static_assert(noexcept(expected<Foo, Foo>(foo)));
static_assert(noexcept(expected<Foo, Foo>(std::move(foo))));
static_assert(noexcept(expected<Foo, Foo>(unexpected(Foo(5)))));
static_assert(noexcept(expected<Bar, Bar>(e1)));
static_assert(noexcept(expected<Bar, Bar>(std::move(e1))));
static_assert(noexcept(expected<Bar, Bar>(foo)));
static_assert(noexcept(expected<Bar, Bar>(std::move(foo))));
static_assert(noexcept(expected<Bar, Bar>(unexpected(Bar(foo)))));
static_assert(noexcept(e2 = e1));
static_assert(noexcept(e2 = std::move(e1)));
static_assert(noexcept(e3 = e1));
static_assert(noexcept(e3 = std::move(e1)));
static_assert(noexcept(e1 = Foo(5)));
static_assert(noexcept(e3 = Foo(5)));
// std::string's move constructor is noexcept, but copying a string can throw
// bad_alloc.
expected<Foo, std::string> e11{11};
expected<Foo, std::string> e12{12};
expected<Bar, std::string> e13{e11};
std::string err = "hello";
static_assert(!noexcept(expected<Foo, std::string>(e11)));
static_assert(noexcept(expected<Foo, std::string>(std::move(e11))));
static_assert(noexcept(expected<Foo, std::string>(foo)));
static_assert(noexcept(expected<Foo, std::string>(std::move(foo))));
static_assert(noexcept(expected<Foo, std::string>(unexpected(std::move(err)))));
static_assert(!noexcept(expected<Bar, std::string>(e11)));
static_assert(noexcept(expected<Bar, std::string>(std::move(e11))));
static_assert(noexcept(expected<Bar, std::string>(foo)));
static_assert(noexcept(expected<Bar, std::string>(std::move(foo))));
static_assert(!noexcept(e12 = e11));
static_assert(noexcept(e12 = std::move(e11)));
static_assert(!noexcept(e13 = e11));
static_assert(noexcept(e13 = std::move(e11)));
}
|