alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2002 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.openide.loaders;

import java.io.IOException;
import java.util.*;
import java.lang.ref.WeakReference;
import javax.swing.SwingUtilities;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

import org.openide.filesystems.*;
import org.openide.loaders.*;
import org.openide.cookies.*;
import org.openide.util.*;

import org.netbeans.junit.*;
import java.util.Enumeration;
import org.openide.nodes.Node;
import org.openide.nodes.Children;


public class FolderChildrenTest extends NbTestCase {
    public FolderChildrenTest() {
        super("");
    }
    
    public FolderChildrenTest(java.lang.String testName) {
        super(testName);
    }
    
    public static void main(java.lang.String[] args) {
        junit.textui.TestRunner.run(new NbTestSuite(FolderChildrenTest.class));
    }
    
    private static void setSystemProp(String key, String value) {
        java.util.Properties prop = System.getProperties();
        if (prop.get(key) != null) return;
        prop.put(key, value);
    }
    
    private void setupSystemProperties() throws IOException {
//        clearWorkDir();
        setSystemProp("netbeans.security.nocheck","true");
    }
    
    public void testAdditionOfNewFileDoesNotInfluenceAlreadyExistingLoaders () 
    throws Exception {
        setupSystemProperties();
        
        FileSystem fs = Repository.getDefault ().getDefaultFileSystem();
        FileUtil.createData (fs.getRoot (), "AA/org-openide-loaders-FolderChildrenTest$N1.instance");
        FileUtil.createData (fs.getRoot (), "AA/org-openide-loaders-FolderChildrenTest$N2.instance");
        
        FileObject bb = fs.findResource("/AA");
        
        DataFolder folder = DataFolder.findFolder (bb);
        Node node = folder.getNodeDelegate();
        
        Node[] arr = node.getChildren ().getNodes (true);
        assertEquals ("There is a nodes for both", 2, arr.length);
        assertNotNull ("First one is our node", arr[0].getCookie (N1.class));
        
        FileObject n = bb.createData ("A.txt");
        Node[] newarr = node.getChildren ().getNodes (true);
        assertEquals ("There is new node", 3, newarr.length);
        
        n.delete ();
        
        Node[] last = node.getChildren ().getNodes (true);
        assertEquals ("Again they are two", 2, arr.length);
        
        assertTrue ("First one is the same", last[0] == arr[0]);
        assertTrue ("Second one is the same", last[1] == arr[1]);
        
    }
    
    public void testChangeableDataFilter() throws Exception {
        setupSystemProperties();
        
        FileSystem fs = Repository.getDefault ().getDefaultFileSystem();
        FileUtil.createData (fs.getRoot (), "BB/A.txt");
        FileUtil.createData (fs.getRoot (), "BB/B.txt");
        FileUtil.createData (fs.getRoot (), "BB/AA.txt");
        FileUtil.createData (fs.getRoot (), "BB/BA.txt");
        
        
        FileObject bb = fs.findResource("/BB");
        
        Filter filter = new Filter();
        DataFolder folder = DataFolder.findFolder (bb);
        
        Children ch = folder.createNodeChildren( filter );        
        Node[] arr = ch.getNodes (true);
        
        assertNodes( arr, new String[] { "A.txt", "AA.txt" } );
        filter.fire();
        arr = ch.getNodes (true);        
        assertNodes( arr, new String[] { "B.txt", "BA.txt" } );
        
    }
    
    public void testChildrenCanGC () {
        Filter filter = new Filter ();
        
        FileSystem fs = Repository.getDefault ().getDefaultFileSystem();
        FileObject bb = fs.findResource("/BB");
        DataFolder folder = DataFolder.findFolder (bb);
           
        Children ch = folder.createNodeChildren( filter );        
        Node[] arr = ch.getNodes (true);
        
        WeakReference ref = new WeakReference (ch);
        ch = null;
        arr = null;
        
        assertGC ("Children can disappear even we hold the filter", ref);
    }

    
    public static class N1 extends org.openide.nodes.AbstractNode 
    implements Node.Cookie {
        public N1 () {
            this (true);
        }
        
        private N1 (boolean doGc) {
            super (org.openide.nodes.Children.LEAF);
            
            if (doGc) {
                for (int i = 0; i < 5; i++) {
                    System.gc ();
                }
            }
        }
        
        public Node cloneNode () {
            return new N1 (false);
        }
        
        public Node.Cookie getCookie (Class c) {
            if (c == getClass ()) {
                return this;
            }
            return null;
        }
    }
    
    public static final class N2 extends N1 {
    }

    
    private void assertNodes( Node[] nodes, String names[] ) {
        
        assertEquals( "Wrong number of nodes.", names.length, nodes.length );
        
        for( int i = 0; i < nodes.length; i++ ) {            
            assertEquals( "Wrong name at index " + i + ".", names[i], nodes[i].getName() );
        }
        
    }
    
    private static class Filter implements ChangeableDataFilter  {

        private boolean selectA = true;
                    
        ArrayList listeners = new ArrayList();
        
        public boolean acceptDataObject (DataObject obj) {
            String fileName = obj.getPrimaryFile().getName();
            boolean select = fileName.startsWith( "A" );            
            select = selectA ? select : !select;
            return select;
        }
        
        public void addChangeListener( ChangeListener listener ) {
            listeners.add( listener );
        }
        
        public void removeChangeListener( ChangeListener listener ) {
            listeners.remove( listener );
        }
        
        public void fire( ) {
        
            selectA = !selectA;
            
            ChangeEvent che = new ChangeEvent( this );
            
            for( Iterator it = listeners.iterator(); it.hasNext(); ) {
                ChangeListener chl = (ChangeListener)it.next();
                chl.stateChanged( che );
            }
        }
        
    }
    
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.