| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015, The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include <string> |
| 18 | |
| 19 | #include <gtest/gtest.h> |
| 20 | |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 21 | #include "ast_java.h" |
| 22 | #include "code_writer.h" |
| Christopher Wiley | 775fa1f | 2015-09-22 15:00:12 -0700 | [diff] [blame] | 23 | #include "type_java.h" |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 24 | |
| Christopher Wiley | 12e894a | 2016-01-29 11:55:07 -0800 | [diff] [blame] | 25 | using std::string; |
| 26 | |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 27 | namespace android { |
| 28 | namespace aidl { |
| Christopher Wiley | db154a5 | 2015-09-28 16:32:25 -0700 | [diff] [blame] | 29 | namespace java { |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 30 | namespace { |
| 31 | |
| 32 | const char kExpectedClassOutput[] = |
| 33 | R"(// class comment |
| 34 | final class TestClass extends SuperClass |
| 35 | { |
| 36 | } |
| 37 | )"; |
| 38 | |
| 39 | } // namespace |
| 40 | |
| 41 | TEST(AstJavaTests, GeneratesClass) { |
| Christopher Wiley | 8b2d3ee | 2015-09-23 15:43:01 -0700 | [diff] [blame] | 42 | JavaTypeNamespace types; |
| Christopher Wiley | 5679952 | 2015-10-31 10:17:04 -0700 | [diff] [blame] | 43 | types.Init(); |
| Jiyong Park | 1d2df7d | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 44 | Type class_type(&types, "TestClass", ValidatableType::KIND_GENERATED, false); |
| 45 | Type extend_type(&types, "SuperClass", ValidatableType::KIND_BUILT_IN, false); |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 46 | Class a_class; |
| 47 | a_class.comment = "// class comment"; |
| 48 | a_class.modifiers = FINAL; |
| 49 | a_class.what = Class::CLASS; |
| 50 | a_class.type = &class_type; |
| 51 | a_class.extends = &extend_type; |
| 52 | |
| 53 | string actual_output; |
| Jiyong Park | b78e15b | 2018-07-04 20:31:03 +0900 | [diff] [blame] | 54 | a_class.Write(CodeWriter::ForString(&actual_output).get()); |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 55 | EXPECT_EQ(string(kExpectedClassOutput), actual_output); |
| 56 | } |
| 57 | |
| Jiyong Park | 176905e | 2018-07-04 22:29:41 +0900 | [diff] [blame] | 58 | TEST(AstJavaTests, ToString) { |
| 59 | std::string literal = "public void foo() {}"; |
| 60 | LiteralClassElement ce(literal); |
| 61 | std::string actual = ce.ToString(); |
| 62 | EXPECT_EQ(literal, actual); |
| 63 | |
| 64 | std::string written; |
| 65 | ce.Write(CodeWriter::ForString(&written).get()); |
| 66 | EXPECT_EQ(literal, written); |
| 67 | } |
| 68 | |
| Christopher Wiley | db154a5 | 2015-09-28 16:32:25 -0700 | [diff] [blame] | 69 | } // namespace java |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 70 | } // namespace aidl |
| 71 | } // namespace android |