lookup/src/test/java/org/openide/util/lookup/KomrskaLookupTest.java
changeset 972 a2947558c966
parent 971 b3ae88304dd0
child 973 5653a70ebb56
     1.1 --- a/lookup/src/test/java/org/openide/util/lookup/KomrskaLookupTest.java	Wed Jan 27 17:46:23 2010 -0500
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,177 +0,0 @@
     1.4 -/*
     1.5 - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     1.6 - *
     1.7 - * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
     1.8 - *
     1.9 - * The contents of this file are subject to the terms of either the GNU
    1.10 - * General Public License Version 2 only ("GPL") or the Common
    1.11 - * Development and Distribution License("CDDL") (collectively, the
    1.12 - * "License"). You may not use this file except in compliance with the
    1.13 - * License. You can obtain a copy of the License at
    1.14 - * http://www.netbeans.org/cddl-gplv2.html
    1.15 - * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    1.16 - * specific language governing permissions and limitations under the
    1.17 - * License.  When distributing the software, include this License Header
    1.18 - * Notice in each file and include the License file at
    1.19 - * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    1.20 - * particular file as subject to the "Classpath" exception as provided
    1.21 - * by Sun in the GPL Version 2 section of the License file that
    1.22 - * accompanied this code. If applicable, add the following below the
    1.23 - * License Header, with the fields enclosed by brackets [] replaced by
    1.24 - * your own identifying information:
    1.25 - * "Portions Copyrighted [year] [name of copyright owner]"
    1.26 - *
    1.27 - * If you wish your version of this file to be governed by only the CDDL
    1.28 - * or only the GPL Version 2, indicate your decision by adding
    1.29 - * "[Contributor] elects to include this software in this distribution
    1.30 - * under the [CDDL or GPL Version 2] license." If you do not indicate a
    1.31 - * single choice of license, a recipient has the option to distribute
    1.32 - * your version of this file under either the CDDL, the GPL Version 2 or
    1.33 - * to extend the choice of license to its licensees as provided above.
    1.34 - * However, if you add GPL Version 2 code and therefore, elected the GPL
    1.35 - * Version 2 license, then the option applies only if the new code is
    1.36 - * made subject to such option by the copyright holder.
    1.37 - *
    1.38 - * Contributor(s):
    1.39 - *
    1.40 - * Portions Copyrighted 2008 Sun Microsystems, Inc.
    1.41 - */
    1.42 -package org.openide.util.lookup;
    1.43 -
    1.44 -import org.junit.After;
    1.45 -import org.junit.Before;
    1.46 -import org.junit.Test;
    1.47 -import org.openide.util.Lookup;
    1.48 -import org.openide.util.LookupEvent;
    1.49 -import org.openide.util.LookupListener;
    1.50 -import static org.junit.Assert.*;
    1.51 -
    1.52 -/**
    1.53 - * Test donated by Mr. Komrska. Seems to pass with 6.5.
    1.54 - * @author komrska
    1.55 - */
    1.56 -public final class KomrskaLookupTest {
    1.57 -    private TestLookupManager lookupManager=null;
    1.58 -    private StringBuffer result=null;
    1.59 -    
    1.60 -    //
    1.61 -    
    1.62 -    private void addToLookup(final TestLookupItemA object) {
    1.63 -        result.append('A');
    1.64 -        lookupManager.add(object);
    1.65 -    }
    1.66 -    private void removeFromLookup(final TestLookupItemA object) {
    1.67 -        result.append('A');
    1.68 -        lookupManager.remove(object);
    1.69 -    }
    1.70 -
    1.71 -    private void addToLookup(final TestLookupItemB object) {
    1.72 -        result.append('B');
    1.73 -        lookupManager.add(object);
    1.74 -    }
    1.75 -    private void removeFromLookup(final TestLookupItemB object) {
    1.76 -        result.append('B');
    1.77 -        lookupManager.remove(object);
    1.78 -    }
    1.79 -    
    1.80 -    public String getResult() {
    1.81 -        return result.toString();
    1.82 -    }
    1.83 -    
    1.84 -    //
    1.85 -
    1.86 -    @Before
    1.87 -    public void setUp() {
    1.88 -        lookupManager=new TestLookupManager();
    1.89 -        result=new StringBuffer();
    1.90 -    }
    1.91 -    
    1.92 -    @After
    1.93 -    public void tearDown() {
    1.94 -        lookupManager=null;
    1.95 -        result=null;
    1.96 -    }
    1.97 -    
    1.98 -    @Test
    1.99 -    public void testLookupBug() {
   1.100 -        TestLookupItemA itemA1=new TestLookupItemA();
   1.101 -        TestLookupItemB itemB1=new TestLookupItemB();
   1.102 -        //
   1.103 -        addToLookup(itemA1);
   1.104 -        addToLookup(itemB1);
   1.105 -        removeFromLookup(itemA1);
   1.106 -        removeFromLookup(itemB1);
   1.107 -        addToLookup(itemB1);
   1.108 -        removeFromLookup(itemB1);
   1.109 -        //
   1.110 -        addToLookup(itemA1);
   1.111 -        addToLookup(itemB1);
   1.112 -        removeFromLookup(itemA1);
   1.113 -        removeFromLookup(itemB1);
   1.114 -        addToLookup(itemB1);
   1.115 -        removeFromLookup(itemB1);
   1.116 -        //
   1.117 -        addToLookup(itemA1);
   1.118 -        addToLookup(itemB1);
   1.119 -        removeFromLookup(itemA1);
   1.120 -        removeFromLookup(itemB1);
   1.121 -        addToLookup(itemB1);
   1.122 -        removeFromLookup(itemB1);
   1.123 -        //
   1.124 -        assertEquals(getResult(),lookupManager.getResult());
   1.125 -    }
   1.126 -
   1.127 -    public static final class TestLookupItemA {}
   1.128 -    public static final class TestLookupItemB {}
   1.129 -    public static final class TestLookupManager {
   1.130 -        private InstanceContent instanceContent=new InstanceContent();
   1.131 -        private AbstractLookup abstractLookup=new AbstractLookup(instanceContent);
   1.132 -
   1.133 -        private Lookup.Result<TestLookupItemA> resultA=null;
   1.134 -        private Lookup.Result<TestLookupItemB> resultB=null;
   1.135 -
   1.136 -        private LookupListener listenerA=new LookupListener() {
   1.137 -            public void resultChanged(LookupEvent event) {
   1.138 -                result.append('A');
   1.139 -            }
   1.140 -        };
   1.141 -        private LookupListener listenerB=new LookupListener() {
   1.142 -            public void resultChanged(LookupEvent event) {
   1.143 -                result.append('B');
   1.144 -            }
   1.145 -        };
   1.146 -
   1.147 -        private StringBuffer result=new StringBuffer();
   1.148 -
   1.149 -        //
   1.150 -
   1.151 -        public TestLookupManager() {
   1.152 -            Lookup.Template<TestLookupItemA> templateA=
   1.153 -                new Lookup.Template<TestLookupItemA>(TestLookupItemA.class);
   1.154 -            resultA=abstractLookup.lookup(templateA);
   1.155 -            resultA.addLookupListener(listenerA);
   1.156 -            resultA.allInstances().size();
   1.157 -            //
   1.158 -            Lookup.Template<TestLookupItemB> templateB=
   1.159 -                new Lookup.Template<TestLookupItemB>(TestLookupItemB.class);
   1.160 -            resultB=abstractLookup.lookup(templateB);
   1.161 -            resultB.addLookupListener(listenerB);
   1.162 -            resultB.allInstances().size();
   1.163 -            // WORKAROUND
   1.164 -            // instanceContent.add(Boolean.TRUE);
   1.165 -        }
   1.166 -
   1.167 -        //
   1.168 -
   1.169 -        public void add(Object item) {
   1.170 -            instanceContent.add(item);
   1.171 -        }
   1.172 -        public void remove(Object item) {
   1.173 -            instanceContent.remove(item);
   1.174 -        }
   1.175 -        public String getResult() {
   1.176 -            return result.toString();
   1.177 -        }
   1.178 -    }
   1.179 -
   1.180 -}