blob: 57e8dd20dbe8f614b1fdaefa2aba6e5f5a703c79 [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.functions;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import javax.naming.Context;
import org.junit.Before;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.mockito.ArgumentCaptor;
import org.apache.geode.cache.configuration.JndiBindingsType;
import org.apache.geode.cache.execute.FunctionContext;
import org.apache.geode.cache.execute.ResultSender;
import org.apache.geode.distributed.DistributedSystem;
import org.apache.geode.internal.datasource.ConfigProperty;
import org.apache.geode.internal.jndi.JNDIInvoker;
import org.apache.geode.internal.logging.LocalLogWriter;
import org.apache.geode.internal.util.DriverJarUtils;
import org.apache.geode.management.internal.cli.commands.CreateJndiBindingCommand;
import org.apache.geode.management.internal.functions.CliFunctionResult;
import org.apache.geode.test.junit.categories.GfshTest;
@Category({GfshTest.class})
public class CreateJndiBindingFunctionTest {
private CreateJndiBindingFunction createBindingFunction;
private FunctionContext<Object[]> context;
private ResultSender<Object> resultSender;
private ArgumentCaptor<CliFunctionResult> resultCaptor;
@Before
@SuppressWarnings({"unchecked", "deprecation"})
public void setup() {
createBindingFunction = spy(new CreateJndiBindingFunction());
context = mock(FunctionContext.class);
DistributedSystem distributedSystem = mock(DistributedSystem.class);
resultSender = mock(ResultSender.class);
resultCaptor = ArgumentCaptor.forClass(CliFunctionResult.class);
when(distributedSystem.getLogWriter()).thenReturn(new LocalLogWriter(Level.FINE.intValue()));
JNDIInvoker.mapTransactions(distributedSystem);
}
@Test
public void createJndiBindingIsSuccessful() throws Exception {
JndiBindingsType.JndiBinding config = new JndiBindingsType.JndiBinding();
config.setJndiName("jndi1");
config.setType(CreateJndiBindingCommand.DATASOURCE_TYPE.SIMPLE.getType());
config.setJdbcDriverClass("org.apache.derby.jdbc.EmbeddedDriver");
config.setConnectionUrl("jdbc:derby:newDB;create=true");
Object[] arguments = new Object[] {config, false};
when(context.getArguments()).thenReturn(arguments);
when(context.getMemberName()).thenReturn("mock-member");
when(context.getResultSender()).thenReturn(resultSender);
createBindingFunction.execute(context);
verify(resultSender).lastResult(resultCaptor.capture());
CliFunctionResult result = resultCaptor.getValue();
assertThat(result.isSuccessful()).isTrue();
assertThat(result.toString()).contains("jndi-binding");
Context ctx = JNDIInvoker.getJNDIContext();
Map<String, String> bindings = JNDIInvoker.getBindingNamesRecursively(ctx);
assertThat(bindings.keySet()).containsExactlyInAnyOrder("java:jndi1", "java:UserTransaction",
"java:TransactionManager");
}
@Test
public void createDataSourceIsSuccessful() throws Exception {
JndiBindingsType.JndiBinding config = new JndiBindingsType.JndiBinding();
final String NAME = "jndi1";
final String MEMBER = "mock-member";
config.setJndiName(NAME);
config.setType(CreateJndiBindingCommand.DATASOURCE_TYPE.SIMPLE.getType());
config.setJdbcDriverClass(null);
config.setConnectionUrl("jdbc:derby:newDB;create=true");
Object[] arguments = new Object[] {config, true};
when(context.getArguments()).thenReturn(arguments);
when(context.getMemberName()).thenReturn(MEMBER);
when(context.getResultSender()).thenReturn(resultSender);
createBindingFunction.execute(context);
verify(resultSender).lastResult(resultCaptor.capture());
CliFunctionResult result = resultCaptor.getValue();
assertThat(result.isSuccessful()).isTrue();
assertThat(result.toString())
.contains("Created data-source \"" + NAME + "\" on \"" + MEMBER + "\".");
Context ctx = JNDIInvoker.getJNDIContext();
Map<String, String> bindings = JNDIInvoker.getBindingNamesRecursively(ctx);
assertThat(bindings.keySet()).containsExactlyInAnyOrder("java:jndi1", "java:UserTransaction",
"java:TransactionManager");
}
@Test
public void createDataSourceIsSuccessfulWithJarSpecified() throws Exception {
DriverJarUtils driverJarUtils = mock(DriverJarUtils.class);
JndiBindingsType.JndiBinding config = spy(new JndiBindingsType.JndiBinding());
final String NAME = "jndi1";
final String MEMBER = "mock-member";
final String DRIVER_CLASS_NAME = "org.apache.derby.jdbc.EmbeddedDriver";
config.setJndiName(NAME);
config.setType(CreateJndiBindingCommand.DATASOURCE_TYPE.SIMPLE.getType());
config.setJdbcDriverClass(DRIVER_CLASS_NAME);
config.setConnectionUrl("jdbc:derby:newDB;create=true");
Object[] arguments = new Object[] {config, true};
when(context.getArguments()).thenReturn(arguments);
when(context.getMemberName()).thenReturn(MEMBER);
when(context.getResultSender()).thenReturn(resultSender);
doReturn(driverJarUtils).when(createBindingFunction).getDriverJarUtil();
createBindingFunction.execute(context);
verify(resultSender).lastResult(resultCaptor.capture());
CliFunctionResult result = resultCaptor.getValue();
assertThat(result.isSuccessful()).isTrue();
assertThat(result.toString())
.contains("Created data-source \"" + NAME + "\" on \"" + MEMBER + "\".");
verify(config).setJdbcDriverClass(DRIVER_CLASS_NAME);
Context ctx = JNDIInvoker.getJNDIContext();
Map<String, String> bindings = JNDIInvoker.getBindingNamesRecursively(ctx);
assertThat(bindings.keySet()).containsExactlyInAnyOrder("java:jndi1", "java:UserTransaction",
"java:TransactionManager");
}
@Test
public void convert() {
JndiBindingsType.JndiBinding.ConfigProperty propA =
new JndiBindingsType.JndiBinding.ConfigProperty("name", "type", "value");
List<ConfigProperty> converted =
CreateJndiBindingFunction.convert(Collections.singletonList(propA));
assertThat(converted).hasSize(1);
ConfigProperty propB = converted.get(0);
assertThat(propB.getName()).isEqualTo("name");
assertThat(propB.getType()).isEqualTo("type");
assertThat(propB.getValue()).isEqualTo("value");
}
}