Merge pull request #1675 from nicebyte/ext_yuv_target
[platform/upstream/glslang.git] / gtests / Link.FromFile.Vk.cpp
1 //
2 // Copyright (C) 2016-2017 Google, Inc.
3 //
4 // All rights reserved.
5 //
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions
8 // are met:
9 //
10 //    Redistributions of source code must retain the above copyright
11 //    notice, this list of conditions and the following disclaimer.
12 //
13 //    Redistributions in binary form must reproduce the above
14 //    copyright notice, this list of conditions and the following
15 //    disclaimer in the documentation and/or other materials provided
16 //    with the distribution.
17 //
18 //    Neither the name of Google Inc. nor the names of its
19 //    contributors may be used to endorse or promote products derived
20 //    from this software without specific prior written permission.
21 //
22 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 // COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 // POSSIBILITY OF SUCH DAMAGE.
34
35 #include <memory>
36
37 #include <gtest/gtest.h>
38
39 #include "TestFixture.h"
40
41 namespace glslangtest {
42 namespace {
43
44 using LinkTestVulkan = GlslangTest<
45     ::testing::TestWithParam<std::vector<std::string>>>;
46
47 TEST_P(LinkTestVulkan, FromFile)
48 {
49     const auto& fileNames = GetParam();
50     const size_t fileCount = fileNames.size();
51     const EShMessages controls = DeriveOptions(Source::GLSL, Semantics::Vulkan, Target::AST);
52     GlslangResult result;
53
54     // Compile each input shader file.
55     bool success = true;
56     std::vector<std::unique_ptr<glslang::TShader>> shaders;
57     for (size_t i = 0; i < fileCount; ++i) {
58         std::string contents;
59         tryLoadFile(GlobalTestSettings.testRoot + "/" + fileNames[i],
60                     "input", &contents);
61         shaders.emplace_back(
62                 new glslang::TShader(GetShaderStage(GetSuffix(fileNames[i]))));
63         auto* shader = shaders.back().get();
64         shader->setAutoMapLocations(true);
65         success &= compile(shader, contents, "", controls);
66         result.shaderResults.push_back(
67             {fileNames[i], shader->getInfoLog(), shader->getInfoDebugLog()});
68     }
69
70     // Link all of them.
71     glslang::TProgram program;
72     for (const auto& shader : shaders) program.addShader(shader.get());
73     success &= program.link(controls);
74     result.linkingOutput = program.getInfoLog();
75     result.linkingError = program.getInfoDebugLog();
76
77     if (success && (controls & EShMsgSpvRules)) {
78         spv::SpvBuildLogger logger;
79         std::vector<uint32_t> spirv_binary;
80         options().disableOptimizer = true;
81         glslang::GlslangToSpv(*program.getIntermediate(shaders.front()->getStage()),
82                                 spirv_binary, &logger, &options());
83
84         std::ostringstream disassembly_stream;
85         spv::Parameterize();
86         spv::Disassemble(disassembly_stream, spirv_binary);
87         result.spirvWarningsErrors = logger.getAllMessages();
88         result.spirv = disassembly_stream.str();
89         result.validationResult = !options().validate || logger.getAllMessages().empty();
90     }
91
92     std::ostringstream stream;
93     outputResultToStream(&stream, result, controls);
94
95     // Check with expected results.
96     const std::string expectedOutputFname =
97         GlobalTestSettings.testRoot + "/baseResults/" + fileNames.front() + ".out";
98     std::string expectedOutput;
99     tryLoadFile(expectedOutputFname, "expected output", &expectedOutput);
100
101     checkEqAndUpdateIfRequested(expectedOutput, stream.str(), expectedOutputFname,
102                                 result.spirvWarningsErrors);
103 }
104
105 // clang-format off
106 INSTANTIATE_TEST_CASE_P(
107     Glsl, LinkTestVulkan,
108     ::testing::ValuesIn(std::vector<std::vector<std::string>>({
109         {"link1.vk.frag", "link2.vk.frag"},
110         {"spv.unit1.frag", "spv.unit2.frag", "spv.unit3.frag"},
111     }))
112 );
113 // clang-format on
114
115 }  // anonymous namespace
116 }  // namespace glslangtest