/*
 * Copyright 2017-present Facebook, Inc.
 *
 * 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 <folly/executors/Async.h>
#include <folly/executors/ManualExecutor.h>
#include <folly/portability/GTest.h>

#include <memory>

using namespace folly;

TEST(AsyncFunc, manual_executor) {
  auto x = std::make_shared<ManualExecutor>();
  auto oldX = getCPUExecutor();
  setCPUExecutor(x);
  auto f = async([] { return 42; });
  EXPECT_FALSE(f.isReady());
  x->run();
  EXPECT_EQ(42, f.value());
  setCPUExecutor(oldX);
}

TEST(AsyncFunc, value_lambda) {
  auto lambda = [] { return 42; };
  auto future = async(lambda);
  EXPECT_EQ(42, std::move(future).get());
}

TEST(AsyncFunc, void_lambda) {
  auto lambda = [] { /*do something*/ return; };
  auto future = async(lambda);
  // Futures with a void returning function, return Unit type
  EXPECT_EQ(typeid(Unit), typeid(std::move(future).get()));
}

TEST(AsyncFunc, moveonly_lambda) {
  auto lambda = [] { return std::make_unique<int>(42); };
  auto future = async(lambda);
  EXPECT_EQ(42, *std::move(future).get());
}
