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-2000 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.masterfs;

import junit.framework.*;

import java.io.*;
import java.util.*;


import org.openide.filesystems.*;
//import org.openide.execution.*;
import org.openide.*;
import org.openide.util.lookup.ProxyLookup;
import org.openide.util.lookup.InstanceContent;
import org.openide.util.lookup.AbstractLookup;
import org.openide.util.lookup.Lookups;
import org.openide.util.Lookup;
import org.netbeans.junit.*;
import org.netbeans.modules.masterfs.providers.FileSystemProvider;
import org.netbeans.modules.masterfs.providers.AutoMountProvider;
import org.netbeans.modules.masterfs.providers.MountSupport;

/**
 *
 * @author  rm111737
 * @version 
 */
public class MasterFileSystemTest extends FileSystemFactoryHid {
    private static MasterFileSystem masterfs;

    
    static {
        System.setProperty("org.openide.util.Lookup", TestLookup.class.getName());
    }

    /** Creates new MasterFileSystemTest */
    public MasterFileSystemTest(Test test) {
        super(test);
    }


    public static void main(String args[]) {
        junit.textui.TestRunner.run(suite());
    }


    public static Test suite() {
        NbTestSuite suite = new NbTestSuite();
        suite.addTestSuite(FileSystemTestHid.class);
        suite.addTestSuite(FileObjectTestHid.class);
        suite.addTestSuite(MasterFileObjectTestHid.class);        
        suite.addTestSuite(URLMapperTestHidden.class);
        suite.addTestSuite(FileUtilTestHidden.class);                        
        
         
        return new MasterFileSystemTest(suite);
    }


    private File getWorkDir() {
        String workDirProperty = System.getProperty("workdir");//NOI18N
        workDirProperty = (workDirProperty != null) ? workDirProperty : System.getProperty("java.io.tmpdir");//NOI18N                 
        return new File (workDirProperty, "fstests");//NOI18N
    }

    protected String getResourcePrefix(String testName, String[] resources) {
       try {
           masterfs = MasterFileSystem.getDefault();
           File testDir = new File(getWorkDir(),testName);
           createResources(testDir, resources);
           return FileUtil.normalizeFile(testDir).getAbsolutePath().replace('\\','/');
        } catch (IOException e) {
            throw new IllegalStateException(e.getLocalizedMessage());
        } 
    }

    private void createResources(File testDir, String[] resources) throws IOException {
        for (int i = 0; i < resources.length; i++) {
            File resourceFile = FileUtil.normalizeFile(new File (testDir, resources[i]));
            String resourcePath = resourceFile.getAbsolutePath().replace('\\','/');
            if (masterfs.getRoot().getFileObject(resourcePath) == null) {
                boolean isFolder = resources[i].endsWith("/");
                try {
                    createOneResource(isFolder, resourcePath);
                } catch (IOException e) {
                    /** this piece of code handles clearWorkDir in TetsBaseHid.setUp. MasterFileSystem is singleton
                     * shared in one JVM for all tests and clearWorkDir means external modification here.*/
                    StringTokenizer en = new StringTokenizer(resourcePath, "/");
                    FileObject lastFo = masterfs.getRoot();
                    while (en.hasMoreElements() && lastFo != null) {
                        String filename = (String) en.nextElement();
                        if (lastFo.getFileObject(filename) == null) {
                            lastFo.refresh();
                        }
                        lastFo = lastFo.getFileObject(filename);                        
                    }
                    createOneResource(isFolder, resourcePath);
                }
            }
        }
    }

    private void createOneResource(boolean folder, String resourcePath) throws IOException {
        if (folder) {
            FileUtil.createFolder(masterfs.getRoot(), resourcePath);
        } else {
            FileUtil.createData(masterfs.getRoot(), resourcePath);                    
        }
    }

    protected FileSystem[] createFileSystem(String testName, String[] resources) throws IOException {        
        return new FileSystem[]{masterfs};
    }

    protected void destroyFileSystem(String testName) throws IOException {}
    
    static class TestFSProvider implements FileSystemProvider {
        static TestFSProvider DEFAULT = new TestFSProvider();        
        private boolean init = false;
        
        private TestFSProvider () {};
        
        public AutoMountProvider initialize(MountSupport mSupport) {
            init = true;
            return null;
        }
        
        boolean isInitailized () {
            return init;
        }
    }
    
    public static class TestLookup extends ProxyLookup {
        public TestLookup() {
            super ();
            setLookups(new Lookup[] {getMetaInfLookup(), getInstanceLookup()});                
        }

        private Lookup getInstanceLookup() {
            InstanceContent instanceContent = new InstanceContent ();
            instanceContent.add(TestFSProvider.DEFAULT);
            Lookup instanceLookup = new AbstractLookup (instanceContent);
            return instanceLookup;
        }

        private Lookup getMetaInfLookup() {
            return Lookups.metaInfServices(Thread.currentThread().getContextClassLoader());
        }
    }
    
}
... 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.