blob: a7ce6a9c6bb28d6afb205b612b40eb6257939dee [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.apache.myfaces.extensions.scripting.scanningcore.context;
import org.junit.Before;
import org.junit.Test;
import org.apache.myfaces.extensions.scripting.core.api.ScriptingConst;
import org.apache.myfaces.extensions.scripting.core.api.WeavingContext;
import org.apache.myfaces.extensions.scripting.core.engine.FactoryEngines;
import org.apache.myfaces.extensions.scripting.core.engine.api.ScriptingEngine;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.Enumeration;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
/**
* @author Werner Punz (latest modification by $Author$)
* @version $Revision$ $Date$
*/
public class InitialFullScanTest
{
FactoryEngines factory = null;
@Before
public void init() throws Exception {
factory = FactoryEngines.getInstance();
factory.init();
}
@Test
public void testInitialFullScan() {
try
{
ScriptingEngine javaEngine = factory.getEngine(ScriptingConst.ENGINE_TYPE_JSF_JAVA);
ScriptingEngine groovyEngine = factory.getEngine(ScriptingConst.ENGINE_TYPE_JSF_GROOVY);
ClassLoader loader = this.getClass().getClassLoader();
String canonicalPackageName = this.getClass().getPackage().getName().replaceAll("\\.", File.separator);
Enumeration<URL> enumeration = loader.getResources(canonicalPackageName);
javaEngine.getSourcePaths().clear();
groovyEngine.getSourcePaths().clear();
//TODO source not binary dirs
while(enumeration.hasMoreElements()) {
URL currentDir = enumeration.nextElement();
String currentDirStr = currentDir.getFile();
currentDirStr = currentDirStr.replaceAll("target\\"+File.separatorChar+"test\\-classes",
"src/main/java");
currentDirStr = currentDirStr.replaceAll("target\\"+File.separatorChar+"classes",
"src/main/java");
javaEngine.getSourcePaths().add(currentDirStr);
groovyEngine.getSourcePaths().add(currentDirStr);
}
//we now scan for the files
WeavingContext.getInstance().fullScan();
}
catch (IOException e)
{
fail(e.getMessage());
}
}
}