// This file is part of OpenCV project. // It is subject to the license terms in the LICENSE file found in the top-level directory // of this distribution and at http://opencv.org/license.html. // // Copyright (C) 2018 Intel Corporation #include "../test_precomp.hpp" namespace opencv_test { // Tests on T/Kind matching //////////////////////////////////////////////////// // {{ template struct Expected { using type = T; static const constexpr cv::detail::ArgKind kind = Exp; }; template struct GArgKind: public ::testing::Test { using Type = typename T::type; const cv::detail::ArgKind Kind = T::kind; }; // The reason here is to _manually_ list types and their kinds // (and NOT reuse cv::detail::ArgKind::Traits<>, since it is a subject of testing) using GArg_Test_Types = ::testing::Types < // G-API types Expected , Expected , Expected , Expected, cv::detail::ArgKind::GARRAY> , Expected, cv::detail::ArgKind::GARRAY> , Expected, cv::detail::ArgKind::GARRAY> , Expected, cv::detail::ArgKind::GARRAY> // Built-in types , Expected , Expected , Expected , Expected , Expected , Expected , Expected, cv::detail::ArgKind::OPAQUE> , Expected, cv::detail::ArgKind::OPAQUE> >; TYPED_TEST_CASE(GArgKind, GArg_Test_Types); TYPED_TEST(GArgKind, LocalVar) { typename TestFixture::Type val{}; cv::GArg arg(val); EXPECT_EQ(TestFixture::Kind, arg.kind); } TYPED_TEST(GArgKind, ConstLocalVar) { const typename TestFixture::Type val{}; cv::GArg arg(val); EXPECT_EQ(TestFixture::Kind, arg.kind); } TYPED_TEST(GArgKind, RValue) { cv::GArg arg = cv::GArg(typename TestFixture::Type()); EXPECT_EQ(TestFixture::Kind, arg.kind); } // }} //////////////////////////////////////////////////////////////////////////////// TEST(GArg, HasWrap) { static_assert(!cv::detail::has_custom_wrap::value, "GMat has no custom marshalling logic"); static_assert(!cv::detail::has_custom_wrap::value, "GScalar has no custom marshalling logic"); static_assert(cv::detail::has_custom_wrap >::value, "GArray has custom marshalling logic"); static_assert(cv::detail::has_custom_wrap >::value, "GArray has custom marshalling logic"); } TEST(GArg, GArrayU) { // Placing a GArray into GArg automatically strips it to GArrayU cv::GArg arg1 = cv::GArg(cv::GArray()); EXPECT_NO_THROW(arg1.get()); cv::GArg arg2 = cv::GArg(cv::GArray()); EXPECT_NO_THROW(arg2.get()); } } // namespace opencv_test