NO-JIRA Fix console mutual ssl smoke test

This commit is contained in:
Domenico Francesco Bruscino 2021-10-27 23:07:44 +02:00 committed by Bruscino Domenico Francesco
parent 14d20759e0
commit c54f335f62
2 changed files with 15 additions and 43 deletions

View File

@ -259,6 +259,21 @@
<noWeb>false</noWeb>
<instance>${basedir}/target/console-mutual-ssl</instance>
<configuration>${basedir}/target/classes/servers/console-mutual-ssl</configuration>
<args>
<arg>--http-host</arg>
<arg>localhost</arg>
<arg>--http-port</arg>
<arg>8443</arg>
<arg>--ssl-key</arg>
<arg>../../test-classes/server-keystore.p12</arg>
<arg>--ssl-key-password</arg>
<arg>securepass</arg>
<arg>--use-client-auth</arg>
<arg>--ssl-trust</arg>
<arg>../../test-classes/client-ca-truststore.p12</arg>
<arg>--ssl-trust-password</arg>
<arg>securepass</arg>
</args>
</configuration>
</execution>
<execution>

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
~ 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.
-->
<broker xmlns="http://activemq.org/schema">
<jaas-security domain="activemq"/>
<!-- artemis.URI.instance is parsed from artemis.instance by the CLI startup.
This is to avoid situations where you could have spaces or special characters on this URI -->
<server configuration="file:/home/dbruscin/Workspace/temp/apache-artemis-2.19.0/broker-guest/etc//broker.xml"/>
<!-- The web server is only bound to localhost by default -->
<web bind="https://localhost:8443"
path="web"
keyStorePath="../../test-classes/server-keystore.p12"
keyStorePassword="securepass"
clientAuth="true"
trustStorePath="../../test-classes/client-ca-truststore.p12"
trustStorePassword="securepass">
<app url="activemq-branding" war="activemq-branding.war"/>
<app url="artemis-plugin" war="artemis-plugin.war"/>
<app url="console" war="console.war"/>
</web>
</broker>