Skip to content

Commit

Permalink
ARTEMIS-2869 JDBC XML conf can't use custom pwd codec
Browse files Browse the repository at this point in the history
  • Loading branch information
jbertram committed Aug 4, 2020
1 parent 19475d9 commit 1ae8069
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -346,12 +346,6 @@ public void parseMainConfig(final Element e, final Configuration config) throws
config.setHAPolicyConfiguration(new LiveOnlyPolicyConfiguration());
}

NodeList storeTypeNodes = e.getElementsByTagName("store");

if (storeTypeNodes.getLength() > 0) {
parseStoreConfiguration((Element) storeTypeNodes.item(0), config);
}

config.setResolveProtocols(getBoolean(e, "resolve-protocols", config.isResolveProtocols()));

config.setPersistenceEnabled(getBoolean(e, "persistence-enabled", config.isPersistenceEnabled()));
Expand Down Expand Up @@ -437,6 +431,12 @@ public void parseMainConfig(final Element e, final Configuration config) throws

config.setClusterUser(getString(e, "cluster-user", config.getClusterUser(), Validators.NO_CHECK));

NodeList storeTypeNodes = e.getElementsByTagName("store");

if (storeTypeNodes.getLength() > 0) {
parseStoreConfiguration((Element) storeTypeNodes.item(0), config);
}

NodeList interceptorNodes = e.getElementsByTagName("remoting-interceptors");

ArrayList<String> incomingInterceptorList = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* 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.activemq.artemis.core.config.impl;

import org.apache.activemq.artemis.core.config.Configuration;
import org.apache.activemq.artemis.core.config.FileDeploymentManager;
import org.apache.activemq.artemis.utils.SensitiveDataCodec;
import org.junit.Assert;
import org.junit.Test;

public class FileConfigurationDbEncryptedPassTest extends ConfigurationImplTest {


protected String getConfigurationName() {
return "ConfigurationTest-db-encrypted-pass-config.xml";
}

@Override
@Test
public void testDefaults() {
// empty
}

@Test
public void testJdbcPasswordWithCustomCodec() {
Assert.assertTrue(MySensitiveStringCodec.decoded);
}

@Override
protected Configuration createConfiguration() throws Exception {
FileConfiguration fc = new FileConfiguration();
FileDeploymentManager deploymentManager = new FileDeploymentManager(getConfigurationName());
deploymentManager.addDeployable(fc);
deploymentManager.readConfiguration();
return fc;
}

public static class MySensitiveStringCodec implements SensitiveDataCodec<String> {
public static boolean decoded = false;

@Override
public String decode(Object mask) throws Exception {
decoded = true;
return null;
}

@Override
public String encode(Object secret) throws Exception {
return null;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!--
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.
-->
<configuration
xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:activemq ../../../../activemq-server/src/main/resources/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core">

<password-codec>org.apache.activemq.artemis.core.config.impl.FileConfigurationDbEncryptedPassTest$MySensitiveStringCodec</password-codec>

<store>
<database-store>
<jdbc-driver-class-name>foo</jdbc-driver-class-name>
<jdbc-connection-url>foo</jdbc-connection-url>
<message-table-name>foo</message-table-name>
<bindings-table-name>foo</bindings-table-name>
<large-message-table-name>foo</large-message-table-name>
<page-store-table-name>foo</page-store-table-name>
<jdbc-password>ENC(foo)</jdbc-password>
</database-store>
</store>

</core>
</configuration>

0 comments on commit 1ae8069

Please sign in to comment.