// Copyright 2021 gRPC authors. // // 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 "src/core/lib/promise/try_join.h" #include #include #include #include "absl/utility/utility.h" #include "gtest/gtest.h" namespace grpc_core { struct AbslStatusTraits { template static auto TryJoinImpl(Promises... promises) { return TryJoin(std::move(promises)...); } template using Promise = std::function>()>; template static Promise instant_ok(T x) { return [x] { return absl::StatusOr(x); }; } static auto instant_ok_status() { return [] { return absl::OkStatus(); }; } template static Promise instant_fail() { return [] { return absl::StatusOr(); }; } template static Poll>> ok(T... x) { return absl::StatusOr>(absl::in_place, x...); } template static Poll>> fail() { return absl::StatusOr>(); } template static Promise pending() { return []() -> Poll> { return Pending(); }; } }; struct ValueOrFailureTraits { template static auto TryJoinImpl(Promises... promises) { return TryJoin(std::move(promises)...); } template using Promise = std::function>()>; template static Promise instant_ok(T x) { return [x] { return ValueOrFailure(x); }; } static auto instant_ok_status() { return [] { return StatusFlag(true); }; } template static Promise instant_fail() { return [] { return Failure{}; }; } template static Poll>> ok(T... x) { return ValueOrFailure>(std::tuple(x...)); } template static Poll>> fail() { return Failure{}; } template static Promise pending() { return []() -> Poll> { return Pending(); }; } }; template class TryJoinTest : public ::testing::Test {}; using Traits = ::testing::Types; TYPED_TEST_SUITE(TryJoinTest, Traits); TYPED_TEST(TryJoinTest, Join1) { EXPECT_EQ(TypeParam::TryJoinImpl(TypeParam::instant_ok(1))(), TypeParam::ok(1)); } TYPED_TEST(TryJoinTest, Join1Fail) { EXPECT_EQ(TypeParam::TryJoinImpl(TypeParam::template instant_fail())(), TypeParam::template fail()); } TYPED_TEST(TryJoinTest, Join2Success) { EXPECT_EQ(TypeParam::TryJoinImpl(TypeParam::instant_ok(1), TypeParam::instant_ok(2))(), TypeParam::ok(1, 2)); } TYPED_TEST(TryJoinTest, Join2Fail1) { EXPECT_EQ(TypeParam::TryJoinImpl(TypeParam::instant_ok(1), TypeParam::template instant_fail())(), (TypeParam::template fail())); } TYPED_TEST(TryJoinTest, Join2Fail2) { EXPECT_EQ(TypeParam::TryJoinImpl(TypeParam::template instant_fail(), TypeParam::instant_ok(2))(), (TypeParam::template fail())); } TYPED_TEST(TryJoinTest, Join2Fail1P) { EXPECT_EQ(TypeParam::TryJoinImpl(TypeParam::template pending(), TypeParam::template instant_fail())(), (TypeParam::template fail())); } TYPED_TEST(TryJoinTest, Join2Fail2P) { EXPECT_EQ(TypeParam::TryJoinImpl(TypeParam::template instant_fail(), TypeParam::template pending())(), (TypeParam::template fail())); } TYPED_TEST(TryJoinTest, JoinStatus) { EXPECT_EQ(TypeParam::TryJoinImpl(TypeParam::instant_ok_status(), TypeParam::instant_ok_status())(), TypeParam::ok(Empty{}, Empty{})); } } // namespace grpc_core int main(int argc, char** argv) { ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }