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-03-17 14:59:46 +00:00
|
|
|
type::F32Type f32;
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* var = create<Variable>("a", StorageClass::kNone, &f32);
|
|
|
|
auto* var_ptr = var;
|
2020-03-17 14:59:46 +00:00
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
VariableDeclStatement stmt(std::move(var));
|
2020-03-17 14:59:46 +00:00
|
|
|
EXPECT_EQ(stmt.variable(), var_ptr);
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, Creation_WithSource) {
|
2020-03-17 14:59:46 +00:00
|
|
|
type::F32Type f32;
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* var = create<Variable>("a", StorageClass::kNone, &f32);
|
2020-03-17 14:59:46 +00:00
|
|
|
|
2020-11-02 15:07:47 +00:00
|
|
|
VariableDeclStatement stmt(Source{Source::Location{20, 2}}, std::move(var));
|
2020-03-17 14:59:46 +00:00
|
|
|
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) {
|
|
|
|
VariableDeclStatement s;
|
|
|
|
EXPECT_TRUE(s.IsVariableDecl());
|
2020-03-17 14:59:46 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, IsValid) {
|
2020-03-17 14:59:46 +00:00
|
|
|
type::F32Type f32;
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* var = create<Variable>("a", StorageClass::kNone, &f32);
|
2020-03-30 22:46:48 +00:00
|
|
|
VariableDeclStatement stmt(std::move(var));
|
2020-03-17 14:59:46 +00:00
|
|
|
EXPECT_TRUE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, IsValid_InvalidVariable) {
|
2020-03-17 14:59:46 +00:00
|
|
|
type::F32Type f32;
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* var = create<Variable>("", StorageClass::kNone, &f32);
|
2020-03-30 22:46:48 +00:00
|
|
|
VariableDeclStatement stmt(std::move(var));
|
2020-03-17 14:59:46 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, IsValid_NullVariable) {
|
|
|
|
VariableDeclStatement stmt;
|
2020-03-17 14:59:46 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
TEST_F(VariableDeclStatementTest, ToStr) {
|
2020-03-17 14:59:46 +00:00
|
|
|
type::F32Type f32;
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* var = create<Variable>("a", StorageClass::kNone, &f32);
|
2020-03-17 14:59:46 +00:00
|
|
|
|
2020-11-02 15:07:47 +00:00
|
|
|
VariableDeclStatement stmt(Source{Source::Location{20, 2}}, std::move(var));
|
2020-03-17 14:59:46 +00:00
|
|
|
std::ostringstream out;
|
|
|
|
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
|