001: /*BEGIN_COPYRIGHT_BLOCK
002: *
003: * Copyright (c) 2001-2007, JavaPLT group at Rice University (javaplt@rice.edu)
004: * All rights reserved.
005: *
006: * Redistribution and use in source and binary forms, with or without
007: * modification, are permitted provided that the following conditions are met:
008: * * Redistributions of source code must retain the above copyright
009: * notice, this list of conditions and the following disclaimer.
010: * * Redistributions in binary form must reproduce the above copyright
011: * notice, this list of conditions and the following disclaimer in the
012: * documentation and/or other materials provided with the distribution.
013: * * Neither the names of DrJava, the JavaPLT group, Rice University, nor the
014: * names of its contributors may be used to endorse or promote products
015: * derived from this software without specific prior written permission.
016: *
017: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
018: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
019: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
020: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
021: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
022: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
023: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
024: * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
025: * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
026: * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
027: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
028: *
029: * This software is Open Source Initiative approved Open Source Software.
030: * Open Source Initative Approved is a trademark of the Open Source Initiative.
031: *
032: * This file is part of DrJava. Download the current version of this project
033: * from http://www.drjava.org/ or http://sourceforge.net/projects/drjava/
034: *
035: * END_COPYRIGHT_BLOCK*/
036:
037: package edu.rice.cs.drjava.model;
038:
039: import edu.rice.cs.drjava.model.definitions.InvalidPackageException;
040:
041: import java.io.*;
042:
043: import javax.swing.text.BadLocationException;
044:
045: /**
046: * Tests to ensure that compilation succeeds when expected.
047: *
048: * Every test in this class is run for *each* of the compilers that is available.
049: *
050: * @version $Id: GlobalModelCompileSuccessTest.java 4255 2007-08-28 19:17:37Z mgricken $
051: */
052: public final class GlobalModelCompileSuccessTest extends
053: GlobalModelCompileSuccessTestCase {
054:
055: /**
056: * Tests calling compileAll with different source roots works.
057: */
058: public void testCompileAllDifferentSourceRoots()
059: throws BadLocationException, IOException,
060: InterruptedException {
061: // System.out.println("testCompileAllDifferentSourceRoots()");
062: File aDir = new File(_tempDir, "a");
063: File bDir = new File(_tempDir, "b");
064: aDir.mkdir();
065: bDir.mkdir();
066: OpenDefinitionsDocument doc = setupDocument(FOO_TEXT);
067: final File file = new File(aDir, "DrJavaTestFoo.java");
068: doc.saveFile(new FileSelector(file));
069: OpenDefinitionsDocument doc2 = setupDocument(BAR_TEXT);
070: final File file2 = new File(bDir, "DrJavaTestBar.java");
071: doc2.saveFile(new FileSelector(file2));
072:
073: CompileShouldSucceedListener listener = new CompileShouldSucceedListener(
074: false);
075: _model.addListener(listener);
076: _model.getCompilerModel().compileAll();
077: if (_model.getCompilerModel().getNumErrors() > 0) {
078: fail("compile failed: " + getCompilerErrorString());
079: }
080: assertCompileErrorsPresent(_name(), false);
081: listener.checkCompileOccurred();
082:
083: // Make sure .class exists for both files
084: File compiled = classForJava(file, "DrJavaTestFoo");
085: assertTrue(_name()
086: + "Foo Class file doesn't exist after compile",
087: compiled.exists());
088: File compiled2 = classForJava(file2, "DrJavaTestBar");
089: assertTrue(_name()
090: + "Bar Class file doesn't exist after compile",
091: compiled2.exists());
092: _model.removeListener(listener);
093: }
094:
095: /**
096: * Test that one compiled file can depend on the other and that when a keyword
097: * is part of a field name, the file will compile.
098: * We compile DrJavaTestFoo and then DrJavaTestFoo2 (which extends
099: * DrJavaTestFoo). This shows that the compiler successfully found
100: * DrJavaTestFoo2 when compiling DrJavaTestFoo.
101: * Doesn't reset interactions because no interpretations are performed.
102: */
103: public void testCompileClassPathOKDefaultPackage()
104: throws BadLocationException, IOException,
105: InterruptedException {
106: // System.out.println("testCompileClasspathOKDefaultPackage()");
107: // Create/compile foo, assuming it works
108: OpenDefinitionsDocument doc1 = setupDocument(FOO_PACKAGE_AS_PART_OF_FIELD);
109: final File fooFile = new File(_tempDir, "DrJavaTestFoo.java");
110:
111: doc1.saveFile(new FileSelector(fooFile));
112: CompileShouldSucceedListener listener = new CompileShouldSucceedListener(
113: false);
114: _model.addListener(listener);
115: doc1.startCompile();
116: if (_model.getCompilerModel().getNumErrors() > 0) {
117: fail("compile failed: " + getCompilerErrorString());
118: }
119: listener.checkCompileOccurred();
120: _model.removeListener(listener);
121:
122: OpenDefinitionsDocument doc2 = setupDocument(FOO2_EXTENDS_FOO_TEXT);
123: final File foo2File = new File(_tempDir, "DrJavaTestFoo2.java");
124: doc2.saveFile(new FileSelector(foo2File));
125:
126: CompileShouldSucceedListener listener2 = new CompileShouldSucceedListener(
127: false);
128: _model.addListener(listener2);
129: doc2.startCompile();
130: if (_model.getCompilerModel().getNumErrors() > 0) {
131: fail("compile failed: " + getCompilerErrorString());
132: }
133: assertCompileErrorsPresent(_name(), false);
134: listener2.checkCompileOccurred();
135:
136: // Make sure .class exists
137: File compiled = classForJava(foo2File, "DrJavaTestFoo2");
138: assertTrue(_name() + "Class file doesn't exist after compile",
139: compiled.exists());
140: _model.removeListener(listener2);
141: }
142:
143: /**
144: * Test that one compiled file can depend on the other.
145: * We compile a.DrJavaTestFoo and then b.DrJavaTestFoo2 (which extends
146: * DrJavaTestFoo). This shows that the compiler successfully found
147: * DrJavaTestFoo2 when compiling DrJavaTestFoo.
148: * Doesn't reset interactions because no interpretations are performed.
149: */
150: public void testCompileClassPathOKDifferentPackages()
151: throws BadLocationException, IOException,
152: InterruptedException, InvalidPackageException {
153: // System.out.println("testCompileClasspathOKDifferentPackages()");
154: File aDir = new File(_tempDir, "a");
155: File bDir = new File(_tempDir, "b");
156: aDir.mkdir();
157: bDir.mkdir();
158:
159: // Create/compile foo, assuming it works
160: // foo must be public and in DrJavaTestFoo.java!
161: OpenDefinitionsDocument doc1 = setupDocument("package a;\n"
162: + "public " + FOO_TEXT);
163: final File fooFile = new File(aDir, "DrJavaTestFoo.java");
164: // System.err.println("fooFile = " + fooFile.getCanonicalPath());
165: doc1.saveFile(new FileSelector(fooFile));
166: // _packageName must be updated on save
167: assertEquals(
168: "Check package name of doc1",
169: "a",
170: ((AbstractGlobalModel.ConcreteOpenDefDoc) doc1)._packageName);
171: // System.err.println("doc1 = " + doc1);
172: // System.err.println("doc1 has source root " + doc1.getSourceRoot());
173: CompileShouldSucceedListener listener = new CompileShouldSucceedListener(
174: false);
175: _model.addListener(listener);
176:
177: doc1.startCompile();
178: if (_model.getCompilerModel().getNumErrors() > 0) {
179: fail("compile failed: " + getCompilerErrorString());
180: }
181: listener.checkCompileOccurred();
182: _model.removeListener(listener);
183:
184: OpenDefinitionsDocument doc2 = setupDocument("package b;\nimport a.DrJavaTestFoo;\n"
185: + FOO2_EXTENDS_FOO_TEXT);
186: final File foo2File = new File(bDir, "DrJavaTestFoo2.java");
187: // System.err.println("foo2File = " + foo2File.getCanonicalPath());
188: doc2.saveFile(new FileSelector(foo2File));
189: // _packageName must be updated on save
190: assertEquals(
191: "Check packangeName of doc2",
192: "b",
193: ((AbstractGlobalModel.ConcreteOpenDefDoc) doc2)._packageName);
194: // System.err.println("doc2 = " + doc2);
195:
196: CompileShouldSucceedListener listener2 = new CompileShouldSucceedListener(
197: false);
198: _model.addListener(listener2);
199:
200: doc2.startCompile();
201: if (_model.getCompilerModel().getNumErrors() > 0) {
202: fail("compile failed: " + getCompilerErrorString());
203: }
204: assertCompileErrorsPresent(_name(), false);
205: listener2.checkCompileOccurred();
206: _model.removeListener(listener2);
207:
208: // Make sure .class exists
209: File compiled = classForJava(foo2File, "DrJavaTestFoo2");
210: assertTrue(_name() + "Class file doesn't exist after compile",
211: compiled.exists());
212: }
213: }
|