2020-03-16 13:58:53 +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.
|
|
|
|
|
|
|
|
#include "src/ast/loop_statement.h"
|
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
#include <memory>
|
2020-03-16 13:58:53 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
2020-07-25 14:33:50 +00:00
|
|
|
#include "src/ast/discard_statement.h"
|
2020-03-16 13:58:53 +00:00
|
|
|
#include "src/ast/if_statement.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
using LoopStatementTest = testing::Test;
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, Creation) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
|
|
|
auto* b_ptr = body->last();
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
auto continuing = std::make_unique<BlockStatement>();
|
|
|
|
continuing->append(std::make_unique<DiscardStatement>());
|
|
|
|
auto* c_ptr = continuing->last();
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), std::move(continuing));
|
2020-07-27 15:25:00 +00:00
|
|
|
ASSERT_EQ(l.body()->size(), 1u);
|
|
|
|
EXPECT_EQ(l.body()->get(0), b_ptr);
|
|
|
|
ASSERT_EQ(l.continuing()->size(), 1u);
|
|
|
|
EXPECT_EQ(l.continuing()->get(0), c_ptr);
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, Creation_WithSource) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
auto continuing = std::make_unique<BlockStatement>();
|
|
|
|
continuing->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-11-02 15:07:47 +00:00
|
|
|
LoopStatement l(Source{Source::Location{20, 2}}, std::move(body),
|
|
|
|
std::move(continuing));
|
2020-03-16 13:58:53 +00:00
|
|
|
auto src = l.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-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsLoop) {
|
|
|
|
LoopStatement l;
|
|
|
|
EXPECT_TRUE(l.IsLoop());
|
|
|
|
}
|
|
|
|
|
2020-03-20 19:07:00 +00:00
|
|
|
TEST_F(LoopStatementTest, HasContinuing_WithoutContinuing) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
2020-03-20 19:07:00 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), {});
|
|
|
|
EXPECT_FALSE(l.has_continuing());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, HasContinuing_WithContinuing) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
2020-03-20 19:07:00 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
auto continuing = std::make_unique<BlockStatement>();
|
|
|
|
continuing->append(std::make_unique<DiscardStatement>());
|
2020-03-20 19:07:00 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), std::move(continuing));
|
|
|
|
EXPECT_TRUE(l.has_continuing());
|
|
|
|
}
|
|
|
|
|
2020-03-16 13:58:53 +00:00
|
|
|
TEST_F(LoopStatementTest, IsValid) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
auto continuing = std::make_unique<BlockStatement>();
|
|
|
|
continuing->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), std::move(continuing));
|
|
|
|
EXPECT_TRUE(l.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_WithoutContinuing) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
LoopStatement l(std::move(body), std::make_unique<BlockStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
EXPECT_TRUE(l.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_WithoutBody) {
|
2020-07-27 15:25:00 +00:00
|
|
|
LoopStatement l(std::make_unique<BlockStatement>(),
|
|
|
|
std::make_unique<BlockStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
EXPECT_TRUE(l.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_NullBodyStatement) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
|
|
|
body->append(nullptr);
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
auto continuing = std::make_unique<BlockStatement>();
|
|
|
|
continuing->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), std::move(continuing));
|
|
|
|
EXPECT_FALSE(l.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_InvalidBodyStatement) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
|
|
|
body->append(std::make_unique<IfStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
auto continuing = std::make_unique<BlockStatement>();
|
|
|
|
continuing->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), std::move(continuing));
|
|
|
|
EXPECT_FALSE(l.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_NullContinuingStatement) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
auto continuing = std::make_unique<BlockStatement>();
|
|
|
|
continuing->append(std::make_unique<DiscardStatement>());
|
|
|
|
continuing->append(nullptr);
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), std::move(continuing));
|
|
|
|
EXPECT_FALSE(l.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_InvalidContinuingStatement) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
auto continuing = std::make_unique<BlockStatement>();
|
|
|
|
continuing->append(std::make_unique<DiscardStatement>());
|
|
|
|
continuing->append(std::make_unique<IfStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), std::move(continuing));
|
|
|
|
EXPECT_FALSE(l.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, ToStr) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), {});
|
|
|
|
std::ostringstream out;
|
|
|
|
l.to_str(out, 2);
|
|
|
|
EXPECT_EQ(out.str(), R"( Loop{
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, ToStr_WithContinuing) {
|
2020-07-27 15:25:00 +00:00
|
|
|
auto body = std::make_unique<BlockStatement>();
|
|
|
|
body->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
auto continuing = std::make_unique<BlockStatement>();
|
|
|
|
continuing->append(std::make_unique<DiscardStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
LoopStatement l(std::move(body), std::move(continuing));
|
|
|
|
std::ostringstream out;
|
|
|
|
l.to_str(out, 2);
|
|
|
|
EXPECT_EQ(out.str(), R"( Loop{
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
2020-03-16 13:58:53 +00:00
|
|
|
continuing {
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2020-03-16 13:58:53 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|