| // Copyright 2020 The Tint Authors. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #include "src/tint/reader/wgsl/parser_impl_test_helper.h" |
| #include "src/tint/sem/depth_texture.h" |
| |
| namespace tint::reader::wgsl { |
| namespace { |
| |
| TEST_F(ParserImplTest, DepthTextureType_Invalid) { |
| auto p = parser("1234"); |
| auto t = p->depth_texture_type(); |
| EXPECT_FALSE(t.matched); |
| EXPECT_FALSE(t.errored); |
| EXPECT_FALSE(p->has_error()); |
| } |
| |
| TEST_F(ParserImplTest, DepthTextureType_2d) { |
| auto p = parser("texture_depth_2d"); |
| auto t = p->depth_texture_type(); |
| EXPECT_TRUE(t.matched); |
| EXPECT_FALSE(t.errored); |
| ASSERT_NE(t.value, nullptr); |
| ASSERT_TRUE(t->Is<ast::Texture>()); |
| ASSERT_TRUE(t->Is<ast::DepthTexture>()); |
| EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::k2d); |
| EXPECT_FALSE(p->has_error()); |
| EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 17u}})); |
| } |
| |
| TEST_F(ParserImplTest, DepthTextureType_2dArray) { |
| auto p = parser("texture_depth_2d_array"); |
| auto t = p->depth_texture_type(); |
| EXPECT_TRUE(t.matched); |
| EXPECT_FALSE(t.errored); |
| ASSERT_NE(t.value, nullptr); |
| ASSERT_TRUE(t->Is<ast::Texture>()); |
| ASSERT_TRUE(t->Is<ast::DepthTexture>()); |
| EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::k2dArray); |
| EXPECT_FALSE(p->has_error()); |
| EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 23u}})); |
| } |
| |
| TEST_F(ParserImplTest, DepthTextureType_Cube) { |
| auto p = parser("texture_depth_cube"); |
| auto t = p->depth_texture_type(); |
| EXPECT_TRUE(t.matched); |
| EXPECT_FALSE(t.errored); |
| ASSERT_NE(t.value, nullptr); |
| ASSERT_TRUE(t->Is<ast::Texture>()); |
| ASSERT_TRUE(t->Is<ast::DepthTexture>()); |
| EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::kCube); |
| EXPECT_FALSE(p->has_error()); |
| EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 19u}})); |
| } |
| |
| TEST_F(ParserImplTest, DepthTextureType_CubeArray) { |
| auto p = parser("texture_depth_cube_array"); |
| auto t = p->depth_texture_type(); |
| EXPECT_TRUE(t.matched); |
| EXPECT_FALSE(t.errored); |
| ASSERT_NE(t.value, nullptr); |
| ASSERT_TRUE(t->Is<ast::Texture>()); |
| ASSERT_TRUE(t->Is<ast::DepthTexture>()); |
| EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::kCubeArray); |
| EXPECT_FALSE(p->has_error()); |
| EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 25u}})); |
| } |
| |
| TEST_F(ParserImplTest, DepthTextureType_Multisampled2d) { |
| auto p = parser("texture_depth_multisampled_2d"); |
| auto t = p->depth_texture_type(); |
| EXPECT_TRUE(t.matched); |
| EXPECT_FALSE(t.errored); |
| ASSERT_NE(t.value, nullptr); |
| ASSERT_TRUE(t->Is<ast::Texture>()); |
| ASSERT_TRUE(t->Is<ast::DepthMultisampledTexture>()); |
| EXPECT_EQ(t->As<ast::Texture>()->dim, ast::TextureDimension::k2d); |
| EXPECT_FALSE(p->has_error()); |
| EXPECT_EQ(t.value->source.range, (Source::Range{{1u, 1u}, {1u, 30u}})); |
| } |
| |
| } // namespace |
| } // namespace tint::reader::wgsl |