blob: a83d49d9176c28ac035d67ca2d3b5b33ad5ed5db [file] [log] [blame]
Lei Zhang2f1ee452016-05-17 23:03:28 -04001//
2// Copyright (C) 2016 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
41namespace glslangtest {
42namespace {
43
44using LinkTest = GlslangTest<
45 ::testing::TestWithParam<std::vector<std::string>>>;
46
47TEST_P(LinkTest, FromFile)
48{
49 const auto& fileNames = GetParam();
50 const size_t fileCount = fileNames.size();
John Kessenicha86836e2016-07-09 14:50:57 -060051 const EShMessages controls = DeriveOptions(Source::GLSL, Semantics::OpenGL, Target::AST);
Lei Zhang2f1ee452016-05-17 23:03:28 -040052 GlslangResult result;
Alan Bakered777b02018-12-04 10:43:23 -050053 result.validationResult = true;
Lei Zhang2f1ee452016-05-17 23:03:28 -040054
55 // Compile each input shader file.
56 std::vector<std::unique_ptr<glslang::TShader>> shaders;
57 for (size_t i = 0; i < fileCount; ++i) {
58 std::string contents;
David Neto1d3a9662016-10-05 10:25:09 -040059 tryLoadFile(GlobalTestSettings.testRoot + "/" + fileNames[i],
Lei Zhang2f1ee452016-05-17 23:03:28 -040060 "input", &contents);
61 shaders.emplace_back(
62 new glslang::TShader(GetShaderStage(GetSuffix(fileNames[i]))));
63 auto* shader = shaders.back().get();
64 compile(shader, contents, "", controls);
65 result.shaderResults.push_back(
66 {fileNames[i], shader->getInfoLog(), shader->getInfoDebugLog()});
67 }
68
69 // Link all of them.
70 glslang::TProgram program;
71 for (const auto& shader : shaders) program.addShader(shader.get());
72 program.link(controls);
73 result.linkingOutput = program.getInfoLog();
74 result.linkingError = program.getInfoDebugLog();
75
76 std::ostringstream stream;
77 outputResultToStream(&stream, result, controls);
78
79 // Check with expected results.
80 const std::string expectedOutputFname =
David Neto1d3a9662016-10-05 10:25:09 -040081 GlobalTestSettings.testRoot + "/baseResults/" + fileNames.front() + ".out";
Lei Zhang2f1ee452016-05-17 23:03:28 -040082 std::string expectedOutput;
83 tryLoadFile(expectedOutputFname, "expected output", &expectedOutput);
84
85 checkEqAndUpdateIfRequested(expectedOutput, stream.str(), expectedOutputFname);
86}
87
88// clang-format off
johnkslang23f3bdf2020-08-05 05:23:04 -060089INSTANTIATE_TEST_SUITE_P(
Lei Zhang2f1ee452016-05-17 23:03:28 -040090 Glsl, LinkTest,
91 ::testing::ValuesIn(std::vector<std::vector<std::string>>({
92 {"mains1.frag", "mains2.frag", "noMain1.geom", "noMain2.geom"},
93 {"noMain.vert", "mains.frag"},
94 {"link1.frag", "link2.frag", "link3.frag"},
95 {"recurse1.vert", "recurse1.frag", "recurse2.frag"},
96 {"300link.frag"},
97 {"300link2.frag"},
98 {"300link3.frag"},
99 {"empty.frag", "empty2.frag", "empty3.frag"},
100 {"150.tesc", "150.tese", "400.tesc", "400.tese", "410.tesc", "420.tesc", "420.tese"},
101 {"max_vertices_0.geom"},
Malcolm Bechard6f723eb2020-05-21 02:10:33 -0400102 {"contradict_0.geom", "contradict_1.geom"},
Thomas Perl7bfd08d2016-05-25 09:26:43 +0200103 {"es-link1.frag", "es-link2.frag"},
Malcolm Bechard0b66fa32020-04-02 04:03:53 -0400104 {"missingBodies.vert"},
105 {"link.multiAnonBlocksInvalid.0.0.vert", "link.multiAnonBlocksInvalid.0.1.vert"},
106 {"link.multiAnonBlocksValid.0.0.vert", "link.multiAnonBlocksValid.0.1.vert"},
107 {"link.multiBlocksInvalid.0.0.vert", "link.multiBlocksInvalid.0.1.vert"},
108 {"link.multiBlocksValid.1.0.vert", "link.multiBlocksValid.1.1.vert"},
Kevin McCullough5597c8d2021-07-06 11:50:48 -0700109 {"link.tesselation.vert", "link.tesselation.frag"},
110 {"link.tesselation.tese", "link.tesselation.tesc"},
John Kessenich31fbc112019-01-29 16:00:42 -0700111 }))
Lei Zhang2f1ee452016-05-17 23:03:28 -0400112);
113// clang-format on
114
115} // anonymous namespace
116} // namespace glslangtest