Skip to content

Commit

Permalink
[WFCORE-5279] All tests passing, init build complete
Browse files Browse the repository at this point in the history
Reorganized integration tests, readded security manager to module.xml
  • Loading branch information
jessicarod7 committed Oct 19, 2022
1 parent 81bcb93 commit 68b2c00
Show file tree
Hide file tree
Showing 18 changed files with 437 additions and 339 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<!-- TODO: Remove this module once key store and manager objects are implemented -->
<module name="org.wildfly.extension.elytron"/>
<module name="org.wildfly.security.elytron-web.undertow-server"/>
<module name="org.wildfly.security.manager"/>
<module name="org.wildfly.elytron-tls-dependency"/>
</dependencies>
</module>
4 changes: 4 additions & 0 deletions testsuite/integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@
<artifactId>wildfly-arquillian-protocol-jmx</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-core-test-runner</artifactId>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017 Red Hat, Inc.
* Copyright 2016 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,17 +14,24 @@
* limitations under the License.
*/

package org.wildfly.test.feature.pack.elytron.tls.subsystem.common;
package org.jboss.as.test.shared;

import org.jboss.dmr.ModelNode;
import static org.wildfly.common.Assert.checkNotNullParamWithNullPointerException;

/**
* Represents objects which are convertable to ModelNode instances.
* CLI helper methods.
*
* @author Josef Cacek
*/
public interface ModelNodeConvertable {

ModelNode toModelNode();
public class CliUtils {

/**
* Escapes given path String for CLI.
*
* @param path path string to escape (must be not-<code>null</code>)
* @return escaped path
*/
public static String escapePath(String path) {
return checkNotNullParamWithNullPointerException("path", path).replace("\\", "\\\\");
}
}

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 68b2c00

Please sign in to comment.