blob: 83de9e644d5ec34134646bebc77c4d5e154d1b87 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.web.jsf.navigation;
import java.io.File;
import junit.framework.Assert;
import org.netbeans.api.editor.mimelookup.MimePath;
import org.netbeans.modules.java.source.indexing.JavaCustomIndexer;
import org.netbeans.modules.java.source.parsing.ClassParser;
import org.netbeans.modules.java.source.parsing.ClassParserFactory;
import org.netbeans.modules.java.source.parsing.JavacParser;
import org.netbeans.modules.java.source.parsing.JavacParserFactory;
import org.netbeans.spi.editor.mimelookup.MimeDataProvider;
import org.netbeans.spi.project.support.ant.AntBasedProjectType;
import org.openide.modules.InstalledFileLocator;
import org.openide.util.Lookup;
import org.openide.util.lookup.Lookups;
import org.openide.util.lookup.ProxyLookup;
import org.openide.util.lookup.ServiceProvider;
public class TestUtilities extends ProxyLookup {
private static TestUtilities DEFAULT;
private static final Lookup PROJECTS;
static {
TestUtilities.class.getClassLoader().setDefaultAssertionStatus(true);
System.setProperty("org.openide.util.Lookup", TestUtilities.class.getName());
Assert.assertEquals(TestUtilities.class, Lookup.getDefault().getClass());
Lookup p = Lookups.forPath("Services/AntBasedProjectTypes/");
p.lookupAll(AntBasedProjectType.class);
PROJECTS = p;
setLookup(new Object[0]);
}
public TestUtilities() {
Assert.assertNull(DEFAULT);
DEFAULT = this;
ClassLoader l = TestUtilities.class.getClassLoader();
setLookups(new Lookup[] {
Lookups.metaInfServices(l),
Lookups.singleton(l)
});
}
/**
* Set the global default lookup.
* Caution: if you don't include Lookups.metaInfServices, you may have trouble,
* e.g. {@link #makeScratchDir} will not work.
*/
public static void setLookup(Lookup l) {
DEFAULT.setLookups(new Lookup[] {l});
}
/**
* Set the global default lookup with some fixed instances including META-INF/services/*.
*/
public static void setLookup(Object... instances) {
ClassLoader l = TestUtilities.class.getClassLoader();
DEFAULT.setLookups(new Lookup[] {
Lookups.fixed(instances),
Lookups.metaInfServices(l),
Lookups.singleton(l),
PROJECTS
});
}
@ServiceProvider(service=MimeDataProvider.class)
public static final class JavacParserProvider implements MimeDataProvider {
private Lookup javaLookup = Lookups.fixed(
new JavacParserFactory(),
new JavaCustomIndexer.Factory()
);
private Lookup classLookup = Lookups.fixed(
new ClassParserFactory(),
new JavaCustomIndexer.Factory()
);
@Override
public Lookup getLookup(MimePath mimePath) {
if (mimePath.getPath().endsWith(JavacParser.MIME_TYPE)) {
return javaLookup;
}
if (mimePath.getPath().endsWith(ClassParser.MIME_TYPE)) {
return classLookup;
}
return Lookup.EMPTY;
}
}
@ServiceProvider(service = InstalledFileLocator.class)
public static class InstalledFileLocatorImpl extends InstalledFileLocator{
@Override
public File locate( String arg0, String arg1, boolean arg2 ) {
return null;
}
}
}