Add unit tests for UnaryMethodExpression.

This CL adds unit tests for the UnaryMethodExpression AST element.

Bug: tint:11
Change-Id: I5e99bb15f1333c1fa7ff34efafd86739c6a1d662
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/16740
Reviewed-by: Sarah Mashayekhi <sarahmashay@google.com>
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 8483f55..ac6c913 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -246,6 +246,7 @@
   ast/type_initializer_expression_test.cc
   ast/uint_literal_test.cc
   ast/unary_derivative_expression_test.cc
+  ast/unary_method_expression_test.cc
   ast/variable_test.cc
   reader/wgsl/lexer_test.cc
   reader/wgsl/parser_test.cc
diff --git a/src/ast/unary_method_expression.cc b/src/ast/unary_method_expression.cc
index 058c683..5898fee 100644
--- a/src/ast/unary_method_expression.cc
+++ b/src/ast/unary_method_expression.cc
@@ -17,6 +17,8 @@
 namespace tint {
 namespace ast {
 
+UnaryMethodExpression::UnaryMethodExpression() : Expression() {}
+
 UnaryMethodExpression::UnaryMethodExpression(
     UnaryMethod op,
     std::vector<std::unique_ptr<Expression>> params)
@@ -31,6 +33,14 @@
 UnaryMethodExpression::~UnaryMethodExpression() = default;
 
 bool UnaryMethodExpression::IsValid() const {
+  if (params_.empty()) {
+    return false;
+  }
+  for (const auto& p : params_) {
+    if (p == nullptr || !p->IsValid()) {
+      return false;
+    }
+  }
   return true;
 }
 
@@ -42,10 +52,9 @@
   out << op_ << std::endl;
   for (const auto& param : params_) {
     param->to_str(out, indent + 2);
-    out << std::endl;
   }
   make_indent(out, indent);
-  out << "}";
+  out << "}" << std::endl;
 }
 
 }  // namespace ast
diff --git a/src/ast/unary_method_expression.h b/src/ast/unary_method_expression.h
index 806d190..def96cf 100644
--- a/src/ast/unary_method_expression.h
+++ b/src/ast/unary_method_expression.h
@@ -30,6 +30,8 @@
 class UnaryMethodExpression : public Expression {
  public:
   /// Constructor
+  UnaryMethodExpression();
+  /// Constructor
   /// @param op the op
   /// @param params the params
   UnaryMethodExpression(UnaryMethod op,
diff --git a/src/ast/unary_method_expression_test.cc b/src/ast/unary_method_expression_test.cc
new file mode 100644
index 0000000..7f0b46d
--- /dev/null
+++ b/src/ast/unary_method_expression_test.cc
@@ -0,0 +1,100 @@
+// 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/unary_method_expression.h"
+
+#include <sstream>
+
+#include "gtest/gtest.h"
+#include "src/ast/identifier_expression.h"
+
+namespace tint {
+namespace ast {
+
+using UnaryMethodExpressionTest = testing::Test;
+
+TEST_F(UnaryMethodExpressionTest, Creation) {
+  std::vector<std::unique_ptr<Expression>> params;
+  params.push_back(std::make_unique<IdentifierExpression>("ident"));
+
+  auto ident_ptr = params[0].get();
+
+  UnaryMethodExpression u(UnaryMethod::kAll, std::move(params));
+  EXPECT_EQ(u.op(), UnaryMethod::kAll);
+  ASSERT_EQ(u.params().size(), 1);
+  EXPECT_EQ(u.params()[0].get(), ident_ptr);
+}
+
+TEST_F(UnaryMethodExpressionTest, Creation_WithSource) {
+  std::vector<std::unique_ptr<Expression>> params;
+  params.push_back(std::make_unique<IdentifierExpression>("ident"));
+
+  UnaryMethodExpression u(Source{20, 2}, UnaryMethod::kAll, std::move(params));
+  auto src = u.source();
+  EXPECT_EQ(src.line, 20);
+  EXPECT_EQ(src.column, 2);
+}
+
+TEST_F(UnaryMethodExpressionTest, IsUnaryMethod) {
+  UnaryMethodExpression u;
+  EXPECT_TRUE(u.IsUnaryMethod());
+}
+
+TEST_F(UnaryMethodExpressionTest, IsValid) {
+  std::vector<std::unique_ptr<Expression>> params;
+  params.push_back(std::make_unique<IdentifierExpression>("ident"));
+
+  UnaryMethodExpression u(UnaryMethod::kAll, std::move(params));
+  EXPECT_TRUE(u.IsValid());
+}
+
+TEST_F(UnaryMethodExpressionTest, IsValid_NullParam) {
+  std::vector<std::unique_ptr<Expression>> params;
+  params.push_back(std::make_unique<IdentifierExpression>("ident"));
+  params.push_back(nullptr);
+
+  UnaryMethodExpression u(UnaryMethod::kAll, std::move(params));
+  EXPECT_FALSE(u.IsValid());
+}
+
+TEST_F(UnaryMethodExpressionTest, IsValid_InvalidParam) {
+  std::vector<std::unique_ptr<Expression>> params;
+  params.push_back(std::make_unique<IdentifierExpression>(""));
+
+  UnaryMethodExpression u(UnaryMethod::kAll, std::move(params));
+  EXPECT_FALSE(u.IsValid());
+}
+
+TEST_F(UnaryMethodExpressionTest, IsValid_EmptyParams) {
+  UnaryMethodExpression u;
+  u.set_op(UnaryMethod::kAll);
+  EXPECT_FALSE(u.IsValid());
+}
+
+TEST_F(UnaryMethodExpressionTest, ToStr) {
+  std::vector<std::unique_ptr<Expression>> params;
+  params.push_back(std::make_unique<IdentifierExpression>("ident"));
+
+  UnaryMethodExpression u(UnaryMethod::kAll, std::move(params));
+  std::ostringstream out;
+  u.to_str(out, 2);
+  EXPECT_EQ(out.str(), R"(  UnaryMethod{
+    all
+    Identifier{ident}
+  }
+)");
+}
+
+}  // namespace ast
+}  // namespace tint