Search in sources :

Example 6 with DefaultFileManager

use of com.opensymphony.xwork2.util.fs.DefaultFileManager in project struts by apache.

the class BaseOsgiHost method getVersion.

/**
 * @param url URL for package
 * @return  the version used to export the packages. it tries to get it from MANIFEST.MF, or the file name
 */
protected String getVersion(URL url) {
    if ("jar".equals(url.getProtocol())) {
        JarFile jarFile = null;
        try {
            ActionContext actionContext = null;
            FileManagerFactory fileManagerFactory = null;
            FileManager fileManager = null;
            actionContext = ServletActionContext.getContext();
            if (actionContext == null) {
                LOG.warn("ActionContext is null.  Cannot load FileManagerFactory from it");
            }
            if (actionContext != null) {
                fileManagerFactory = actionContext.getInstance(FileManagerFactory.class);
            }
            if (fileManagerFactory == null) {
                LOG.warn("FileManagerFactory is null in ActionContext.  Cannot load FileManager from it");
            } else {
                fileManager = fileManagerFactory.getFileManager();
            }
            if (fileManager == null) {
                if (fileManagerFactory != null) {
                    LOG.debug("FileManager is null in FileManagerFactory.  Using a DefaultFileManager");
                } else {
                    LOG.debug("Using a DefaultFileManager");
                }
                fileManager = new DefaultFileManager();
            }
            jarFile = new JarFile(new File(fileManager.normalizeToFileProtocol(url).toURI()));
            Manifest manifest = jarFile.getManifest();
            String jarFileName = jarFile.getName();
            if (jarFileName != null) {
                // Strip extraneous file path elements to limit the string to the JAR name itself, if possible.
                int lastExclamationIndex = jarFileName.lastIndexOf("!");
                if (lastExclamationIndex != -1) {
                    jarFileName = jarFileName.substring(0, lastExclamationIndex);
                }
                if (jarFileName.toLowerCase().endsWith(".jar")) {
                    int lastPathSeparatorIndex = jarFileName.lastIndexOf(File.separator);
                    if (lastPathSeparatorIndex != -1) {
                        jarFileName = jarFileName.substring(lastPathSeparatorIndex + 1);
                    }
                }
            }
            if (manifest != null) {
                String version = manifest.getMainAttributes().getValue("Bundle-Version");
                if (StringUtils.isNotBlank(version)) {
                    LOG.debug("Attempting to get bundle version for [{}] via its JAR manifest", url.toExternalForm());
                    return getVersionFromString(version);
                } else {
                    // try to get the version from the file name
                    LOG.debug("Attempting to get bundle version for [{}] via its filename [{}]", url.toExternalForm(), jarFileName);
                    return getVersionFromString(jarFileName);
                }
            } else {
                // try to get the version from the file name
                LOG.debug("Attempting to get bundle version for [{}] via its filename [{}]", url.toExternalForm(), jarFileName);
                return getVersionFromString(jarFileName);
            }
        } catch (Exception e) {
            LOG.error("Unable to extract version from [{}], defaulting to '1.0.0'", url.toExternalForm());
        } finally {
            if (jarFile != null) {
                try {
                    jarFile.close();
                } catch (Exception ex) {
                }
            }
        }
    }
    return "1.0.0";
}
Also used : FileManagerFactory(com.opensymphony.xwork2.FileManagerFactory) DefaultFileManager(com.opensymphony.xwork2.util.fs.DefaultFileManager) JarFile(java.util.jar.JarFile) ActionContext(com.opensymphony.xwork2.ActionContext) ServletActionContext(org.apache.struts2.ServletActionContext) Manifest(java.util.jar.Manifest) JarFile(java.util.jar.JarFile) File(java.io.File) DefaultFileManager(com.opensymphony.xwork2.util.fs.DefaultFileManager) FileManager(com.opensymphony.xwork2.FileManager) IOException(java.io.IOException) StrutsException(org.apache.struts2.StrutsException)

Example 7 with DefaultFileManager

use of com.opensymphony.xwork2.util.fs.DefaultFileManager in project struts by apache.

the class JSPLoader method compileJava.

/**
 * Compiles the given source code into java bytecode
 */
private void compileJava(String className, final String source, Set<String> extraClassPath) throws IOException {
    LOG.trace("Compiling [{}], source: [{}]", className, source);
    JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
    DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<JavaFileObject>();
    // the generated bytecode is fed to the class loader
    JavaFileManager jfm = new ForwardingJavaFileManager<StandardJavaFileManager>(compiler.getStandardFileManager(diagnostics, null, null)) {

        @Override
        public JavaFileObject getJavaFileForOutput(Location location, String name, JavaFileObject.Kind kind, FileObject sibling) throws IOException {
            MemoryJavaFileObject fileObject = new MemoryJavaFileObject(name, kind);
            classLoader.addMemoryJavaFileObject(name, fileObject);
            return fileObject;
        }
    };
    // read java source code from memory
    String fileName = className.replace('.', '/') + ".java";
    SimpleJavaFileObject sourceCodeObject = new SimpleJavaFileObject(toURI(fileName), JavaFileObject.Kind.SOURCE) {

        @Override
        public CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException, IllegalStateException, UnsupportedOperationException {
            return source;
        }
    };
    // build classpath
    // some entries will be added multiple times, hence the set
    List<String> optionList = new ArrayList<String>();
    Set<String> classPath = new HashSet<String>();
    // find available jars
    ClassLoaderInterface classLoaderInterface = getClassLoaderInterface();
    UrlSet urlSet = new UrlSet(classLoaderInterface);
    // find jars
    List<URL> urls = urlSet.getUrls();
    if (urls != null && urls.size() > 0) {
        final FileManagerFactory fileManagerFactoryGetInstance = ServletActionContext.getActionContext().getInstance(FileManagerFactory.class);
        final FileManagerFactory contextFileManagerFactory = (fileManagerFactoryGetInstance != null ? fileManagerFactoryGetInstance : (FileManagerFactory) ServletActionContext.getActionContext().get(StrutsConstants.STRUTS_FILE_MANAGER_FACTORY));
        final FileManagerFactory fileManagerFactory = (contextFileManagerFactory != null ? contextFileManagerFactory : new DefaultFileManagerFactory());
        final FileManager fileManagerGetInstance = fileManagerFactory.getFileManager();
        final FileManager contextFileManager = (fileManagerGetInstance != null ? fileManagerGetInstance : (FileManager) ServletActionContext.getActionContext().get(StrutsConstants.STRUTS_FILE_MANAGER));
        final FileManager fileManager = (contextFileManager != null ? contextFileManager : new DefaultFileManager());
        for (URL url : urls) {
            URL normalizedUrl = fileManager.normalizeToFileProtocol(url);
            File file = FileUtils.toFile(ObjectUtils.defaultIfNull(normalizedUrl, url));
            if (file.exists())
                classPath.add(file.getAbsolutePath());
        }
    }
    // these should be in the list already, but I am feeling paranoid
    // this jar
    classPath.add(getJarUrl(EmbeddedJSPResult.class));
    // servlet api
    classPath.add(getJarUrl(Servlet.class));
    // jsp api
    classPath.add(getJarUrl(JspPage.class));
    try {
        Class instanceManager = Class.forName("org.apache.tomcat.InstanceManager");
        classPath.add(getJarUrl(instanceManager));
    } catch (ClassNotFoundException e) {
    // ok ignore
    }
    // add extra classpath entries (jars where tlds were found will be here)
    for (Iterator<String> iterator = extraClassPath.iterator(); iterator.hasNext(); ) {
        String entry = iterator.next();
        classPath.add(entry);
    }
    String classPathString = StringUtils.join(classPath, File.pathSeparator);
    if (LOG.isDebugEnabled()) {
        LOG.debug("Compiling [#0] with classpath [#1]", className, classPathString);
    }
    optionList.addAll(Arrays.asList("-classpath", classPathString));
    // compile
    JavaCompiler.CompilationTask task = compiler.getTask(null, jfm, diagnostics, optionList, null, Arrays.asList(sourceCodeObject));
    if (!task.call()) {
        throw new StrutsException("Compilation failed:" + diagnostics.getDiagnostics().get(0).toString());
    }
}
Also used : SimpleJavaFileObject(javax.tools.SimpleJavaFileObject) DefaultFileManagerFactory(com.opensymphony.xwork2.util.fs.DefaultFileManagerFactory) ArrayList(java.util.ArrayList) JspPage(javax.servlet.jsp.JspPage) URL(java.net.URL) SimpleJavaFileObject(javax.tools.SimpleJavaFileObject) MemoryJavaFileObject(org.apache.struts2.compiler.MemoryJavaFileObject) JavaFileObject(javax.tools.JavaFileObject) UrlSet(com.opensymphony.xwork2.util.finder.UrlSet) Servlet(javax.servlet.Servlet) DiagnosticCollector(javax.tools.DiagnosticCollector) FileObject(javax.tools.FileObject) SimpleJavaFileObject(javax.tools.SimpleJavaFileObject) MemoryJavaFileObject(org.apache.struts2.compiler.MemoryJavaFileObject) JavaFileObject(javax.tools.JavaFileObject) MemoryJavaFileObject(org.apache.struts2.compiler.MemoryJavaFileObject) HashSet(java.util.HashSet) FileManagerFactory(com.opensymphony.xwork2.FileManagerFactory) DefaultFileManagerFactory(com.opensymphony.xwork2.util.fs.DefaultFileManagerFactory) JavaFileManager(javax.tools.JavaFileManager) ForwardingJavaFileManager(javax.tools.ForwardingJavaFileManager) StandardJavaFileManager(javax.tools.StandardJavaFileManager) ClassLoaderInterface(com.opensymphony.xwork2.util.finder.ClassLoaderInterface) JavaCompiler(javax.tools.JavaCompiler) DefaultFileManager(com.opensymphony.xwork2.util.fs.DefaultFileManager) JavaFileManager(javax.tools.JavaFileManager) ForwardingJavaFileManager(javax.tools.ForwardingJavaFileManager) FileManager(com.opensymphony.xwork2.FileManager) StandardJavaFileManager(javax.tools.StandardJavaFileManager) ForwardingJavaFileManager(javax.tools.ForwardingJavaFileManager) DefaultFileManager(com.opensymphony.xwork2.util.fs.DefaultFileManager) File(java.io.File)

Example 8 with DefaultFileManager

use of com.opensymphony.xwork2.util.fs.DefaultFileManager in project struts by apache.

the class PackageBasedActionConfigBuilderTest method run.

private void run(String actionPackages, String packageLocators, String excludePackages, String enableSmiInheritance) throws MalformedURLException {
    // setup interceptors
    List<InterceptorConfig> defaultInterceptors = new ArrayList<>();
    defaultInterceptors.add(makeInterceptorConfig("interceptor-1"));
    defaultInterceptors.add(makeInterceptorConfig("interceptor-2"));
    defaultInterceptors.add(makeInterceptorConfig("interceptor-3"));
    // setup interceptor stacks
    List<InterceptorStackConfig> defaultInterceptorStacks = new ArrayList<>();
    InterceptorMapping interceptor1 = new InterceptorMapping("interceptor-1", new TestInterceptor());
    InterceptorMapping interceptor2 = new InterceptorMapping("interceptor-2", new TestInterceptor());
    defaultInterceptorStacks.add(makeInterceptorStackConfig("stack-1", interceptor1, interceptor2));
    // setup strict MethodInvocation
    boolean strictMethodInvocation = true;
    boolean isSmiInheritanceEnabled = false;
    // even when the SMI of their parent is set to false.
    if (StringUtils.equals(enableSmiInheritance, "true")) {
        strictMethodInvocation = false;
        isSmiInheritanceEnabled = true;
    } else if (StringUtils.equals(enableSmiInheritance, "false")) {
        strictMethodInvocation = false;
    }
    // setup results
    ResultTypeConfig[] defaultResults = new ResultTypeConfig[] { new ResultTypeConfig.Builder("dispatcher", ServletDispatcherResult.class.getName()).defaultResultParam("location").build(), new ResultTypeConfig.Builder("chain", ActionChainResult.class.getName()).defaultResultParam("actionName").build() };
    Set<String> globalAllowedMethods = TextParseUtil.commaDelimitedStringToSet("execute,browse,cancel,input");
    PackageConfig strutsDefault = makePackageConfig("struts-default", null, null, "dispatcher", defaultResults, defaultInterceptors, defaultInterceptorStacks, globalAllowedMethods, strictMethodInvocation);
    PackageConfig packageLevelParentPkg = makePackageConfig("package-level", null, null, null);
    PackageConfig classLevelParentPkg = makePackageConfig("class-level", null, null, null);
    PackageConfig rootPkg = makePackageConfig("org.apache.struts2.convention.actions#struts-default#", "", strutsDefault, null);
    PackageConfig paramsPkg = makePackageConfig("org.apache.struts2.convention.actions.params#struts-default#/params", "/params", strutsDefault, null);
    PackageConfig defaultInterceptorPkg = makePackageConfig("org.apache.struts2.convention.actions.defaultinterceptor#struts-default#/defaultinterceptor", "/defaultinterceptor", strutsDefault, null);
    PackageConfig exceptionPkg = makePackageConfig("org.apache.struts2.convention.actions.exception#struts-default#/exception", "/exception", strutsDefault, null);
    PackageConfig actionPkg = makePackageConfig("org.apache.struts2.convention.actions.action#struts-default#/action", "/action", strutsDefault, null);
    PackageConfig idxPkg = makePackageConfig("org.apache.struts2.convention.actions.idx#struts-default#/idx", "/idx", strutsDefault, null);
    PackageConfig idx2Pkg = makePackageConfig("org.apache.struts2.convention.actions.idx.idx2#struts-default#/idx/idx2", "/idx/idx2", strutsDefault, null);
    PackageConfig interceptorRefsPkg = makePackageConfig("org.apache.struts2.convention.actions.interceptor#struts-default#/interceptor", "/interceptor", strutsDefault, null);
    PackageConfig packageLevelPkg = makePackageConfig("org.apache.struts2.convention.actions.parentpackage#package-level#/parentpackage", "/parentpackage", packageLevelParentPkg, null);
    PackageConfig packageLevelSubPkg = makePackageConfig("org.apache.struts2.convention.actions.parentpackage.sub#package-level#/parentpackage/sub", "/parentpackage/sub", packageLevelParentPkg, null);
    // Unexpected method call build(class org.apache.struts2.convention.actions.allowedmethods.PackageLevelAllowedMethodsAction, null, "package-level-allowed-methods", PackageConfig: [org.apache.struts2.convention.actions.allowedmethods#struts-default#/allowedmethods] for namespace [/allowedmethods] with parents [[PackageConfig: [struts-default] for namespace [] with parents [[]]]]):
    PackageConfig packageLevelAllowedMethodsPkg = makePackageConfig("org.apache.struts2.convention.actions.allowedmethods#struts-default#/allowedmethods", "/allowedmethods", strutsDefault, null);
    PackageConfig packageLevelAllowedMethodsSubPkg = makePackageConfig("org.apache.struts2.convention.actions.allowedmethods.sub#struts-default#/allowedmethods/sub", "/allowedmethods/sub", strutsDefault, null);
    PackageConfig classLevelAllowedMethodsPkg = makePackageConfig("org.apache.struts2.convention.actions.allowedmethods#struts-default#/allowedmethods", "/allowedmethods", strutsDefault, null);
    PackageConfig differentPkg = makePackageConfig("org.apache.struts2.convention.actions.parentpackage#class-level#/parentpackage", "/parentpackage", classLevelParentPkg, null);
    PackageConfig differentSubPkg = makePackageConfig("org.apache.struts2.convention.actions.parentpackage.sub#class-level#/parentpackage/sub", "/parentpackage/sub", classLevelParentPkg, null);
    PackageConfig pkgLevelNamespacePkg = makePackageConfig("org.apache.struts2.convention.actions.namespace#struts-default#/package-level", "/package-level", strutsDefault, null);
    PackageConfig classLevelNamespacePkg = makePackageConfig("org.apache.struts2.convention.actions.namespace#struts-default#/class-level", "/class-level", strutsDefault, null);
    PackageConfig actionLevelNamespacePkg = makePackageConfig("org.apache.struts2.convention.actions.namespace#struts-default#/action-level", "/action-level", strutsDefault, null);
    PackageConfig defaultNamespacePkg = makePackageConfig("org.apache.struts2.convention.actions.namespace2#struts-default#/namespace2", "/namespace2", strutsDefault, null);
    PackageConfig namespaces1Pkg = makePackageConfig("org.apache.struts2.convention.actions.namespace3#struts-default#/namespaces1", "/namespaces1", strutsDefault, null);
    PackageConfig namespaces2Pkg = makePackageConfig("org.apache.struts2.convention.actions.namespace3#struts-default#/namespaces2", "/namespaces2", strutsDefault, null);
    PackageConfig namespaces3Pkg = makePackageConfig("org.apache.struts2.convention.actions.namespace4#struts-default#/namespaces3", "/namespaces3", strutsDefault, null);
    PackageConfig namespaces4Pkg = makePackageConfig("org.apache.struts2.convention.actions.namespace4#struts-default#/namespaces4", "/namespaces4", strutsDefault, null);
    PackageConfig resultPkg = makePackageConfig("org.apache.struts2.convention.actions.result#struts-default#/result", "/result", strutsDefault, null);
    PackageConfig globalResultPkg = makePackageConfig("org.apache.struts2.convention.actions.result#class-level#/result", "/result", classLevelParentPkg, null);
    PackageConfig resultPathPkg = makePackageConfig("org.apache.struts2.convention.actions.resultpath#struts-default#/resultpath", "/resultpath", strutsDefault, null);
    PackageConfig skipPkg = makePackageConfig("org.apache.struts2.convention.actions.skip#struts-default#/skip", "/skip", strutsDefault, null);
    PackageConfig chainPkg = makePackageConfig("org.apache.struts2.convention.actions.chain#struts-default#/chain", "/chain", strutsDefault, null);
    PackageConfig transPkg = makePackageConfig("org.apache.struts2.convention.actions.transactions#struts-default#/transactions", "/transactions", strutsDefault, null);
    PackageConfig excludePkg = makePackageConfig("org.apache.struts2.convention.actions.exclude#struts-default#/exclude", "/exclude", strutsDefault, null);
    ResultMapBuilder resultMapBuilder = createStrictMock(ResultMapBuilder.class);
    checkOrder(resultMapBuilder, false);
    Map<String, ResultConfig> results = new HashMap<>();
    /* org.apache.struts2.convention.actions.action */
    expect(resultMapBuilder.build(ActionNameAction.class, getAnnotation(ActionNameAction.class, "run1", Action.class), "action1", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(ClassNameAction.class, getAnnotation(ClassNameAction.class, "run1", Action.class), "action3", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionNameAction.class, getAnnotation(ActionNameAction.class, "run2", Action.class), "action2", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionNamesAction.class, getAnnotation(ActionNamesAction.class, "run", Actions.class).value()[0], "actions1", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionNamesAction.class, getAnnotation(ActionNamesAction.class, "run", Actions.class).value()[1], "actions2", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(SingleActionNameAction.class, getAnnotation(SingleActionNameAction.class, "run", Action.class), "action", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(TestAction.class, null, "test", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(TestExtends.class, null, "test-extends", actionPkg)).andReturn(results);
    Actions classLevelActions = ClassLevelAnnotationsAction.class.getAnnotation(Actions.class);
    expect(resultMapBuilder.build(ClassLevelAnnotationsAction.class, classLevelActions.value()[0], "class1", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(ClassLevelAnnotationsAction.class, classLevelActions.value()[1], "class2", actionPkg)).andReturn(results);
    Actions classLevelActionsDefaultMethod = ClassLevelAnnotationsDefaultMethodAction.class.getAnnotation(Actions.class);
    expect(resultMapBuilder.build(ClassLevelAnnotationsDefaultMethodAction.class, classLevelActionsDefaultMethod.value()[0], "class3", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(ClassLevelAnnotationsDefaultMethodAction.class, classLevelActionsDefaultMethod.value()[1], "class4", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(ClassLevelAnnotationAction.class, ClassLevelAnnotationAction.class.getAnnotation(Action.class), "class5", actionPkg)).andReturn(results);
    expect(resultMapBuilder.build(ClassLevelAnnotationDefaultMethodAction.class, ClassLevelAnnotationDefaultMethodAction.class.getAnnotation(Action.class), "class6", actionPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.idx */
    /* org.apache.struts2.convention.actions.idx.idx2 */
    expect(resultMapBuilder.build(org.apache.struts2.convention.actions.idx.Index.class, null, "index", idxPkg)).andReturn(results);
    expect(resultMapBuilder.build(org.apache.struts2.convention.actions.idx.idx2.Index.class, null, "index", idx2Pkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.params */
    expect(resultMapBuilder.build(ActionParamsMethodLevelAction.class, getAnnotation(ActionParamsMethodLevelAction.class, "run1", Action.class), "actionParam1", paramsPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.defaultinterceptor */
    expect(resultMapBuilder.build(SingleActionNameAction2.class, getAnnotation(SingleActionNameAction2.class, "execute", Action.class), "action345", defaultInterceptorPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.exception */
    expect(resultMapBuilder.build(ExceptionsMethodLevelAction.class, getAnnotation(ExceptionsMethodLevelAction.class, "run1", Action.class), "exception1", exceptionPkg)).andReturn(results);
    expect(resultMapBuilder.build(ExceptionsActionLevelAction.class, getAnnotation(ExceptionsActionLevelAction.class, "execute", Action.class), "exceptions-action-level", exceptionPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.interceptor */
    expect(resultMapBuilder.build(InterceptorsAction.class, getAnnotation(InterceptorsAction.class, "run1", Action.class), "action100", interceptorRefsPkg)).andReturn(results);
    expect(resultMapBuilder.build(InterceptorsAction.class, getAnnotation(InterceptorsAction.class, "run2", Action.class), "action200", interceptorRefsPkg)).andReturn(results);
    expect(resultMapBuilder.build(InterceptorsAction.class, getAnnotation(InterceptorsAction.class, "run3", Action.class), "action300", interceptorRefsPkg)).andReturn(results);
    expect(resultMapBuilder.build(InterceptorsAction.class, getAnnotation(InterceptorsAction.class, "run4", Action.class), "action400", interceptorRefsPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelInterceptorAction.class, getAnnotation(ActionLevelInterceptorAction.class, "run1", Action.class), "action500", interceptorRefsPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelInterceptorAction.class, getAnnotation(ActionLevelInterceptorAction.class, "run2", Action.class), "action600", interceptorRefsPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelInterceptorAction.class, getAnnotation(ActionLevelInterceptorAction.class, "run3", Action.class), "action700", interceptorRefsPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelInterceptor2Action.class, getAnnotation(ActionLevelInterceptor2Action.class, "run1", Action.class), "action800", interceptorRefsPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelInterceptor3Action.class, getAnnotation(ActionLevelInterceptor3Action.class, "run1", Action.class), "action900", interceptorRefsPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.namespace */
    expect(resultMapBuilder.build(ActionLevelNamespaceAction.class, getAnnotation(ActionLevelNamespaceAction.class, "execute", Action.class), "action", actionLevelNamespacePkg)).andReturn(results);
    expect(resultMapBuilder.build(ClassLevelNamespaceAction.class, null, "class-level-namespace", classLevelNamespacePkg)).andReturn(results);
    expect(resultMapBuilder.build(PackageLevelNamespaceAction.class, null, "package-level-namespace", pkgLevelNamespacePkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.namespace2 */
    expect(resultMapBuilder.build(DefaultNamespaceAction.class, null, "default-namespace", defaultNamespacePkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.namespace3 */
    expect(resultMapBuilder.build(ActionLevelNamespacesAction.class, null, "action-level-namespaces", namespaces1Pkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelNamespacesAction.class, null, "action-level-namespaces", namespaces2Pkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.namespace4 */
    expect(resultMapBuilder.build(ActionAndPackageLevelNamespacesAction.class, null, "action-and-package-level-namespaces", namespaces3Pkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionAndPackageLevelNamespacesAction.class, null, "action-and-package-level-namespaces", namespaces4Pkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.parentpackage */
    expect(resultMapBuilder.build(PackageLevelParentPackageAction.class, null, "package-level-parent-package", packageLevelPkg)).andReturn(results);
    expect(resultMapBuilder.build(PackageLevelParentPackageChildAction.class, null, "package-level-parent-package-child", packageLevelSubPkg)).andReturn(results);
    expect(resultMapBuilder.build(ClassLevelParentPackageAction.class, null, "class-level-parent-package", differentPkg)).andReturn(results);
    expect(resultMapBuilder.build(ClassLevelParentPackageChildAction.class, null, "class-level-parent-package-child", differentSubPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.allowedmethods */
    expect(resultMapBuilder.build(ClassLevelAllowedMethodsAction.class, null, "class-level-allowed-methods", classLevelAllowedMethodsPkg)).andReturn(results);
    expect(resultMapBuilder.build(PackageLevelAllowedMethodsAction.class, null, "package-level-allowed-methods", packageLevelAllowedMethodsPkg)).andReturn(results);
    expect(resultMapBuilder.build(PackageLevelAllowedMethodsChildAction.class, null, "package-level-allowed-methods-child", packageLevelAllowedMethodsSubPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.result */
    expect(resultMapBuilder.build(ClassLevelResultAction.class, null, "class-level-result", resultPkg)).andReturn(results);
    expect(resultMapBuilder.build(ClassLevelResultsAction.class, null, "class-level-results", resultPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelResultAction.class, getAnnotation(ActionLevelResultAction.class, "execute", Action.class), "action-level-result", resultPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelResultsAction.class, getAnnotation(ActionLevelResultsAction.class, "execute", Action.class), "action-level-results", resultPkg)).andReturn(results);
    expect(resultMapBuilder.build(InheritedResultExtends.class, null, "inherited-result-extends", resultPkg)).andReturn(results);
    expect(resultMapBuilder.build(OverrideResultAction.class, getAnnotation(OverrideResultAction.class, "execute", Action.class), "override-result", resultPkg)).andReturn(results);
    expect(resultMapBuilder.build(GlobalResultAction.class, null, "global-result", globalResultPkg)).andReturn(results);
    expect(resultMapBuilder.build(GlobalResultOverrideAction.class, null, "global-result-override", globalResultPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelResultsNamesAction.class, getAnnotation(ActionLevelResultsNamesAction.class, "execute", Action.class), "action-level-results-names", resultPkg)).andReturn(results);
    expect(resultMapBuilder.build(ActionLevelResultsNamesAction.class, getAnnotation(ActionLevelResultsNamesAction.class, "noname", Action.class), "action-level-results-names", resultPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.resultpath */
    expect(resultMapBuilder.build(ClassLevelResultPathAction.class, null, "class-level-result-path", resultPathPkg)).andReturn(results);
    expect(resultMapBuilder.build(PackageLevelResultPathAction.class, null, "package-level-result-path", resultPathPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions */
    expect(resultMapBuilder.build(NoAnnotationAction.class, null, "no-annotation", rootPkg)).andReturn(results);
    expect(resultMapBuilder.build(DefaultResultPathAction.class, null, "default-result-path", rootPkg)).andReturn(results);
    expect(resultMapBuilder.build(Skip.class, null, "skip", rootPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.skip */
    expect(resultMapBuilder.build(Index.class, null, "index", skipPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.chain */
    expect(resultMapBuilder.build(ChainedAction.class, getAnnotation(ChainedAction.class, "foo", Action.class), "foo", chainPkg)).andReturn(results);
    expect(resultMapBuilder.build(ChainedAction.class, getAnnotation(ChainedAction.class, "bar", Action.class), "foo-bar", chainPkg)).andReturn(results);
    /* org.apache.struts2.convention.actions.transactions */
    expect(resultMapBuilder.build(TransNameAction.class, getAnnotation(TransNameAction.class, "trans1", Action.class), "trans1", transPkg)).andReturn(results);
    expect(resultMapBuilder.build(TransNameAction.class, getAnnotation(TransNameAction.class, "trans2", Action.class), "trans2", transPkg)).andReturn(results);
    // this is only expected when excludePackages was specified with org.apache.struts2.convention.actions.exclude package
    if (excludePackages == null || !excludePackages.contains("org.apache.struts2.convention.actions.exclude")) {
        expect(resultMapBuilder.build(ExcludeAction.class, getAnnotation(ExcludeAction.class, "run1", Action.class), "exclude1", excludePkg)).andReturn(results);
    }
    EasyMock.replay(resultMapBuilder);
    final DummyContainer mockContainer = new DummyContainer();
    Configuration configuration = new DefaultConfiguration() {

        @Override
        public Container getContainer() {
            return mockContainer;
        }
    };
    configuration.addPackageConfig("struts-default", strutsDefault);
    configuration.addPackageConfig("package-level", packageLevelParentPkg);
    configuration.addPackageConfig("class-level", classLevelParentPkg);
    ActionNameBuilder actionNameBuilder = new SEOActionNameBuilder("true", "-");
    ObjectFactory of = new ObjectFactory();
    of.setContainer(mockContainer);
    DefaultInterceptorMapBuilder interceptorBuilder = new DefaultInterceptorMapBuilder();
    interceptorBuilder.setConfiguration(configuration);
    // set beans on mock container
    mockContainer.setActionNameBuilder(actionNameBuilder);
    mockContainer.setInterceptorMapBuilder(interceptorBuilder);
    mockContainer.setResultMapBuilder(resultMapBuilder);
    mockContainer.setConventionsService(new ConventionsServiceImpl(""));
    PackageBasedActionConfigBuilder builder = new PackageBasedActionConfigBuilder(configuration, mockContainer, of, "false", "struts-default", enableSmiInheritance);
    builder.setFileProtocols("jar");
    if (actionPackages != null) {
        builder.setActionPackages(actionPackages);
    }
    if (packageLocators != null) {
        builder.setPackageLocators(packageLocators);
    }
    if (excludePackages != null) {
        builder.setExcludePackages(excludePackages);
    }
    DefaultFileManagerFactory fileManagerFactory = new DefaultFileManagerFactory();
    fileManagerFactory.setContainer(ActionContext.getContext().getContainer());
    fileManagerFactory.setFileManager(new DefaultFileManager());
    builder.setFileManagerFactory(fileManagerFactory);
    builder.setPackageLocatorsBase("org.apache.struts2.convention.actions");
    builder.buildActionConfigs();
    verify(resultMapBuilder);
    /* org.apache.struts2.convention.actions.action */
    PackageConfig pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.action#struts-default#/action");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(14, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "action1", ActionNameAction.class, "run1", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "action2", ActionNameAction.class, "run2", pkgConfig.getName());
    verifyMissingActionConfig(pkgConfig, "foo", DontFindMeAction.class, "foo", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "action3", "someClassName", "run1", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "actions1", ActionNamesAction.class, "run", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "actions2", ActionNamesAction.class, "run", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "action", SingleActionNameAction.class, "run", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "test", TestAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "test-extends", TestExtends.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "class1", ClassLevelAnnotationsAction.class, null, pkgConfig.getName());
    verifyActionConfig(pkgConfig, "class2", ClassLevelAnnotationsAction.class, null, pkgConfig.getName());
    verifyActionConfig(pkgConfig, "class3", ClassLevelAnnotationsDefaultMethodAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "class4", ClassLevelAnnotationsDefaultMethodAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "class5", ClassLevelAnnotationAction.class, null, pkgConfig.getName());
    verifyActionConfig(pkgConfig, "class6", ClassLevelAnnotationDefaultMethodAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "class6", ClassLevelAnnotationDefaultMethodAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.namespace3 */
    // action on namespace1 (action level)
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.namespace3#struts-default#/namespaces1");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "action-level-namespaces", ActionLevelNamespacesAction.class, "execute", pkgConfig.getName());
    // action on namespace2 (action level)
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.namespace3#struts-default#/namespaces2");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "action-level-namespaces", ActionLevelNamespacesAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.namespace4 */
    // action on namespace3 (action level)
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.namespace4#struts-default#/namespaces3");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "action-and-package-level-namespaces", ActionAndPackageLevelNamespacesAction.class, "execute", pkgConfig.getName());
    // action on namespace4 (package level)
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.namespace4#struts-default#/namespaces4");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "action-and-package-level-namespaces", ActionAndPackageLevelNamespacesAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.params */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.params#struts-default#/params");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    ActionConfig ac = pkgConfig.getAllActionConfigs().get("actionParam1");
    assertNotNull(ac);
    Map<String, String> params = ac.getParams();
    assertNotNull(params);
    assertEquals(2, params.size());
    assertEquals("val1", params.get("param1"));
    assertEquals("val2", params.get("param2"));
    /* org.apache.struts2.convention.actions.params */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.exception#struts-default#/exception");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(2, pkgConfig.getActionConfigs().size());
    ac = pkgConfig.getAllActionConfigs().get("exception1");
    assertNotNull(ac);
    List<ExceptionMappingConfig> exceptions = ac.getExceptionMappings();
    assertNotNull(exceptions);
    assertEquals(2, exceptions.size());
    ExceptionMappingConfig exception = exceptions.get(0);
    assertEquals("NPE1", exception.getExceptionClassName());
    assertEquals("success", exception.getResult());
    exception = exceptions.get(1);
    assertEquals("NPE2", exception.getExceptionClassName());
    assertEquals("success", exception.getResult());
    params = exception.getParams();
    assertNotNull(params);
    assertEquals(1, params.size());
    assertEquals("val1", params.get("param1"));
    ac = pkgConfig.getAllActionConfigs().get("exceptions-action-level");
    assertNotNull(ac);
    exceptions = ac.getExceptionMappings();
    assertNotNull(exceptions);
    assertEquals(2, exceptions.size());
    exception = exceptions.get(0);
    assertEquals("NPE1", exception.getExceptionClassName());
    assertEquals("success", exception.getResult());
    exception = exceptions.get(1);
    assertEquals("NPE2", exception.getExceptionClassName());
    assertEquals("success", exception.getResult());
    params = exception.getParams();
    assertNotNull(params);
    assertEquals(1, params.size());
    assertEquals("val1", params.get("param1"));
    /* org.apache.struts2.convention.actions.idx */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.idx#struts-default#/idx");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(3, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "", org.apache.struts2.convention.actions.idx.Index.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "index", org.apache.struts2.convention.actions.idx.Index.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "idx2", org.apache.struts2.convention.actions.idx.idx2.Index.class, "execute", "org.apache.struts2.convention.actions.idx.idx2#struts-default#/idx/idx2");
    /* org.apache.struts2.convention.actions.defaultinterceptor */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.defaultinterceptor#struts-default#/defaultinterceptor");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals("validationWorkflowStack", pkgConfig.getDefaultInterceptorRef());
    /* org.apache.struts2.convention.actions.idx.idx2 */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.idx.idx2#struts-default#/idx/idx2");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(2, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "", org.apache.struts2.convention.actions.idx.idx2.Index.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "index", org.apache.struts2.convention.actions.idx.idx2.Index.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.namespace action level */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.namespace#struts-default#/action-level");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "action", ActionLevelNamespaceAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.namespace class level */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.namespace#struts-default#/class-level");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "class-level-namespace", ClassLevelNamespaceAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.namespace package level */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.namespace#struts-default#/package-level");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "package-level-namespace", PackageLevelNamespaceAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.namespace2 */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.namespace2#struts-default#/namespace2");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "default-namespace", DefaultNamespaceAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.parentpackage class level */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.parentpackage#class-level#/parentpackage");
    assertNotNull(pkgConfig);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "class-level-parent-package", ClassLevelParentPackageAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.parentpackage.sub class level */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.parentpackage.sub#class-level#/parentpackage/sub");
    assertNotNull(pkgConfig);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "class-level-parent-package-child", ClassLevelParentPackageChildAction.class, "execute", pkgConfig.getName());
    assertEquals("class-level", pkgConfig.getParents().get(0).getName());
    /* org.apache.struts2.convention.actions.parentpackage package level */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.parentpackage#package-level#/parentpackage");
    assertNotNull(pkgConfig);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "package-level-parent-package", PackageLevelParentPackageAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.parentpackage.sub package level */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.parentpackage.sub#package-level#/parentpackage/sub");
    assertNotNull(pkgConfig);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "package-level-parent-package-child", PackageLevelParentPackageChildAction.class, "execute", pkgConfig.getName());
    assertEquals("package-level", pkgConfig.getParents().get(0).getName());
    /* org.apache.struts2.convention.actions.allowedmethods class level */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.allowedmethods#struts-default#/allowedmethods");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(2, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "class-level-allowed-methods", ClassLevelAllowedMethodsAction.class, "execute", pkgConfig.getName());
    assertEquals("struts-default", pkgConfig.getParents().get(0).getName());
    ActionConfig actionConfig = pkgConfig.getActionConfigs().get("class-level-allowed-methods");
    assertTrue(actionConfig.getAllowedMethods().contains("execute"));
    int allowedMethodsSize = actionConfig.getAllowedMethods().size();
    if (!pkgConfig.isStrictMethodInvocation()) {
        // With strict method invocation disabled the allowed methods are "execute" and the wildcard "*"
        assertEquals(2, allowedMethodsSize);
    } else {
        assertEquals(7, allowedMethodsSize);
        assertTrue(actionConfig.getAllowedMethods().contains("end"));
        assertTrue(actionConfig.getAllowedMethods().contains("input"));
        assertTrue(actionConfig.getAllowedMethods().contains("cancel"));
        assertTrue(actionConfig.getAllowedMethods().contains("start"));
        assertTrue(actionConfig.getAllowedMethods().contains("home"));
        assertTrue(actionConfig.getAllowedMethods().contains("browse"));
    }
    /* org.apache.struts2.convention.actions.allowedmethods.sub package level */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.allowedmethods.sub#struts-default#/allowedmethods/sub");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(1, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "package-level-allowed-methods-child", PackageLevelAllowedMethodsChildAction.class, "execute", pkgConfig.getName());
    assertEquals("struts-default", pkgConfig.getParents().get(0).getName());
    actionConfig = pkgConfig.getActionConfigs().get("package-level-allowed-methods-child");
    assertTrue(actionConfig.getAllowedMethods().contains("execute"));
    allowedMethodsSize = actionConfig.getAllowedMethods().size();
    if (!pkgConfig.isStrictMethodInvocation()) {
        // With strict method invocation disabled the allowed methods are execute and the wildcard *
        assertEquals(2, allowedMethodsSize);
    } else {
        assertEquals(6, allowedMethodsSize);
        assertTrue(actionConfig.getAllowedMethods().contains("home"));
        assertTrue(actionConfig.getAllowedMethods().contains("start"));
        assertTrue(actionConfig.getAllowedMethods().contains("input"));
    }
    /* org.apache.struts2.convention.actions.result */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.result#struts-default#/result");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(7, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "class-level-result", ClassLevelResultAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "class-level-results", ClassLevelResultsAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "action-level-result", ActionLevelResultAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "action-level-results", ActionLevelResultsAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "inherited-result-extends", InheritedResultExtends.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.resultpath */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.resultpath#struts-default#/resultpath");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(2, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "class-level-result-path", ClassLevelResultPathAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "package-level-result-path", PackageLevelResultPathAction.class, "execute", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.interceptorRefs */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.interceptor#struts-default#/interceptor");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(9, pkgConfig.getActionConfigs().size());
    verifyActionConfigInterceptors(pkgConfig, "action100", "interceptor-1");
    verifyActionConfigInterceptors(pkgConfig, "action200", "interceptor-1", "interceptor-2");
    verifyActionConfigInterceptors(pkgConfig, "action300", "interceptor-1", "interceptor-2");
    verifyActionConfigInterceptors(pkgConfig, "action400", "interceptor-1", "interceptor-1", "interceptor-2");
    // Interceptors at class level
    verifyActionConfigInterceptors(pkgConfig, "action500", "interceptor-1");
    verifyActionConfigInterceptors(pkgConfig, "action600", "interceptor-1", "interceptor-2");
    verifyActionConfigInterceptors(pkgConfig, "action700", "interceptor-1", "interceptor-1", "interceptor-2");
    // multiple interceptor at class level
    verifyActionConfigInterceptors(pkgConfig, "action800", "interceptor-1", "interceptor-2");
    verifyActionConfigInterceptors(pkgConfig, "action900", "interceptor-1", "interceptor-1", "interceptor-2");
    /* org.apache.struts2.convention.actions */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions#struts-default#");
    assertNotNull(pkgConfig);
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    assertEquals(4, pkgConfig.getActionConfigs().size());
    verifyActionConfig(pkgConfig, "no-annotation", NoAnnotationAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "default-result-path", DefaultResultPathAction.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "skip", Skip.class, "execute", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "idx", org.apache.struts2.convention.actions.idx.Index.class, "execute", "org.apache.struts2.convention.actions.idx#struts-default#/idx");
    /* org.apache.struts2.convention.actions.transactions */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.transactions#struts-default#/transactions");
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    verifyActionConfig(pkgConfig, "trans1", TransNameAction.class, "trans1", pkgConfig.getName());
    verifyActionConfig(pkgConfig, "trans2", TransNameAction.class, "trans2", pkgConfig.getName());
    /* org.apache.struts2.convention.actions.exclude */
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.exclude#struts-default#/exclude");
    if (excludePackages != null && excludePackages.contains("org.apache.struts2.convention.actions.exclude")) {
        verifyMissingActionConfig(configuration, "exclude1", ExcludeAction.class, "run1", "org.apache.struts2.convention.actions.exclude#struts-default#/exclude");
    } else {
        verifyActionConfig(pkgConfig, "exclude1", ExcludeAction.class, "run1", pkgConfig.getName());
    }
    // test unknown handler automatic chaining
    pkgConfig = configuration.getPackageConfig("org.apache.struts2.convention.actions.chain#struts-default#/chain");
    checkSmiValue(pkgConfig, strutsDefault, isSmiInheritanceEnabled);
    ServletContext context = EasyMock.createNiceMock(ServletContext.class);
    EasyMock.replay(context);
    ObjectFactory workingFactory = configuration.getContainer().getInstance(ObjectFactory.class);
    ConventionUnknownHandler uh = new ConventionUnknownHandler(configuration, workingFactory, context, mockContainer, "struts-default", null, "-");
    ActionContext actionContext = ActionContext.of(Collections.emptyMap()).bind();
    Result result = uh.handleUnknownResult(actionContext, "foo", pkgConfig.getActionConfigs().get("foo"), "bar");
    assertNotNull(result);
    assertTrue(result instanceof ActionChainResult);
    ActionChainResult chainResult = (ActionChainResult) result;
    ActionChainResult chainResultToCompare = new ActionChainResult(null, "foo-bar", null);
    assertEquals(chainResultToCompare, chainResult);
}
Also used : DefaultFileManagerFactory(com.opensymphony.xwork2.util.fs.DefaultFileManagerFactory) ActionParamsMethodLevelAction(org.apache.struts2.convention.actions.params.ActionParamsMethodLevelAction) Configuration(com.opensymphony.xwork2.config.Configuration) DefaultConfiguration(com.opensymphony.xwork2.config.impl.DefaultConfiguration) ServletDispatcherResult(org.apache.struts2.result.ServletDispatcherResult) ActionLevelInterceptor3Action(org.apache.struts2.convention.actions.interceptor.ActionLevelInterceptor3Action) Actions(org.apache.struts2.convention.annotation.Actions) ChainedAction(org.apache.struts2.convention.actions.chain.ChainedAction) SingleActionNameAction2(org.apache.struts2.convention.actions.defaultinterceptor.SingleActionNameAction2) ServletDispatcherResult(org.apache.struts2.result.ServletDispatcherResult) DefaultFileManager(com.opensymphony.xwork2.util.fs.DefaultFileManager) ExcludeAction(org.apache.struts2.convention.actions.exclude.ExcludeAction) ExceptionsMethodLevelAction(org.apache.struts2.convention.actions.exception.ExceptionsMethodLevelAction) ActionLevelInterceptorAction(org.apache.struts2.convention.actions.interceptor.ActionLevelInterceptorAction) ActionLevelNamespaceAction(org.apache.struts2.convention.actions.namespace.ActionLevelNamespaceAction) ClassLevelParentPackageChildAction(org.apache.struts2.convention.actions.parentpackage.sub.ClassLevelParentPackageChildAction) ExcludeAction(org.apache.struts2.convention.actions.exclude.ExcludeAction) PackageLevelParentPackageChildAction(org.apache.struts2.convention.actions.parentpackage.sub.PackageLevelParentPackageChildAction) DefaultResultPathAction(org.apache.struts2.convention.actions.DefaultResultPathAction) ExceptionsMethodLevelAction(org.apache.struts2.convention.actions.exception.ExceptionsMethodLevelAction) ClassLevelNamespaceAction(org.apache.struts2.convention.actions.namespace.ClassLevelNamespaceAction) ChainedAction(org.apache.struts2.convention.actions.chain.ChainedAction) DontFindMeAction(org.apache.struts2.convention.dontfind.DontFindMeAction) PackageLevelAllowedMethodsChildAction(org.apache.struts2.convention.actions.allowedmethods.sub.PackageLevelAllowedMethodsChildAction) InterceptorsAction(org.apache.struts2.convention.actions.interceptor.InterceptorsAction) TransNameAction(org.apache.struts2.convention.actions.transactions.TransNameAction) ClassLevelAllowedMethodsAction(org.apache.struts2.convention.actions.allowedmethods.ClassLevelAllowedMethodsAction) PackageLevelAllowedMethodsAction(org.apache.struts2.convention.actions.allowedmethods.PackageLevelAllowedMethodsAction) ClassLevelResultPathAction(org.apache.struts2.convention.actions.resultpath.ClassLevelResultPathAction) ActionLevelInterceptorAction(org.apache.struts2.convention.actions.interceptor.ActionLevelInterceptorAction) ClassLevelParentPackageAction(org.apache.struts2.convention.actions.parentpackage.ClassLevelParentPackageAction) ActionLevelInterceptor3Action(org.apache.struts2.convention.actions.interceptor.ActionLevelInterceptor3Action) Action(org.apache.struts2.convention.annotation.Action) PackageLevelNamespaceAction(org.apache.struts2.convention.actions.namespace.PackageLevelNamespaceAction) NoAnnotationAction(org.apache.struts2.convention.actions.NoAnnotationAction) ExceptionsActionLevelAction(org.apache.struts2.convention.actions.exception.ExceptionsActionLevelAction) DefaultNamespaceAction(org.apache.struts2.convention.actions.namespace2.DefaultNamespaceAction) ActionLevelNamespacesAction(org.apache.struts2.convention.actions.namespace3.ActionLevelNamespacesAction) PackageLevelParentPackageAction(org.apache.struts2.convention.actions.parentpackage.PackageLevelParentPackageAction) PackageLevelResultPathAction(org.apache.struts2.convention.actions.resultpath.PackageLevelResultPathAction) ActionParamsMethodLevelAction(org.apache.struts2.convention.actions.params.ActionParamsMethodLevelAction) ActionLevelInterceptor2Action(org.apache.struts2.convention.actions.interceptor.ActionLevelInterceptor2Action) ActionAndPackageLevelNamespacesAction(org.apache.struts2.convention.actions.namespace4.ActionAndPackageLevelNamespacesAction) TransNameAction(org.apache.struts2.convention.actions.transactions.TransNameAction) ServletContext(javax.servlet.ServletContext) ActionLevelInterceptor2Action(org.apache.struts2.convention.actions.interceptor.ActionLevelInterceptor2Action) InterceptorsAction(org.apache.struts2.convention.actions.interceptor.InterceptorsAction) DefaultConfiguration(com.opensymphony.xwork2.config.impl.DefaultConfiguration) ExceptionsActionLevelAction(org.apache.struts2.convention.actions.exception.ExceptionsActionLevelAction) ActionLevelNamespaceAction(org.apache.struts2.convention.actions.namespace.ActionLevelNamespaceAction)

Example 9 with DefaultFileManager

use of com.opensymphony.xwork2.util.fs.DefaultFileManager in project struts by apache.

the class NotURLClassLoader method setUp.

@Override
protected void setUp() throws Exception {
    super.setUp();
    result = new EmbeddedJSPResult();
    request = EasyMock.createNiceMock(HttpServletRequest.class);
    response = new MockHttpServletResponse();
    context = new MockServletContext();
    config = new MockServletConfig(context);
    final Map params = new HashMap();
    HttpSession session = EasyMock.createNiceMock(HttpSession.class);
    EasyMock.replay(session);
    EasyMock.expect(request.getSession()).andReturn(session).anyTimes();
    EasyMock.expect(request.getParameterMap()).andReturn(params).anyTimes();
    EasyMock.expect(request.getParameter("username")).andAnswer(() -> ActionContext.getContext().getParameters().get("username").getValue());
    EasyMock.expect(request.getAttribute("something")).andReturn("somethingelse").anyTimes();
    EasyMock.replay(request);
    // mock value stack
    ValueStack valueStack = EasyMock.createNiceMock(ValueStack.class);
    EasyMock.expect(valueStack.getActionContext()).andReturn(ActionContext.getContext()).anyTimes();
    EasyMock.replay(valueStack);
    // mock converter
    XWorkConverter converter = new DummyConverter();
    DefaultFileManager fileManager = new DefaultFileManager();
    fileManager.setReloadingConfigs(false);
    // mock container
    Container container = EasyMock.createNiceMock(Container.class);
    EasyMock.expect(container.getInstance(XWorkConverter.class)).andReturn(converter).anyTimes();
    TextParser parser = new OgnlTextParser();
    EasyMock.expect(container.getInstance(TextParser.class)).andReturn(parser).anyTimes();
    EasyMock.expect(container.getInstanceNames(FileManager.class)).andReturn(new HashSet<>()).anyTimes();
    EasyMock.expect(container.getInstance(FileManager.class)).andReturn(fileManager).anyTimes();
    UrlHelper urlHelper = new DefaultUrlHelper();
    EasyMock.expect(container.getInstance(UrlHelper.class)).andReturn(urlHelper).anyTimes();
    FileManagerFactory fileManagerFactory = new DummyFileManagerFactory();
    EasyMock.expect(container.getInstance(FileManagerFactory.class)).andReturn(fileManagerFactory).anyTimes();
    EasyMock.replay(container);
    ActionContext.of(new HashMap<>()).withParameters(HttpParameters.create(params).build()).withServletRequest(request).withServletResponse(response).withServletContext(context).withContainer(container).withValueStack(valueStack).bind();
}
Also used : OgnlTextParser(com.opensymphony.xwork2.util.OgnlTextParser) FileManagerFactory(com.opensymphony.xwork2.FileManagerFactory) DefaultUrlHelper(org.apache.struts2.views.util.DefaultUrlHelper) UrlHelper(org.apache.struts2.views.util.UrlHelper) ValueStack(com.opensymphony.xwork2.util.ValueStack) TextParser(com.opensymphony.xwork2.util.TextParser) OgnlTextParser(com.opensymphony.xwork2.util.OgnlTextParser) HashMap(java.util.HashMap) HttpSession(javax.servlet.http.HttpSession) MockServletConfig(org.springframework.mock.web.MockServletConfig) MockServletContext(org.springframework.mock.web.MockServletContext) DefaultFileManager(com.opensymphony.xwork2.util.fs.DefaultFileManager) FileManager(com.opensymphony.xwork2.FileManager) HttpServletRequest(javax.servlet.http.HttpServletRequest) MockHttpServletRequest(org.springframework.mock.web.MockHttpServletRequest) Container(com.opensymphony.xwork2.inject.Container) DefaultFileManager(com.opensymphony.xwork2.util.fs.DefaultFileManager) XWorkConverter(com.opensymphony.xwork2.conversion.impl.XWorkConverter) DefaultUrlHelper(org.apache.struts2.views.util.DefaultUrlHelper) HashMap(java.util.HashMap) Map(java.util.Map) MockHttpServletResponse(org.springframework.mock.web.MockHttpServletResponse) HashSet(java.util.HashSet)

Example 10 with DefaultFileManager

use of com.opensymphony.xwork2.util.fs.DefaultFileManager in project struts by apache.

the class UrlUtilTest2 method testOpenWithJarProtocol.

public void testOpenWithJarProtocol() throws IOException {
    FileManager fileManager = new DefaultFileManager();
    URL url = ClassLoaderUtil.getResource("xwork-jar.jar", ClassLoaderUtil.class);
    URL jarUrl = new URL("jar", "", url.toExternalForm() + "!/");
    URL outputURL = fileManager.normalizeToFileProtocol(jarUrl);
    assertNotNull(outputURL);
    assertUrlCanBeOpened(outputURL);
}
Also used : DefaultFileManager(com.opensymphony.xwork2.util.fs.DefaultFileManager) FileManager(com.opensymphony.xwork2.FileManager) DefaultFileManager(com.opensymphony.xwork2.util.fs.DefaultFileManager) URL(java.net.URL)

Aggregations

DefaultFileManager (com.opensymphony.xwork2.util.fs.DefaultFileManager)8 FileManager (com.opensymphony.xwork2.FileManager)7 DefaultFileManagerFactory (com.opensymphony.xwork2.util.fs.DefaultFileManagerFactory)5 FileManagerFactory (com.opensymphony.xwork2.FileManagerFactory)3 DefaultConfiguration (com.opensymphony.xwork2.config.impl.DefaultConfiguration)3 ContainerProvider (com.opensymphony.xwork2.config.ContainerProvider)2 RuntimeConfiguration (com.opensymphony.xwork2.config.RuntimeConfiguration)2 ActionConfig (com.opensymphony.xwork2.config.entities.ActionConfig)2 InterceptorMapping (com.opensymphony.xwork2.config.entities.InterceptorMapping)2 File (java.io.File)2 URL (java.net.URL)2 ArrayList (java.util.ArrayList)2 HashSet (java.util.HashSet)2 StrutsXmlConfigurationProvider (org.apache.struts2.config.StrutsXmlConfigurationProvider)2 Mock (com.mockobjects.dynamic.Mock)1 ActionContext (com.opensymphony.xwork2.ActionContext)1 StubValueStack (com.opensymphony.xwork2.StubValueStack)1 Configuration (com.opensymphony.xwork2.config.Configuration)1 XWorkConverter (com.opensymphony.xwork2.conversion.impl.XWorkConverter)1 Container (com.opensymphony.xwork2.inject.Container)1