TryStmtTest.java
/*
* Copyright (C) 2007-2010 J��lio Vilmar Gesser.
* Copyright (C) 2011, 2013-2024 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.stmt;
import static com.github.javaparser.ParserConfiguration.LanguageLevel.*;
import static com.github.javaparser.Providers.provider;
import static com.github.javaparser.utils.TestUtils.assertInstanceOf;
import static org.junit.jupiter.api.Assertions.assertTrue;
import com.github.javaparser.JavaParser;
import com.github.javaparser.ParseResult;
import com.github.javaparser.ParseStart;
import com.github.javaparser.ParserConfiguration;
import com.github.javaparser.ast.expr.FieldAccessExpr;
import com.github.javaparser.ast.expr.NameExpr;
import com.github.javaparser.ast.expr.VariableDeclarationExpr;
import org.junit.jupiter.api.Test;
class TryStmtTest {
@Test
void simpleTest() {
TryStmt tryStmt = parse9("try(Reader x = new FileReader()){}");
assertInstanceOf(VariableDeclarationExpr.class, tryStmt.getResources().get(0));
}
@Test
void multipleTest() {
TryStmt tryStmt = parse9("try(Reader x = new FileReader(); Reader x = new FileReader()){}");
assertInstanceOf(VariableDeclarationExpr.class, tryStmt.getResources().get(0));
}
@Test
void modifiersTest() {
TryStmt tryStmt = parse9("try(final @A Reader x = new FileReader()){}");
assertInstanceOf(VariableDeclarationExpr.class, tryStmt.getResources().get(0));
}
@Test
void simpleVariable() {
TryStmt tryStmt = parse9("try(a){}");
assertInstanceOf(NameExpr.class, tryStmt.getResources().get(0));
}
@Test
void twoSimpleVariables() {
TryStmt tryStmt = parse9("try(a;b){}");
assertInstanceOf(NameExpr.class, tryStmt.getResources().get(0));
assertInstanceOf(NameExpr.class, tryStmt.getResources().get(1));
}
@Test
void complexVariable() {
TryStmt tryStmt = parse9("try(a.b.c){}");
assertInstanceOf(FieldAccessExpr.class, tryStmt.getResources().get(0));
}
@Test
void superAccess() {
TryStmt tryStmt = parse9("try(super.a){}");
assertInstanceOf(FieldAccessExpr.class, tryStmt.getResources().get(0));
}
@Test
void outerClassAccess() {
TryStmt tryStmt = parse9("try(X.this.a){}");
assertInstanceOf(FieldAccessExpr.class, tryStmt.getResources().get(0));
}
@Test
void varTestJava10() {
TryStmt tryStmt = parse10("try(var x = new FileReader()){}");
assertInstanceOf(VariableDeclarationExpr.class, tryStmt.getResources().get(0));
}
@Test
void varTestJava11() {
TryStmt tryStmt = parse11("try(var x = new FileReader()){}");
assertInstanceOf(VariableDeclarationExpr.class, tryStmt.getResources().get(0));
}
private <T> T parse9(String code) {
JavaParser parser = new JavaParser(new ParserConfiguration().setLanguageLevel(JAVA_9));
ParseResult<Statement> result = parser.parse(ParseStart.STATEMENT, provider(code));
assertTrue(result.isSuccessful(), result.toString());
return (T) result.getResult().get();
}
private <T> T parse10(String code) {
JavaParser parser = new JavaParser(new ParserConfiguration().setLanguageLevel(JAVA_10));
ParseResult<Statement> result = parser.parse(ParseStart.STATEMENT, provider(code));
assertTrue(result.isSuccessful(), result.toString());
return (T) result.getResult().get();
}
private <T> T parse11(String code) {
JavaParser parser = new JavaParser(new ParserConfiguration().setLanguageLevel(JAVA_11));
ParseResult<Statement> result = parser.parse(ParseStart.STATEMENT, provider(code));
assertTrue(result.isSuccessful(), result.toString());
return (T) result.getResult().get();
}
}