001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.modules.java.source.parsing;
043:
044: import com.sun.source.tree.CompilationUnitTree;
045: import java.io.File;
046: import java.net.URL;
047: import junit.framework.*;
048: import org.netbeans.api.java.classpath.ClassPath;
049: import org.netbeans.modules.java.source.StopWatch;
050: import org.netbeans.modules.java.source.TestUtil;
051: import org.netbeans.spi.java.classpath.support.ClassPathSupport;
052: import org.openide.filesystems.FileUtil;
053:
054: /** Tests for basic JDK operations
055: *
056: * @author Petr Hrebejk
057: */
058: public class PerfResolveTest extends TestCase {
059:
060: private File workDir;
061: private File rtJar;
062: private ClassPath bootPath;
063: private ClassPath classPath;
064: private final String SOURCE = "package some;"
065: + "import javax.swing.JTable;"
066: + "import javax.swing.JLabel;"
067: + "public class MemoryFile<K,V> extends JTable {"
068: + " public java.util.Map.Entry<K,V> entry;"
069: + " public JLabel label;"
070: + " public JTable table = new JTable();"
071: + " public MemoryFile() {}" + "}";
072:
073: public PerfResolveTest(String testName) {
074: super (testName);
075: }
076:
077: protected void setUp() throws Exception {
078: workDir = TestUtil.createWorkFolder();
079: TestUtil.copyFiles(workDir, TestUtil.RT_JAR, "jdk/JTable.java");
080: rtJar = new File(workDir, TestUtil.RT_JAR);
081: URL url = FileUtil.getArchiveRoot(rtJar.toURI().toURL());
082: this .bootPath = ClassPathSupport
083: .createClassPath(new URL[] { url });
084: this .classPath = ClassPathSupport.createClassPath(new URL[0]);
085: }
086:
087: protected void tearDown() throws Exception {
088: TestUtil.removeWorkFolder(workDir);
089: }
090:
091: /*
092: public void testExtendsJTable() throws Exception {
093: resolve( "MemoryFile.java", SOURCE );
094: }
095: */
096:
097: /*
098: public void testJTable() throws Exception {
099: String source = TestUtil.fileToString( new File( workDir, "jdk/JTable.java" ) );
100: resolve( "JTable.java", source );
101: }
102: */
103:
104: public void resolve(String fileName, String source)
105: throws Exception {
106: // JavacInterface ji;
107: //
108: // StopWatch swatch = new StopWatch();
109: //
110: //
111: // for( int i = 0; i < 10; i++ ) {
112: //
113: // System.out.println("---------- (" + i + ")" );
114: //
115: // swatch.start();
116: // ji = JavacInterface.create( bootPath, classPath, null);
117: // swatch.stop( "JI create done" );
118: //
119: // swatch.start();
120: // CompilationUnitTree cu = ji.parse( FileObjects.memoryFileObject( SOURCE, "MemoryFile.java"), null );
121: // swatch.stop( "Parsing done" );
122: //
123: // swatch.start();
124: // ji.resolveElements( cu );
125: // swatch.stop( "Resolution done " );
126: // }
127:
128: }
129:
130: }
|