2020-03-06 21:18:50 +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:06 +00:00
|
|
|
#include "src/ast/scalar_constructor_expression.h"
|
2020-03-06 21:18:50 +00:00
|
|
|
|
|
|
|
#include "src/ast/bool_literal.h"
|
2020-11-13 21:58:28 +00:00
|
|
|
#include "src/ast/test_helper.h"
|
2020-03-27 00:45:34 +00:00
|
|
|
#include "src/ast/type/bool_type.h"
|
2020-03-06 21:18:50 +00:00
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-06 21:18:50 +00:00
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
using ScalarConstructorExpressionTest = TestHelper;
|
2020-03-06 21:18:50 +00:00
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
TEST_F(ScalarConstructorExpressionTest, Creation) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::Bool bool_type;
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* b = create<BoolLiteral>(&bool_type, true);
|
2020-11-16 16:41:47 +00:00
|
|
|
ScalarConstructorExpression c(b);
|
|
|
|
EXPECT_EQ(c.literal(), b);
|
2020-03-06 21:18:50 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
TEST_F(ScalarConstructorExpressionTest, Creation_WithSource) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::Bool bool_type;
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* b = create<BoolLiteral>(&bool_type, true);
|
2020-11-16 16:41:47 +00:00
|
|
|
ScalarConstructorExpression c(Source{Source::Location{20, 2}}, b);
|
2020-03-06 21:18:50 +00:00
|
|
|
auto src = c.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-06 21:18:50 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
TEST_F(ScalarConstructorExpressionTest, IsValid) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::Bool bool_type;
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* b = create<BoolLiteral>(&bool_type, true);
|
2020-11-16 16:41:47 +00:00
|
|
|
ScalarConstructorExpression c(b);
|
2020-03-06 21:18:50 +00:00
|
|
|
EXPECT_TRUE(c.IsValid());
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
TEST_F(ScalarConstructorExpressionTest, IsValid_MissingLiteral) {
|
|
|
|
ScalarConstructorExpression c;
|
2020-03-06 21:18:50 +00:00
|
|
|
EXPECT_FALSE(c.IsValid());
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
TEST_F(ScalarConstructorExpressionTest, ToStr) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::Bool bool_type;
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* b = create<BoolLiteral>(&bool_type, true);
|
2020-11-16 16:41:47 +00:00
|
|
|
ScalarConstructorExpression c(b);
|
2020-03-06 21:18:50 +00:00
|
|
|
std::ostringstream out;
|
|
|
|
c.to_str(out, 2);
|
2020-11-16 14:46:27 +00:00
|
|
|
EXPECT_EQ(out.str(), R"( ScalarConstructor[not set]{true}
|
2020-03-06 21:18:50 +00:00
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2020-03-06 21:18:50 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|