file/test/unit/src/org/netbeans/modules/jackpot30/file/conditionapi/ContextTest.java
author Jan Lahoda <jlahoda@netbeans.org>
Thu, 21 Jul 2011 22:51:52 +0200
branchrelease701
changeset 648 cb630b7113bf
parent 513 file/test/unit/src/org/netbeans/modules/jackpot30/file/conditionapi/MatcherTest.java@4e4e3643aa73
permissions -rw-r--r--
bitbucket-20: adding conditions for enclosing class/package (transplanting from trunk).
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2009-2011 Sun Microsystems, Inc. All rights reserved.
     5  *
     6  * The contents of this file are subject to the terms of either the GNU
     7  * General Public License Version 2 only ("GPL") or the Common
     8  * Development and Distribution License("CDDL") (collectively, the
     9  * "License"). You may not use this file except in compliance with the
    10  * License. You can obtain a copy of the License at
    11  * http://www.netbeans.org/cddl-gplv2.html
    12  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    13  * specific language governing permissions and limitations under the
    14  * License.  When distributing the software, include this License Header
    15  * Notice in each file and include the License file at
    16  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    17  * particular file as subject to the "Classpath" exception as provided
    18  * by Sun in the GPL Version 2 section of the License file that
    19  * accompanied this code. If applicable, add the following below the
    20  * License Header, with the fields enclosed by brackets [] replaced by
    21  * your own identifying information:
    22  * "Portions Copyrighted [year] [name of copyright owner]"
    23  *
    24  * If you wish your version of this file to be governed by only the CDDL
    25  * or only the GPL Version 2, indicate your decision by adding
    26  * "[Contributor] elects to include this software in this distribution
    27  * under the [CDDL or GPL Version 2] license." If you do not indicate a
    28  * single choice of license, a recipient has the option to distribute
    29  * your version of this file under either the CDDL, the GPL Version 2 or
    30  * to extend the choice of license to its licensees as provided above.
    31  * However, if you add GPL Version 2 code and therefore, elected the GPL
    32  * Version 2 license, then the option applies only if the new code is
    33  * made subject to such option by the copyright holder.
    34  *
    35  * Contributor(s):
    36  *
    37  * Portions Copyrighted 2009-2011 Sun Microsystems, Inc.
    38  */
    39 
    40 package org.netbeans.modules.jackpot30.file.conditionapi;
    41 
    42 import com.sun.source.util.TreePath;
    43 import java.util.Arrays;
    44 import java.util.Collection;
    45 import java.util.Collections;
    46 import java.util.HashMap;
    47 import java.util.Map;
    48 import java.util.regex.Pattern;
    49 import org.netbeans.modules.jackpot30.impl.TestBase;
    50 import org.netbeans.modules.jackpot30.spi.HintContext;
    51 
    52 /**
    53  *
    54  * @author lahvac
    55  */
    56 public class ContextTest extends TestBase {
    57 
    58     public ContextTest(String name) {
    59         super(name);
    60     }
    61 
    62     public void testEnclosingClasses() throws Exception {
    63         String code = "package test; public class Test { public static class X { private int i|i; } }";
    64         int pos = code.indexOf("|");
    65         
    66         code = code.replaceAll(Pattern.quote("|"), "");
    67 
    68         prepareTest("test/Test.java", code);
    69 
    70         TreePath tp = info.getTreeUtilities().pathFor(pos);
    71         Map<String, TreePath> variables = new HashMap<String, TreePath>();
    72         variables.put("$1", tp);
    73         variables.put("$2", tp.getParentPath());
    74         variables.put("$3", tp.getParentPath().getParentPath());
    75         Map<String, Collection<? extends TreePath>> multiVariables = Collections.<String, Collection<? extends TreePath>>emptyMap();
    76         Map<String, String> variables2Names = Collections.emptyMap();
    77         Context ctx = new Context(HintContext.create(info, null, null, variables, multiVariables, variables2Names));
    78 
    79         assertEquals(Arrays.asList("test.Test.X", "test.Test"), ctx.enclosingClasses(new Variable("$1")));
    80         assertEquals(Arrays.asList("test.Test.X", "test.Test"), ctx.enclosingClasses(new Variable("$2")));
    81         assertEquals(Arrays.asList("test.Test"), ctx.enclosingClasses(new Variable("$3")));
    82     }
    83 
    84 }