From 96e776c3c0c7433ab48e06e126f65c0951148759 Mon Sep 17 00:00:00 2001 From: stoorx Date: Mon, 24 Feb 2025 13:44:21 +0300 Subject: [PATCH] Refactor `Values()` generator function to resolve more complicated type transformations --- googletest/include/gtest/gtest-param-test.h | 7 ++-- .../include/gtest/internal/gtest-param-util.h | 38 ++++++------------- 2 files changed, 15 insertions(+), 30 deletions(-) diff --git a/googletest/include/gtest/gtest-param-test.h b/googletest/include/gtest/gtest-param-test.h index 9e023f96..e305e715 100644 --- a/googletest/include/gtest/gtest-param-test.h +++ b/googletest/include/gtest/gtest-param-test.h @@ -332,9 +332,10 @@ internal::ParamGenerator ValuesIn( // INSTANTIATE_TEST_SUITE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); // // -template -internal::ValueArray Values(T... v) { - return internal::ValueArray(std::move(v)...); +template +internal::ParamGenerator> Values(Ts... vs) { + return ValuesIn( + std::array, sizeof...(Ts)>{std::move(vs)...}); } // Bool() allows generating tests with parameters in a set of (false, true). diff --git a/googletest/include/gtest/internal/gtest-param-util.h b/googletest/include/gtest/internal/gtest-param-util.h index a092a86a..01e3e9e1 100644 --- a/googletest/include/gtest/internal/gtest-param-util.h +++ b/googletest/include/gtest/internal/gtest-param-util.h @@ -180,6 +180,11 @@ class ParamGeneratorInterface { virtual ParamIteratorInterface* End() const = 0; }; +template > +class ParamConverterGenerator; + // Wraps ParamGeneratorInterface and provides general generator syntax // compatible with the STL Container concept. // This class implements copy initialization semantics and the contained @@ -201,6 +206,11 @@ class ParamGenerator { iterator begin() const { return iterator(impl_->Begin()); } iterator end() const { return iterator(impl_->End()); } + template + operator ParamGenerator() { + return ParamConverterGenerator(*this); + } + private: std::shared_ptr> impl_; }; @@ -796,30 +806,6 @@ internal::ParamGenerator ValuesIn( const Container& container); namespace internal { -// Used in the Values() function to provide polymorphic capabilities. - -GTEST_DISABLE_MSC_WARNINGS_PUSH_(4100) - -template -class ValueArray { - public: - explicit ValueArray(Ts... v) : v_(FlatTupleConstructTag{}, std::move(v)...) {} - - template - operator ParamGenerator() const { // NOLINT - return ValuesIn(MakeVector(std::make_index_sequence())); - } - - private: - template - std::vector MakeVector(std::index_sequence) const { - return std::vector{static_cast(v_.template Get())...}; - } - - FlatTuple v_; -}; - -GTEST_DISABLE_MSC_WARNINGS_POP_() // 4100 template class CartesianProductGenerator @@ -1020,9 +1006,7 @@ class ParamGeneratorConverter : public ParamGeneratorInterface { Func converter_; }; // class ParamGeneratorConverter -template > +template class ParamConverterGenerator { public: ParamConverterGenerator(ParamGenerator g) // NOLINT