| 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 | |
| 25 | namespace android { |
| 26 | namespace aidl { |
| 27 | namespace { |
| 28 | |
| 29 | const char kExpectedClassOutput[] = |
| 30 | R"(// class comment |
| 31 | final class TestClass extends SuperClass |
| 32 | { |
| 33 | } |
| 34 | )"; |
| 35 | |
| 36 | } // namespace |
| 37 | |
| 38 | TEST(AstJavaTests, GeneratesClass) { |
| Christopher Wiley | 8b2d3ee | 2015-09-23 15:43:01 -0700 | [diff] [blame^] | 39 | JavaTypeNamespace types; |
| 40 | Type class_type(&types, "TestClass", Type::GENERATED, false, false); |
| 41 | Type extend_type(&types, "SuperClass", Type::BUILT_IN, false, false); |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 42 | Class a_class; |
| 43 | a_class.comment = "// class comment"; |
| 44 | a_class.modifiers = FINAL; |
| 45 | a_class.what = Class::CLASS; |
| 46 | a_class.type = &class_type; |
| 47 | a_class.extends = &extend_type; |
| 48 | |
| 49 | string actual_output; |
| Christopher Wiley | 413e042 | 2015-09-18 10:54:51 -0700 | [diff] [blame] | 50 | CodeWriterPtr writer = GetStringWriter(&actual_output); |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 51 | a_class.Write(writer.get()); |
| 52 | EXPECT_EQ(string(kExpectedClassOutput), actual_output); |
| 53 | } |
| 54 | |
| 55 | } // namespace aidl |
| 56 | } // namespace android |