use of com.tvd12.ezyfoxserver.command.impl.EzyPluginHandleExceptionImpl in project ezyfox-server by youngmonkeys.
the class EzyPluginHandleExceptionImplTest method handleExceptionWithHandlers.
@Test
public void handleExceptionWithHandlers() {
// given
EzySimplePlugin plugin = new EzySimplePlugin();
EzySimplePluginSetting setting = new EzySimplePluginSetting();
String pluginName = RandomUtil.randomShortAlphabetString();
setting.setName(pluginName);
plugin.setSetting(setting);
EzyPluginHandleExceptionImpl sut = new EzyPluginHandleExceptionImpl(plugin);
Logger logger = mock(Logger.class);
FieldUtil.setFieldValue(sut, "logger", logger);
EzyExceptionHandler exceptionHandler = mock(EzyExceptionHandler.class);
plugin.getExceptionHandlers().addExceptionHandler(exceptionHandler);
// when
Exception exception = new IllegalArgumentException("one");
sut.handle(Thread.currentThread(), exception);
// then
verify(exceptionHandler, times(1)).handleException(Thread.currentThread(), exception);
verify(logger, times(0)).info("plugin: {} has no handler for exception:", pluginName, exception);
}
use of com.tvd12.ezyfoxserver.command.impl.EzyPluginHandleExceptionImpl in project ezyfox-server by youngmonkeys.
the class EzyPluginHandleExceptionImplTest method handleExceptionWithHandlersButException.
@Test
public void handleExceptionWithHandlersButException() {
// given
EzySimplePlugin plugin = new EzySimplePlugin();
EzySimplePluginSetting setting = new EzySimplePluginSetting();
String pluginName = RandomUtil.randomShortAlphabetString();
setting.setName(pluginName);
plugin.setSetting(setting);
EzyPluginHandleExceptionImpl sut = new EzyPluginHandleExceptionImpl(plugin);
Logger logger = mock(Logger.class);
FieldUtil.setFieldValue(sut, "logger", logger);
Exception exception = new IllegalArgumentException("one");
EzyExceptionHandler exceptionHandler = mock(EzyExceptionHandler.class);
RuntimeException ex = new RuntimeException("just test");
doThrow(ex).when(exceptionHandler).handleException(Thread.currentThread(), exception);
plugin.getExceptionHandlers().addExceptionHandler(exceptionHandler);
// when
sut.handle(Thread.currentThread(), exception);
// then
verify(exceptionHandler, times(1)).handleException(Thread.currentThread(), exception);
verify(logger, times(1)).warn("handle exception: {} on plugin: {} error", EzyStrings.exceptionToSimpleString(exception), pluginName, ex);
}
use of com.tvd12.ezyfoxserver.command.impl.EzyPluginHandleExceptionImpl in project ezyfox-server by youngmonkeys.
the class EzyPluginHandleExceptionImplTest method handleExceptionWithEmptyHandlers.
@Test
public void handleExceptionWithEmptyHandlers() {
// given
EzySimplePlugin plugin = new EzySimplePlugin();
EzySimplePluginSetting setting = new EzySimplePluginSetting();
String pluginName = RandomUtil.randomShortAlphabetString();
setting.setName(pluginName);
plugin.setSetting(setting);
EzyPluginHandleExceptionImpl sut = new EzyPluginHandleExceptionImpl(plugin);
Logger logger = mock(Logger.class);
FieldUtil.setFieldValue(sut, "logger", logger);
// when
Exception exception = new IllegalArgumentException("one");
sut.handle(Thread.currentThread(), exception);
// then
verify(logger, times(1)).info("plugin: {} has no handler for exception:", pluginName, exception);
}
use of com.tvd12.ezyfoxserver.command.impl.EzyPluginHandleExceptionImpl in project ezyfox-server by youngmonkeys.
the class EzySimplePluginContext method doInit.
@Override
protected void doInit() {
EzySetup setup = new EzyPluginSetupImpl(plugin);
this.sendResponse = new EzyPluginSendResponseImpl(this);
this.properties.put(EzyPluginSendResponse.class, sendResponse);
this.properties.put(EzyHandleException.class, new EzyPluginHandleExceptionImpl(plugin));
this.properties.put(EzySetup.class, setup);
this.properties.put(EzyPluginSetup.class, setup);
}
Aggregations