Ben Clayton | 881eff8 | 2023-11-28 08:53:35 +0000 | [diff] [blame] | 1 | // Copyright 2023 The Dawn & Tint Authors |
| 2 | // |
| 3 | // Redistribution and use in source and binary forms, with or without |
| 4 | // modification, are permitted provided that the following conditions are met: |
| 5 | // |
| 6 | // 1. Redistributions of source code must retain the above copyright notice, this |
| 7 | // list of conditions and the following disclaimer. |
| 8 | // |
| 9 | // 2. Redistributions in binary form must reproduce the above copyright notice, |
| 10 | // this list of conditions and the following disclaimer in the documentation |
| 11 | // and/or other materials provided with the distribution. |
| 12 | // |
| 13 | // 3. Neither the name of the copyright holder nor the names of its |
| 14 | // contributors may be used to endorse or promote products derived from |
| 15 | // this software without specific prior written permission. |
| 16 | // |
| 17 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 18 | // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 19 | // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 20 | // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| 21 | // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 22 | // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 23 | // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 24 | // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 25 | // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | |
David Neto | 4f4aed6 | 2024-07-19 18:49:55 +0000 | [diff] [blame] | 28 | #include "gmock/gmock.h" |
Ben Clayton | 881eff8 | 2023-11-28 08:53:35 +0000 | [diff] [blame] | 29 | |
| 30 | #include "src/tint/lang/spirv/validate/validate.h" |
| 31 | |
| 32 | namespace tint::spirv::validate { |
| 33 | namespace { |
| 34 | |
| 35 | TEST(SpirvValidateTest, Valid) { |
| 36 | uint32_t spirv[] = { |
| 37 | 0x07230203, 0x00010600, 0x00070000, 0x00000011, 0x00000000, 0x00020011, 0x00000001, |
| 38 | 0x0003000e, 0x00000000, 0x00000001, 0x0005000f, 0x00000005, 0x00000001, 0x6e69616d, |
| 39 | 0x00000000, 0x00060010, 0x00000001, 0x00000011, 0x00000001, 0x00000001, 0x00000001, |
| 40 | 0x00040005, 0x00000001, 0x6e69616d, 0x00000000, 0x00030005, 0x00000002, 0x0000006d, |
| 41 | 0x00020013, 0x00000003, 0x00030021, 0x00000004, 0x00000003, 0x00030016, 0x00000005, |
| 42 | 0x00000020, 0x00040017, 0x00000006, 0x00000005, 0x00000003, 0x00040018, 0x00000007, |
| 43 | 0x00000006, 0x00000003, 0x00040020, 0x00000008, 0x00000007, 0x00000007, 0x0003002e, |
| 44 | 0x00000007, 0x00000009, 0x00040015, 0x0000000a, 0x00000020, 0x00000001, 0x0004002b, |
| 45 | 0x0000000a, 0x0000000b, 0x00000001, 0x00040020, 0x0000000c, 0x00000007, 0x00000006, |
| 46 | 0x00050036, 0x00000003, 0x00000001, 0x00000000, 0x00000004, 0x000200f8, 0x0000000d, |
| 47 | 0x0005003b, 0x00000008, 0x00000002, 0x00000007, 0x00000009, 0x00050041, 0x0000000c, |
| 48 | 0x0000000e, 0x00000002, 0x0000000b, 0x0004003d, 0x00000006, 0x0000000f, 0x0000000e, |
| 49 | 0x00050051, 0x00000005, 0x00000010, 0x0000000f, 0x00000001, 0x000100fd, 0x00010038, |
| 50 | }; |
James Price | d0dadce | 2023-12-13 21:35:15 +0000 | [diff] [blame] | 51 | auto res = Validate(spirv, SPV_ENV_VULKAN_1_3); |
Ben Clayton | 89274f7 | 2024-01-03 10:53:42 +0000 | [diff] [blame] | 52 | EXPECT_EQ(res, Success); |
Ben Clayton | 881eff8 | 2023-11-28 08:53:35 +0000 | [diff] [blame] | 53 | } |
| 54 | |
David Neto | 4f4aed6 | 2024-07-19 18:49:55 +0000 | [diff] [blame] | 55 | TEST(SpirvValidateTest, Invalid) { |
Ben Clayton | 881eff8 | 2023-11-28 08:53:35 +0000 | [diff] [blame] | 56 | uint32_t spirv[] = { |
| 57 | 0x07230203, 0x00010600, 0x00070000, 0x00000011, 0x00000000, 0x00020011, 0x00000001, |
| 58 | 0x0003000e, 0x00000000, 0x00000001, 0x0005000f, 0x00000005, 0x00000001, 0x6e69616d, |
| 59 | 0x00000000, 0x00060010, 0x00000001, 0x00000011, 0x00000001, 0x00000001, 0x00000001, |
| 60 | 0x00040005, 0x00000001, 0x6e69616d, 0x00000000, 0x00030005, 0x00000002, 0x0000006d, |
| 61 | 0x00020013, 0x00000003, 0x00030021, 0x00000004, 0x00000003, 0x00030016, 0x00000005, |
| 62 | 0x00000020, 0x00040017, 0x00000006, 0x00000005, 0x00000003, 0x00040018, 0x00000007, |
| 63 | 0x00000006, 0x00000003, 0x00040020, 0x00000008, 0x00000007, 0x00000007, 0x0003002e, |
| 64 | 0x00000006, 0x00000009, 0x00040015, 0x0000000a, 0x00000020, 0x00000001, 0x0004002b, |
| 65 | 0x0000000a, 0x0000000b, 0x00000001, 0x00040020, 0x0000000c, 0x00000007, 0x00000006, |
| 66 | 0x00050036, 0x00000003, 0x00000001, 0x00000000, 0x00000004, 0x000200f8, 0x0000000d, |
| 67 | 0x0005003b, 0x00000008, 0x00000002, 0x00000007, 0x00000009, 0x00050041, 0x0000000c, |
| 68 | 0x0000000e, 0x00000002, 0x0000000b, 0x0004003d, 0x00000006, 0x0000000f, 0x0000000e, |
| 69 | 0x00050051, 0x00000005, 0x00000010, 0x0000000f, 0x00000001, 0x000100fd, 0x00010038, |
| 70 | }; |
James Price | d0dadce | 2023-12-13 21:35:15 +0000 | [diff] [blame] | 71 | auto res = Validate(spirv, SPV_ENV_VULKAN_1_3); |
Ben Clayton | 89274f7 | 2024-01-03 10:53:42 +0000 | [diff] [blame] | 72 | ASSERT_NE(res, Success); |
David Neto | 4f4aed6 | 2024-07-19 18:49:55 +0000 | [diff] [blame] | 73 | auto got = res.Failure().reason.Str(); |
| 74 | EXPECT_THAT(got, testing::HasSubstr("spirv error: SPIR-V failed validation.")); |
| 75 | EXPECT_THAT(got, testing::HasSubstr("error: Initializer type must match")); |
Ben Clayton | 881eff8 | 2023-11-28 08:53:35 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | } // namespace |
| 79 | } // namespace tint::spirv::validate |