blob: 7ba1298b1699ee1b97486f4b6038a507ca877d2a [file] [log] [blame]
/*
* Copyright (C) 2007-2010 JĂșlio Vilmar Gesser.
* Copyright (C) 2011, 2013-2016 The JavaParser Team.
*
* This file is part of JavaParser.
*
* JavaParser can be used either under the terms of
* a) the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* b) the terms of the Apache License
*
* You should have received a copy of both licenses in LICENCE.LGPL and
* LICENCE.APACHE. Please refer to those files for details.
*
* JavaParser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
package com.github.javaparser.ast;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
import static com.github.javaparser.StaticJavaParser.parse;
import static com.github.javaparser.utils.CodeGenerationUtils.mavenModuleRoot;
import static org.junit.jupiter.api.Assertions.*;
class CompilationUnitTest {
@Test
void issue578TheFirstCommentIsWithinTheCompilationUnit() {
CompilationUnit compilationUnit = parse("// This is my class, with my comment\n" +
"class A {\n" +
" static int a;\n" +
"}");
assertEquals(1, compilationUnit.getAllContainedComments().size());
}
@Test
void testGetSourceRoot() throws IOException {
Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "Z.java"));
CompilationUnit cu = parse(testFile);
Path sourceRoot1 = cu.getStorage().get().getSourceRoot();
assertEquals(sourceRoot, sourceRoot1);
}
@Test
void testGetSourceRootWithBadPackageDeclaration() {
assertThrows(RuntimeException.class, () -> {
Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "A.java"));
CompilationUnit cu = parse(testFile);
cu.getStorage().get().getSourceRoot();
});
}
@Test
void testGetSourceRootInDefaultPackage() throws IOException {
Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources", "com", "github", "javaparser", "storage")).normalize();
Path testFile = sourceRoot.resolve(Paths.get("B.java"));
CompilationUnit cu = parse(testFile);
Path sourceRoot1 = cu.getStorage().get().getSourceRoot();
assertEquals(sourceRoot, sourceRoot1);
}
@Test
void testGetPrimaryTypeName() throws IOException {
Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "PrimaryType.java"));
CompilationUnit cu = parse(testFile);
assertEquals("PrimaryType", cu.getPrimaryTypeName().get());
}
@Test
void testNoPrimaryTypeName() {
CompilationUnit cu = parse("class PrimaryType{}");
assertFalse(cu.getPrimaryTypeName().isPresent());
}
@Test
void testGetPrimaryType() throws IOException {
Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "PrimaryType.java"));
CompilationUnit cu = parse(testFile);
assertEquals("PrimaryType", cu.getPrimaryType().get().getNameAsString());
}
@Test
void testNoPrimaryType() throws IOException {
Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "PrimaryType2.java"));
CompilationUnit cu = parse(testFile);
assertFalse(cu.getPrimaryType().isPresent());
}
}