| // Copyright 2023 The Dawn & Tint Authors |
| // |
| // Redistribution and use in source and binary forms, with or without |
| // modification, are permitted provided that the following conditions are met: |
| // |
| // 1. Redistributions of source code must retain the above copyright notice, this |
| // list of conditions and the following disclaimer. |
| // |
| // 2. Redistributions in binary form must reproduce the above copyright notice, |
| // this list of conditions and the following disclaimer in the documentation |
| // and/or other materials provided with the distribution. |
| // |
| // 3. Neither the name of the copyright holder nor the names of its |
| // contributors may be used to endorse or promote products derived from |
| // this software without specific prior written permission. |
| // |
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
| // GEN_BUILD:CONDITION(tint_build_glsl_validator) |
| |
| #ifndef SRC_TINT_LANG_GLSL_WRITER_HELPER_TEST_H_ |
| #define SRC_TINT_LANG_GLSL_WRITER_HELPER_TEST_H_ |
| |
| #include <string> |
| |
| #include "gtest/gtest.h" |
| #include "src/tint/lang/core/ir/builder.h" |
| #include "src/tint/lang/glsl/validate/validate.h" |
| #include "src/tint/lang/glsl/writer/writer.h" |
| #include "src/tint/utils/text/string.h" |
| |
| namespace tint::glsl::writer { |
| |
| /// Base helper class for testing the GLSL generator implementation. |
| template <typename BASE> |
| class GlslWriterTestHelperBase : public BASE { |
| public: |
| /// The test module. |
| core::ir::Module mod; |
| /// The test builder. |
| core::ir::Builder b{mod}; |
| /// The type manager. |
| core::type::Manager& ty{mod.Types()}; |
| /// The GLSL version |
| Version version{}; |
| |
| protected: |
| /// Validation errors |
| std::string err_; |
| |
| /// Generated GLSL |
| Output output_; |
| |
| /// Run the writer on the IR module and validate the result. |
| /// @param options the writer options |
| /// @param stage the validation stage |
| /// @returns true if generation and validation succeeded |
| bool Generate(Options options = {}, |
| tint::ast::PipelineStage stage = tint::ast::PipelineStage::kCompute) { |
| auto result = writer::Generate(mod, options, ""); |
| if (result != Success) { |
| err_ = result.Failure().reason.Str(); |
| return false; |
| } |
| output_ = result.Get(); |
| |
| auto validate_res = glsl::validate::Validate(output_.glsl, stage); |
| if (validate_res != Success) { |
| size_t line_num = 1; |
| |
| std::stringstream err; |
| err << "GLSLang was expected to succeed, but failed:\n\n"; |
| for (auto line : Split(output_.glsl, "\n")) { |
| err << line_num++ << ": " << line << "\n"; |
| } |
| err << "\n\n" << validate_res.Failure(); |
| err_ = err.str(); |
| return false; |
| } |
| |
| return true; |
| } |
| |
| /// @returns the glsl header string |
| std::string GlslHeader() const { |
| std::stringstream ver; |
| ver << "#version " << version.major_version << version.minor_version << "0"; |
| if (version.IsES()) { |
| ver << " es"; |
| } |
| ver << "\n"; |
| return ver.str(); |
| } |
| }; |
| |
| /// Test class |
| using GlslWriterTest = GlslWriterTestHelperBase<testing::Test>; |
| |
| /// Test param class |
| template <typename T> |
| using GlslWriterTestWithParam = GlslWriterTestHelperBase<testing::TestWithParam<T>>; |
| |
| } // namespace tint::glsl::writer |
| |
| #endif // SRC_TINT_LANG_GLSL_WRITER_HELPER_TEST_H_ |