mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-16 04:11:25 +00:00
They already exist in a `ast::type` namespace, so `ast::type::BlahType` is just stuttering. This is more important now that Is<> and As<> use the full type name. Change-Id: I7c661fe58cdc33ba7e9a95c82c996a799786661f Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/34321 Reviewed-by: dan sinclair <dsinclair@chromium.org>
96 lines
2.9 KiB
C++
96 lines
2.9 KiB
C++
// 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 "gtest/gtest.h"
|
|
#include "src/ast/type/f32_type.h"
|
|
#include "src/ast/variable.h"
|
|
#include "src/reader/wgsl/parser_impl.h"
|
|
#include "src/reader/wgsl/parser_impl_test_helper.h"
|
|
|
|
namespace tint {
|
|
namespace reader {
|
|
namespace wgsl {
|
|
namespace {
|
|
|
|
TEST_F(ParserImplTest, VariableDecl_Parses) {
|
|
auto p = parser("var my_var : f32");
|
|
auto var = p->variable_decl();
|
|
EXPECT_FALSE(p->has_error());
|
|
EXPECT_TRUE(var.matched);
|
|
EXPECT_FALSE(var.errored);
|
|
ASSERT_NE(var.value, nullptr);
|
|
EXPECT_EQ(var->name(), "my_var");
|
|
EXPECT_NE(var->type(), nullptr);
|
|
EXPECT_TRUE(var->type()->Is<ast::type::F32>());
|
|
|
|
EXPECT_EQ(var->source().range.begin.line, 1u);
|
|
EXPECT_EQ(var->source().range.begin.column, 5u);
|
|
EXPECT_EQ(var->source().range.end.line, 1u);
|
|
EXPECT_EQ(var->source().range.end.column, 11u);
|
|
}
|
|
|
|
TEST_F(ParserImplTest, VariableDecl_MissingVar) {
|
|
auto p = parser("my_var : f32");
|
|
auto v = p->variable_decl();
|
|
EXPECT_EQ(v.value, nullptr);
|
|
EXPECT_FALSE(v.matched);
|
|
EXPECT_FALSE(v.errored);
|
|
EXPECT_FALSE(p->has_error());
|
|
|
|
auto t = p->next();
|
|
ASSERT_TRUE(t.IsIdentifier());
|
|
}
|
|
|
|
TEST_F(ParserImplTest, VariableDecl_InvalidIdentDecl) {
|
|
auto p = parser("var my_var f32");
|
|
auto v = p->variable_decl();
|
|
EXPECT_FALSE(v.matched);
|
|
EXPECT_TRUE(v.errored);
|
|
EXPECT_TRUE(p->has_error());
|
|
EXPECT_EQ(v.value, nullptr);
|
|
EXPECT_EQ(p->error(), "1:12: expected ':' for variable declaration");
|
|
}
|
|
|
|
TEST_F(ParserImplTest, VariableDecl_WithStorageClass) {
|
|
auto p = parser("var<private> my_var : f32");
|
|
auto v = p->variable_decl();
|
|
EXPECT_TRUE(v.matched);
|
|
EXPECT_FALSE(v.errored);
|
|
EXPECT_FALSE(p->has_error());
|
|
ASSERT_NE(v.value, nullptr);
|
|
EXPECT_EQ(v->name(), "my_var");
|
|
EXPECT_TRUE(v->type()->Is<ast::type::F32>());
|
|
EXPECT_EQ(v->storage_class(), ast::StorageClass::kPrivate);
|
|
|
|
EXPECT_EQ(v->source().range.begin.line, 1u);
|
|
EXPECT_EQ(v->source().range.begin.column, 14u);
|
|
EXPECT_EQ(v->source().range.end.line, 1u);
|
|
EXPECT_EQ(v->source().range.end.column, 20u);
|
|
}
|
|
|
|
TEST_F(ParserImplTest, VariableDecl_InvalidStorageClass) {
|
|
auto p = parser("var<unknown> my_var : f32");
|
|
auto v = p->variable_decl();
|
|
EXPECT_FALSE(v.matched);
|
|
EXPECT_TRUE(v.errored);
|
|
EXPECT_TRUE(p->has_error());
|
|
EXPECT_EQ(v.value, nullptr);
|
|
EXPECT_EQ(p->error(), "1:5: invalid storage class for variable decoration");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace wgsl
|
|
} // namespace reader
|
|
} // namespace tint
|