blob: 13799b430142241ae550c3854fc6b0d2e0a0e2e9 [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.geode.management.internal.cli.commands;
import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThat;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
import org.apache.geode.distributed.internal.InternalConfigurationPersistenceService;
import org.apache.geode.distributed.internal.InternalLocator;
import org.apache.geode.internal.jndi.JNDIInvoker;
import org.apache.geode.logging.internal.log4j.api.LogService;
import org.apache.geode.management.internal.configuration.domain.Configuration;
import org.apache.geode.management.internal.configuration.utils.XmlUtils;
import org.apache.geode.test.dunit.IgnoredException;
import org.apache.geode.test.dunit.SerializableRunnableIF;
import org.apache.geode.test.dunit.rules.ClusterStartupRule;
import org.apache.geode.test.dunit.rules.MemberVM;
import org.apache.geode.test.junit.categories.GfshTest;
import org.apache.geode.test.junit.rules.GfshCommandRule;
import org.apache.geode.test.junit.rules.VMProvider;
@Category(GfshTest.class)
public class CreateJndiBindingCommandDUnitTest {
private static MemberVM locator, server1, server2;
@ClassRule
public static ClusterStartupRule cluster = new ClusterStartupRule();
@ClassRule
public static GfshCommandRule gfsh = new GfshCommandRule();
@BeforeClass
public static void before() throws Exception {
locator = cluster.startLocatorVM(0);
server1 = cluster.startServerVM(1, "group1", locator.getPort());
server2 = cluster.startServerVM(2, "group1", locator.getPort());
gfsh.connectAndVerify(locator);
}
@Test
public void testCreateJndiBinding() {
// assert that is no datasource
VMProvider.invokeInEveryMember(
() -> assertThat(JNDIInvoker.getNoOfAvailableDataSources()).isEqualTo(0), server1, server2);
// create the binding
gfsh.executeAndAssertThat(
"create jndi-binding --name=jndi1 --username=myuser --password=mypass --type=SIMPLE --connection-url=\"jdbc:derby:newDB;create=true\"")
.statusIsSuccess().tableHasColumnOnlyWithValues("Member", "server-1", "server-2");
// verify cluster config is updated
locator.invoke(() -> {
InternalLocator internalLocator = ClusterStartupRule.getLocator();
assertThat(internalLocator).isNotNull();
InternalConfigurationPersistenceService ccService =
internalLocator.getConfigurationPersistenceService();
Configuration configuration = ccService.getConfiguration("cluster");
String xmlContent = configuration.getCacheXmlContent();
Document document = XmlUtils.createDocumentFromXml(xmlContent);
NodeList jndiBindings = document.getElementsByTagName("jndi-binding");
assertThat(jndiBindings.getLength()).isEqualTo(1);
assertThat(xmlContent).contains("user-name=\"myuser\"");
assertThat(xmlContent).contains("password=\"mypass\"");
boolean found = false;
for (int i = 0; i < jndiBindings.getLength(); i++) {
Element eachBinding = (Element) jndiBindings.item(i);
if (eachBinding.getAttribute("jndi-name").equals("jndi1")) {
found = true;
break;
}
}
assertThat(found).isTrue();
});
// verify datasource exists
VMProvider.invokeInEveryMember(
() -> assertThat(JNDIInvoker.getNoOfAvailableDataSources()).isEqualTo(1), server1, server2);
// bounce server1
server1.stop(false);
server1 = cluster.startServerVM(1, locator.getPort());
// verify it has recreated the datasource from cluster config
server1.invoke(() -> {
assertThat(JNDIInvoker.getNoOfAvailableDataSources()).isEqualTo(1);
});
verifyThatNonExistentClassCausesGfshToError();
}
private void verifyThatNonExistentClassCausesGfshToError() {
SerializableRunnableIF IgnoreClassNotFound = () -> {
IgnoredException ex =
new IgnoredException("non_existent_class_name");
LogService.getLogger().info(ex.getAddMessage());
};
server1.invoke(IgnoreClassNotFound);
server2.invoke(IgnoreClassNotFound);
// create the binding
gfsh.executeAndAssertThat(
"create jndi-binding --name=jndiBad --username=myuser --password=mypass --type=SIMPLE --jdbc-driver-class=non_existent_class_name --connection-url=\"jdbc:derby:newDB;create=true\"")
.statusIsError();
}
}