2020-03-17 14:59:46 +00:00
|
|
|
// 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.
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
#include "src/ast/variable_decl_statement.h"
|
2020-03-17 14:59:46 +00:00
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
#include "src/ast/test_helper.h"
|
2020-03-17 14:59:46 +00:00
|
|
|
#include "src/ast/type/f32_type.h"
|
|
|
|
#include "src/ast/variable.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-17 14:59:46 +00:00
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
using VariableDeclStatementTest = TestHelper;
|
2020-03-17 14:59:46 +00:00
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, Creation) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* var = Var("a", StorageClass::kNone, ty.f32);
|
2020-03-17 14:59:46 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* stmt = create<VariableDeclStatement>(var);
|
|
|
|
EXPECT_EQ(stmt->variable(), var);
|
2020-03-17 14:59:46 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, Creation_WithSource) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* var = Var("a", StorageClass::kNone, ty.f32);
|
2020-03-17 14:59:46 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* stmt =
|
|
|
|
create<VariableDeclStatement>(Source{Source::Location{20, 2}}, var);
|
|
|
|
auto src = stmt->source();
|
2020-10-30 20:44:53 +00:00
|
|
|
EXPECT_EQ(src.range.begin.line, 20u);
|
|
|
|
EXPECT_EQ(src.range.begin.column, 2u);
|
2020-03-17 14:59:46 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, IsVariableDecl) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* var = Var("a", StorageClass::kNone, ty.f32);
|
2020-12-02 18:48:58 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* stmt = create<VariableDeclStatement>(var);
|
|
|
|
EXPECT_TRUE(stmt->Is<VariableDeclStatement>());
|
2020-03-17 14:59:46 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, IsValid) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* var = Var("a", StorageClass::kNone, ty.f32);
|
|
|
|
auto* stmt = create<VariableDeclStatement>(var);
|
|
|
|
EXPECT_TRUE(stmt->IsValid());
|
2020-03-17 14:59:46 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, IsValid_InvalidVariable) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* var = Var("", StorageClass::kNone, ty.f32);
|
|
|
|
auto* stmt = create<VariableDeclStatement>(var);
|
|
|
|
EXPECT_FALSE(stmt->IsValid());
|
2020-03-17 14:59:46 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, IsValid_NullVariable) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* stmt = create<VariableDeclStatement>(nullptr);
|
|
|
|
EXPECT_FALSE(stmt->IsValid());
|
2020-03-17 14:59:46 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, ToStr) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* var = Var("a", StorageClass::kNone, ty.f32);
|
2020-03-17 14:59:46 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* stmt =
|
|
|
|
create<VariableDeclStatement>(Source{Source::Location{20, 2}}, var);
|
2020-03-17 14:59:46 +00:00
|
|
|
std::ostringstream out;
|
2020-12-14 22:30:57 +00:00
|
|
|
stmt->to_str(out, 2);
|
2020-03-30 22:46:48 +00:00
|
|
|
EXPECT_EQ(out.str(), R"( VariableDeclStatement{
|
2020-03-17 14:59:46 +00:00
|
|
|
Variable{
|
|
|
|
a
|
|
|
|
none
|
|
|
|
__f32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2020-03-17 14:59:46 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|