From f760d115b90face4f804f22e53d76b5db20ff16b Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Tue, 28 Jun 2016 13:24:10 -0400 Subject: [PATCH] Add tests for the cpp interface. --- test/CMakeLists.txt | 6 +++++ test/cpp_interface.cpp | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 test/cpp_interface.cpp diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 197c48a..06bb7ad 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -132,6 +132,12 @@ if (NOT ${SPIRV_SKIP_EXECUTABLES}) TARGET UnitSPIRV SRCS ${TEST_SOURCES} LIBS ${SPIRV_TOOLS}) + + add_spvtools_unittest( + TARGET cpp_interface + SRCS cpp_interface.cpp + LIBS SPIRV-Tools-opt ${SPIRV_TOOLS}) + add_subdirectory(opt) else() message(STATUS "Did not find googletest, tests will not be built." diff --git a/test/cpp_interface.cpp b/test/cpp_interface.cpp new file mode 100644 index 0000000..75ee4d3 --- /dev/null +++ b/test/cpp_interface.cpp @@ -0,0 +1,70 @@ +// Copyright (c) 2016 Google Inc. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and/or associated documentation files (the +// "Materials"), to deal in the Materials without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Materials, and to +// permit persons to whom the Materials are furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Materials. +// +// MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +// KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +// SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT +// https://www.khronos.org/registry/ +// +// THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +// MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + +#include + +#include "opt/libspirv.hpp" + +namespace { + +using namespace spvtools; + +TEST(CppInterface, SuccessfulRoundTrip) { + const std::string input_text = "%2 = OpSizeOf %1 %3\n"; + SpvTools t(SPV_ENV_UNIVERSAL_1_1); + + std::vector binary; + EXPECT_EQ(SPV_SUCCESS, t.Assemble(input_text, &binary)); + EXPECT_TRUE(binary.size() > 5u); + EXPECT_EQ(SpvMagicNumber, binary[0]); + EXPECT_EQ(SpvVersion, binary[1]); + + std::string output_text; + EXPECT_EQ(SPV_SUCCESS, t.Disassemble(binary, &output_text)); + EXPECT_EQ(input_text, output_text); +} + +TEST(CppInterface, AssembleWithWrongTargetEnv) { + const std::string input_text = "%r = OpSizeOf %type %pointer"; + SpvTools t(SPV_ENV_UNIVERSAL_1_0); + + std::vector binary; + EXPECT_EQ(SPV_ERROR_INVALID_TEXT, t.Assemble(input_text, &binary)); +} + +TEST(CppInterface, DisassembleWithWrongTargetEnv) { + const std::string input_text = "%r = OpSizeOf %type %pointer"; + SpvTools t11(SPV_ENV_UNIVERSAL_1_1); + SpvTools t10(SPV_ENV_UNIVERSAL_1_0); + + std::vector binary; + EXPECT_EQ(SPV_SUCCESS, t11.Assemble(input_text, &binary)); + + std::string output_text; + EXPECT_EQ(SPV_ERROR_INVALID_BINARY, t10.Disassemble(binary, &output_text)); +} + +} // anonymous namespace -- 2.7.4