blob: 4af4fe94ff1046b95e9732143902f2e8053efd6a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.text.tests;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.jface.text.Document;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.Region;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.internal.ui.text.java.JavaDoubleClickSelector;
/**
* @since 3.1
*/
public class JavaDoubleClickSelectorTest extends TestCase {
private static class PublicSelector extends JavaDoubleClickSelector {
public IRegion selectWord(IDocument document, int anchor) {
return super.selectWord(document, anchor);
}
}
public static Test suite() {
return new TestSuite(JavaDoubleClickSelectorTest.class);
}
private void assert14Selection(String content, int offset, int selOffset, int selLength) {
IDocument document= new Document(content);
PublicSelector selector= new PublicSelector();
selector.setSourceVersion(JavaCore.VERSION_1_4);
IRegion selection= selector.selectWord(document, offset);
assertEquals(new Region(selOffset, selLength), selection);
}
private void assert15Selection(String content, int offset, int selOffset, int selLength) {
IDocument document= new Document(content);
PublicSelector selector= new PublicSelector();
selector.setSourceVersion(JavaCore.VERSION_1_5);
IRegion selection= selector.selectWord(document, offset);
assertEquals(new Region(selOffset, selLength), selection);
}
public void testIdentifierBefore() throws Exception {
assert14Selection(" foobar ", 2, 2, 6);
}
public void testIdentifierInside() throws Exception {
assert14Selection(" foobar ", 3, 2, 6);
}
public void testIdentifierBehind() throws Exception {
assert14Selection(" foobar ", 8, 8, 0);
}
public void testWhitespaceBefore() throws Exception {
assert14Selection(" foobar ", 1, 1, 0);
}
public void testWhitespaceBehind() throws Exception {
assert14Selection(" foobar ", 9, 9, 0);
}
public void test14AnnotationBefore() throws Exception {
assert14Selection(" @ Deprecated ", 2, 2, 0);
}
public void test14AnnotationInside1() throws Exception {
assert14Selection(" @ Deprecated ", 3, 3, 0);
}
public void test14AnnotationInside2() throws Exception {
assert14Selection(" @ Deprecated ", 4, 4, 0);
}
public void test14AnnotationInside3() throws Exception {
assert14Selection(" @ Deprecated ", 5, 5, 10);
}
public void test14AnnotationInside4() throws Exception {
assert14Selection(" @ Deprecated ", 6, 5, 10);
}
public void test14AnnotationBehind() throws Exception {
assert14Selection(" @ Deprecated ", 15, 15, 0);
}
public void test15AnnotationBefore() throws Exception {
assert15Selection(" @ Deprecated ", 2, 2, 13);
}
public void test15AnnotationInside1() throws Exception {
assert15Selection(" @ Deprecated ", 3, 2, 13);
}
public void test15AnnotationInside2() throws Exception {
assert15Selection(" @ Deprecated ", 4, 2, 13);
}
public void test15AnnotationInside3() throws Exception {
assert15Selection(" @ Deprecated ", 5, 2, 13);
}
public void test15AnnotationInside4() throws Exception {
assert15Selection(" @ Deprecated ", 6, 2, 13);
}
public void test15AnnotationBehind() throws Exception {
assert15Selection(" @ Deprecated ", 15, 15, 0);
}
public void test15AnnotationNoSpaceBefore() throws Exception {
assert15Selection(" @Deprecated ", 2, 2, 11);
}
public void test15AnnotationNoSpaceInside1() throws Exception {
assert15Selection(" @Deprecated ", 3, 2, 11);
}
public void test15AnnotationNoSpaceInside2() throws Exception {
assert15Selection(" @Deprecated ", 4, 2, 11);
}
public void test15AnnotationNoSpaceBehind() throws Exception {
assert15Selection(" @Deprecated ", 13, 13, 0);
}
public void testAnnotationNoIdStartBefore() {
assert15Selection(" @2foobar ", 2, 2, 0);
}
public void testAnnotationNoIdStartInside1() {
assert15Selection(" @2foobar ", 3, 3, 7);
}
public void testAnnotationNoIdStartInside2() {
assert15Selection(" @2foobar ", 4, 3, 7);
}
public void testAnnotationNoIdStartBehind() {
assert15Selection(" @2foobar ", 10, 10, 0);
}
}