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.definitions.indent;
038:
039: /**
040: * Tests whether start of line is within a multiline comment.
041: *
042: * @version $Id: QuestionInsideCommentTest.java 4255 2007-08-28 19:17:37Z mgricken $
043: */
044: public final class QuestionInsideCommentTest extends
045: IndentRulesTestCase {
046:
047: static IndentRuleQuestion _rule = new QuestionInsideComment(null,
048: null);
049:
050: public void setUp() throws Exception {
051: super .setUp();
052: try {
053: _setDocText("\n/*\nfoo\n*/\nbar\nfoo /* bar\n// /*\nfoo */ bar\n// /*\nblah");
054: // . . . . . . . . . . .
055: // sample code: expected result:
056: // F
057: // /* F
058: // foo T
059: // */ T
060: // bar F
061: // foo /* bar F,F
062: // // /* T
063: // foo */ bar T,T
064: // // /*
065: // blah F
066: } catch (javax.swing.text.BadLocationException ex) {
067: throw new RuntimeException("Bad Location Exception");
068: }
069: }
070:
071: public void testDocStart()
072: throws javax.swing.text.BadLocationException {
073: assertEquals(false, _rule.applyRule(_doc, 0,
074: Indenter.IndentReason.OTHER));
075: }
076:
077: public void testLineBeginsComment()
078: throws javax.swing.text.BadLocationException {
079: assertEquals(false, _rule.applyRule(_doc, 3,
080: Indenter.IndentReason.OTHER));
081: }
082:
083: public void testFooLine()
084: throws javax.swing.text.BadLocationException {
085: assertEquals(true, _rule.applyRule(_doc, 6,
086: Indenter.IndentReason.OTHER));
087: }
088:
089: public void testLineEndsComment()
090: throws javax.swing.text.BadLocationException {
091: assertEquals(true, _rule.applyRule(_doc, 9,
092: Indenter.IndentReason.OTHER));
093: }
094:
095: public void testBarLine()
096: throws javax.swing.text.BadLocationException {
097: assertEquals(false, _rule.applyRule(_doc, 13,
098: Indenter.IndentReason.OTHER));
099: }
100:
101: public void testSlashStarMidLineBefore()
102: throws javax.swing.text.BadLocationException {
103: assertEquals(false, _rule.applyRule(_doc, 16,
104: Indenter.IndentReason.OTHER));
105: }
106:
107: public void testSlashStarMidLineAfter()
108: throws javax.swing.text.BadLocationException {
109: assertEquals(false, _rule.applyRule(_doc, 24,
110: Indenter.IndentReason.OTHER));
111: }
112:
113: public void testCommentedOutSlashStar()
114: throws javax.swing.text.BadLocationException {
115: assertEquals(true, _rule.applyRule(_doc, 30,
116: Indenter.IndentReason.OTHER));
117: }
118:
119: public void testStarSlashMidLineBefore()
120: throws javax.swing.text.BadLocationException {
121: assertEquals(true, _rule.applyRule(_doc, 33,
122: Indenter.IndentReason.OTHER));
123: }
124:
125: public void testStarSlashMidLineAfter()
126: throws javax.swing.text.BadLocationException {
127: assertEquals(true, _rule.applyRule(_doc, 41,
128: Indenter.IndentReason.OTHER));
129: }
130:
131: public void testAfterCommentedOutSlashStar()
132: throws javax.swing.text.BadLocationException {
133: assertEquals(false, _rule.applyRule(_doc, 49,
134: Indenter.IndentReason.OTHER));
135: }
136:
137: }
|