AnalysisTest.java revision 3062:15bdc18525ff
1/*
2 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24/*
25 * @test
26 * @summary Test SourceCodeAnalysis
27 * @build KullaTesting TestingInputStream
28 * @run testng AnalysisTest
29 */
30
31import org.testng.annotations.Test;
32
33@Test
34public class AnalysisTest extends KullaTesting {
35
36    public void testSource() {
37        assertAnalyze("int x=3//test", "int x=3;//test", "", true);
38        assertAnalyze("int x=3 ;//test", "int x=3 ;//test", "", true);
39        assertAnalyze("int x=3 //;", "int x=3; //;", "", true);
40        assertAnalyze("void m5() {} /// hgjghj", "void m5() {} /// hgjghj", "", true);
41        assertAnalyze("int ff; int v // hi", "int ff;", " int v // hi", true);
42    }
43
44    public void testSourceSlashStar() {
45        assertAnalyze("/*zoo*/int x=3 /*test*/", "/*zoo*/int x=3; /*test*/", "", true);
46        assertAnalyze("/*zoo*/int x=3 ;/*test*/", "/*zoo*/int x=3 ;/*test*/", "", true);
47        assertAnalyze("int x=3 /*;*/", "int x=3; /*;*/", "", true);
48        assertAnalyze("void m5() {} /*hgjghj*/", "void m5() {} /*hgjghj*/", "", true);
49        assertAnalyze("int ff; int v /*hgjghj*/", "int ff;", " int v /*hgjghj*/", true);
50    }
51
52    public void testIncomplete() {
53        assertAnalyze("void m() { //erer", null, "void m() { //erer\n", false);
54        assertAnalyze("int m=//", null, "int m=//\n", false);
55    }
56
57    public void testExpression() {
58        assertAnalyze("45//test", "45//test", "", true);
59        assertAnalyze("45;//test", "45;//test", "", true);
60        assertAnalyze("45//;", "45//;", "", true);
61        assertAnalyze("/*zoo*/45/*test*/", "/*zoo*/45/*test*/", "", true);
62        assertAnalyze("/*zoo*/45;/*test*/", "/*zoo*/45;/*test*/", "", true);
63        assertAnalyze("45/*;*/", "45/*;*/", "", true);
64    }
65}
66