|
@@ -27,20 +27,18 @@ import org.apache.dolphinscheduler.remote.command.log.RemoveTaskLogResponseComma
|
|
|
import org.apache.dolphinscheduler.remote.command.log.RollViewLogResponseCommand;
|
|
|
import org.apache.dolphinscheduler.remote.command.log.ViewLogResponseCommand;
|
|
|
import org.apache.dolphinscheduler.remote.utils.Host;
|
|
|
+import org.apache.dolphinscheduler.service.factory.NettyRemotingClientFactory;
|
|
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
|
|
|
import org.junit.Assert;
|
|
|
import org.junit.Test;
|
|
|
-import org.junit.Test.None;
|
|
|
import org.junit.runner.RunWith;
|
|
|
+import org.mockito.MockedStatic;
|
|
|
import org.mockito.Mockito;
|
|
|
-import org.powermock.api.mockito.PowerMockito;
|
|
|
-import org.powermock.core.classloader.annotations.PrepareForTest;
|
|
|
-import org.powermock.modules.junit4.PowerMockRunner;
|
|
|
+import org.mockito.junit.MockitoJUnitRunner;
|
|
|
|
|
|
-@RunWith(PowerMockRunner.class)
|
|
|
-@PrepareForTest({LogClient.class, NetUtils.class, LoggerUtils.class, NettyRemotingClient.class})
|
|
|
+@RunWith(MockitoJUnitRunner.class)
|
|
|
public class LogClientTest {
|
|
|
|
|
|
@Test
|
|
@@ -49,14 +47,17 @@ public class LogClientTest {
|
|
|
int port = 1234;
|
|
|
String path = "/tmp/log";
|
|
|
|
|
|
- PowerMockito.mockStatic(NetUtils.class);
|
|
|
- PowerMockito.when(NetUtils.getHost()).thenReturn(localMachine);
|
|
|
- PowerMockito.mockStatic(LoggerUtils.class);
|
|
|
- PowerMockito.when(LoggerUtils.readWholeFileContent(Mockito.anyString())).thenReturn("application_xx_11");
|
|
|
-
|
|
|
- LogClient logClient = new LogClient();
|
|
|
- String log = logClient.viewLog(localMachine, port, path);
|
|
|
- Assert.assertNotNull(log);
|
|
|
+ try (
|
|
|
+ MockedStatic<NetUtils> mockedNetUtils = Mockito.mockStatic(NetUtils.class);
|
|
|
+ MockedStatic<LoggerUtils> mockedLoggerUtils = Mockito.mockStatic(LoggerUtils.class)) {
|
|
|
+ mockedNetUtils.when(NetUtils::getHost)
|
|
|
+ .thenReturn(localMachine);
|
|
|
+ mockedLoggerUtils.when(() -> LoggerUtils.readWholeFileContent(Mockito.anyString()))
|
|
|
+ .thenReturn("application_xx_11");
|
|
|
+ LogClient logClient = new LogClient();
|
|
|
+ String log = logClient.viewLog(localMachine, port, path);
|
|
|
+ Assert.assertNotNull(log);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Test
|
|
@@ -65,74 +66,93 @@ public class LogClientTest {
|
|
|
int port = 1234;
|
|
|
String path = "/tmp/log";
|
|
|
|
|
|
- PowerMockito.mockStatic(NetUtils.class);
|
|
|
- PowerMockito.when(NetUtils.getHost()).thenReturn(localMachine + "1");
|
|
|
-
|
|
|
- NettyRemotingClient remotingClient = PowerMockito.mock(NettyRemotingClient.class);
|
|
|
- PowerMockito.whenNew(NettyRemotingClient.class).withAnyArguments().thenReturn(remotingClient);
|
|
|
+ try (MockedStatic<NetUtils> mockedNetUtils = Mockito.mockStatic(NetUtils.class)) {
|
|
|
+ mockedNetUtils.when(NetUtils::getHost)
|
|
|
+ .thenReturn(localMachine + "1");
|
|
|
+ LogClient logClient = new LogClient();
|
|
|
+ String log = logClient.viewLog(localMachine, port, path);
|
|
|
+ Assert.assertNotNull(log);
|
|
|
+ }
|
|
|
|
|
|
Command command = new Command();
|
|
|
command.setBody(JSONUtils.toJsonString(new ViewLogResponseCommand("")).getBytes(StandardCharsets.UTF_8));
|
|
|
- PowerMockito.when(remotingClient.sendSync(Mockito.any(Host.class), Mockito.any(Command.class), Mockito.anyLong()))
|
|
|
- .thenReturn(command);
|
|
|
LogClient logClient = new LogClient();
|
|
|
String log = logClient.viewLog(localMachine, port, path);
|
|
|
Assert.assertNotNull(log);
|
|
|
}
|
|
|
|
|
|
- @Test(expected = None.class)
|
|
|
- public void testClose() throws Exception {
|
|
|
- NettyRemotingClient remotingClient = PowerMockito.mock(NettyRemotingClient.class);
|
|
|
- PowerMockito.whenNew(NettyRemotingClient.class).withAnyArguments().thenReturn(remotingClient);
|
|
|
- PowerMockito.doNothing().when(remotingClient).close();
|
|
|
-
|
|
|
- LogClient logClient = new LogClient();
|
|
|
- logClient.close();
|
|
|
+ @Test
|
|
|
+ public void testClose() {
|
|
|
+ try (
|
|
|
+ MockedStatic<NettyRemotingClientFactory> mockedNettyRemotingClientFactory =
|
|
|
+ Mockito.mockStatic(NettyRemotingClientFactory.class)) {
|
|
|
+ NettyRemotingClient remotingClient = Mockito.mock(NettyRemotingClient.class);
|
|
|
+ mockedNettyRemotingClientFactory.when(NettyRemotingClientFactory::buildNettyRemotingClient)
|
|
|
+ .thenReturn(remotingClient);
|
|
|
+ LogClient logClient = new LogClient();
|
|
|
+ logClient.close();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Test
|
|
|
public void testRollViewLog() throws Exception {
|
|
|
- NettyRemotingClient remotingClient = PowerMockito.mock(NettyRemotingClient.class);
|
|
|
- PowerMockito.whenNew(NettyRemotingClient.class).withAnyArguments().thenReturn(remotingClient);
|
|
|
-
|
|
|
- Command command = new Command();
|
|
|
- command.setBody(JSONUtils.toJsonByteArray(new RollViewLogResponseCommand("success")));
|
|
|
- PowerMockito.when(remotingClient.sendSync(Mockito.any(Host.class), Mockito.any(Command.class), Mockito.anyLong()))
|
|
|
- .thenReturn(command);
|
|
|
-
|
|
|
- LogClient logClient = new LogClient();
|
|
|
- String msg = logClient.rollViewLog("localhost", 1234, "/tmp/log", 0, 10);
|
|
|
- Assert.assertNotNull(msg);
|
|
|
+ try (
|
|
|
+ MockedStatic<NettyRemotingClientFactory> mockedNettyRemotingClientFactory =
|
|
|
+ Mockito.mockStatic(NettyRemotingClientFactory.class)) {
|
|
|
+ NettyRemotingClient remotingClient = Mockito.mock(NettyRemotingClient.class);
|
|
|
+ mockedNettyRemotingClientFactory.when(NettyRemotingClientFactory::buildNettyRemotingClient)
|
|
|
+ .thenReturn(remotingClient);
|
|
|
+ Command command = new Command();
|
|
|
+ command.setBody(JSONUtils.toJsonByteArray(new RollViewLogResponseCommand("success")));
|
|
|
+ Mockito.when(
|
|
|
+ remotingClient.sendSync(Mockito.any(Host.class), Mockito.any(Command.class), Mockito.anyLong()))
|
|
|
+ .thenReturn(command);
|
|
|
+
|
|
|
+ LogClient logClient = new LogClient();
|
|
|
+ String msg = logClient.rollViewLog("localhost", 1234, "/tmp/log", 0, 10);
|
|
|
+ Assert.assertNotNull(msg);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Test
|
|
|
public void testGetLogBytes() throws Exception {
|
|
|
- NettyRemotingClient remotingClient = PowerMockito.mock(NettyRemotingClient.class);
|
|
|
- PowerMockito.whenNew(NettyRemotingClient.class).withAnyArguments().thenReturn(remotingClient);
|
|
|
-
|
|
|
- Command command = new Command();
|
|
|
- command.setBody(JSONUtils.toJsonByteArray(new GetLogBytesResponseCommand("log".getBytes(StandardCharsets.UTF_8))));
|
|
|
- PowerMockito.when(remotingClient.sendSync(Mockito.any(Host.class), Mockito.any(Command.class), Mockito.anyLong()))
|
|
|
- .thenReturn(command);
|
|
|
-
|
|
|
- LogClient logClient = new LogClient();
|
|
|
- byte[] logBytes = logClient.getLogBytes("localhost", 1234, "/tmp/log");
|
|
|
- Assert.assertNotNull(logBytes);
|
|
|
+ try (
|
|
|
+ MockedStatic<NettyRemotingClientFactory> mockedNettyRemotingClientFactory =
|
|
|
+ Mockito.mockStatic(NettyRemotingClientFactory.class)) {
|
|
|
+ NettyRemotingClient remotingClient = Mockito.mock(NettyRemotingClient.class);
|
|
|
+ mockedNettyRemotingClientFactory.when(NettyRemotingClientFactory::buildNettyRemotingClient)
|
|
|
+ .thenReturn(remotingClient);
|
|
|
+ Command command = new Command();
|
|
|
+ command.setBody(
|
|
|
+ JSONUtils.toJsonByteArray(new GetLogBytesResponseCommand("log".getBytes(StandardCharsets.UTF_8))));
|
|
|
+ Mockito.when(
|
|
|
+ remotingClient.sendSync(Mockito.any(Host.class), Mockito.any(Command.class), Mockito.anyLong()))
|
|
|
+ .thenReturn(command);
|
|
|
+
|
|
|
+ LogClient logClient = new LogClient();
|
|
|
+ byte[] logBytes = logClient.getLogBytes("localhost", 1234, "/tmp/log");
|
|
|
+ Assert.assertNotNull(logBytes);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Test
|
|
|
public void testRemoveTaskLog() throws Exception {
|
|
|
- NettyRemotingClient remotingClient = PowerMockito.mock(NettyRemotingClient.class);
|
|
|
- PowerMockito.whenNew(NettyRemotingClient.class).withAnyArguments().thenReturn(remotingClient);
|
|
|
-
|
|
|
- Command command = new Command();
|
|
|
- command.setBody(JSONUtils.toJsonByteArray(new RemoveTaskLogResponseCommand(true)));
|
|
|
- PowerMockito.when(remotingClient.sendSync(Mockito.any(Host.class), Mockito.any(Command.class), Mockito.anyLong()))
|
|
|
- .thenReturn(command);
|
|
|
|
|
|
- LogClient logClient = new LogClient();
|
|
|
- Boolean status = logClient.removeTaskLog("localhost", 1234, "/log/path");
|
|
|
- Assert.assertTrue(status);
|
|
|
+ try (
|
|
|
+ MockedStatic<NettyRemotingClientFactory> mockedNettyRemotingClientFactory =
|
|
|
+ Mockito.mockStatic(NettyRemotingClientFactory.class)) {
|
|
|
+ NettyRemotingClient remotingClient = Mockito.mock(NettyRemotingClient.class);
|
|
|
+ mockedNettyRemotingClientFactory.when(NettyRemotingClientFactory::buildNettyRemotingClient)
|
|
|
+ .thenReturn(remotingClient);
|
|
|
+ Command command = new Command();
|
|
|
+ command.setBody(JSONUtils.toJsonByteArray(new RemoveTaskLogResponseCommand(true)));
|
|
|
+ Mockito.when(
|
|
|
+ remotingClient.sendSync(Mockito.any(Host.class), Mockito.any(Command.class), Mockito.anyLong()))
|
|
|
+ .thenReturn(command);
|
|
|
+
|
|
|
+ LogClient logClient = new LogClient();
|
|
|
+ Boolean status = logClient.removeTaskLog("localhost", 1234, "/log/path");
|
|
|
+ Assert.assertTrue(status);
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
}
|