Search in sources :

Example 1 with EzyNioServerBootstrap

use of com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap in project ezyfox-server by youngmonkeys.

the class EzyNioServerBootstrapTest method test.

@Test
public void test() throws Exception {
    SSLContext sslContext = SSLContext.getDefault();
    EzyResponseApi responseApi = mock(EzyResponseApi.class);
    EzyStreamingApi streamingApi = mock(EzyStreamingApi.class);
    EzySocketStreamQueue streamQueue = new EzyBlockingSocketStreamQueue();
    EzyHandlerGroupManager handlerGroupManager = mock(EzyHandlerGroupManager.class);
    EzySessionTicketsQueue socketSessionTicketsQueue = new EzyBlockingSessionTicketsQueue();
    EzySessionTicketsQueue websocketSessionTicketsQueue = new EzyBlockingSessionTicketsQueue();
    EzySessionTicketsRequestQueues sessionTicketsRequestQueues = new EzySessionTicketsRequestQueues();
    EzySocketDisconnectionQueue socketDisconnectionQueue = new EzySocketDisconnectionQueue() {

        final BlockingQueue<EzySocketDisconnection> queue = new LinkedBlockingQueue<>();

        @Override
        public EzySocketDisconnection take() throws InterruptedException {
            return queue.take();
        }

        @Override
        public int size() {
            return 0;
        }

        @Override
        public void remove(EzySocketDisconnection disconnection) {
        }

        @Override
        public boolean isEmpty() {
            return false;
        }

        @Override
        public void clear() {
        }

        @Override
        public boolean add(EzySocketDisconnection disconnection) {
            return false;
        }
    };
    EzySimpleConfig config = new EzySimpleConfig();
    EzySimpleSettings settings = new EzySimpleSettings();
    EzySimpleStreamingSetting streaming = settings.getStreaming();
    streaming.setEnable(true);
    settings.getUdp().setActive(true);
    EzySimpleServer server = new EzySimpleServer();
    EzyServerControllers serverControllers = EzyServerControllersImpl.builder().build();
    server.setControllers(serverControllers);
    EzyEventControllersSetting eventControllersSetting = new EzySimpleEventControllersSetting();
    EzyEventControllers eventControllers = EzyEventControllersImpl.create(eventControllersSetting);
    server.setEventControllers(eventControllers);
    server.setConfig(config);
    server.setSettings(settings);
    EzySimpleServerContext serverContext = new EzySimpleServerContext();
    serverContext.setProperty(EzySocketUserRemovalQueue.class, new EzyBlockingSocketUserRemovalQueue());
    serverContext.setServer(server);
    serverContext.init();
    ExBootstrap localBootstrap = new ExBootstrap(new EzyBootstrap.Builder().context(serverContext));
    EzyNioServerBootstrap bootstrap = new EzyNioServerBootstrap();
    bootstrap.setContext(serverContext);
    bootstrap.setLocalBootstrap(localBootstrap);
    bootstrap.setSslContext(sslContext);
    bootstrap.setResponseApi(responseApi);
    bootstrap.setStreamingApi(streamingApi);
    bootstrap.setStreamQueue(streamQueue);
    bootstrap.setHandlerGroupManager(handlerGroupManager);
    bootstrap.setSocketSessionTicketsQueue(socketSessionTicketsQueue);
    bootstrap.setWebsocketSessionTicketsQueue(websocketSessionTicketsQueue);
    bootstrap.setSocketDisconnectionQueue(socketDisconnectionQueue);
    bootstrap.setSocketSessionTicketsRequestQueues(sessionTicketsRequestQueues);
    bootstrap.start();
    bootstrap.destroy();
    bootstrap.destroy();
}
Also used : EzyEventControllersSetting(com.tvd12.ezyfoxserver.setting.EzyEventControllersSetting) EzySimpleServerContext(com.tvd12.ezyfoxserver.context.EzySimpleServerContext) EzyStreamingApi(com.tvd12.ezyfoxserver.api.EzyStreamingApi) EzyResponseApi(com.tvd12.ezyfoxserver.api.EzyResponseApi) BlockingQueue(java.util.concurrent.BlockingQueue) LinkedBlockingQueue(java.util.concurrent.LinkedBlockingQueue) EzySimpleConfig(com.tvd12.ezyfoxserver.config.EzySimpleConfig) EzySimpleServer(com.tvd12.ezyfoxserver.EzySimpleServer) EzySimpleStreamingSetting(com.tvd12.ezyfoxserver.setting.EzySimpleStreamingSetting) EzyServerControllers(com.tvd12.ezyfoxserver.wrapper.EzyServerControllers) SSLContext(javax.net.ssl.SSLContext) EzySimpleSettings(com.tvd12.ezyfoxserver.setting.EzySimpleSettings) EzyEventControllers(com.tvd12.ezyfoxserver.wrapper.EzyEventControllers) EzyHandlerGroupManager(com.tvd12.ezyfoxserver.nio.wrapper.EzyHandlerGroupManager) EzyNioServerBootstrap(com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap) EzySimpleEventControllersSetting(com.tvd12.ezyfoxserver.setting.EzySimpleEventControllersSetting) Test(org.testng.annotations.Test) BaseTest(com.tvd12.test.base.BaseTest)

Example 2 with EzyNioServerBootstrap

use of com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap in project ezyfox-server by youngmonkeys.

the class EzyNioServerBootstrapTest method startStreamHandlingLoopHandlersNotActive.

@Test
public void startStreamHandlingLoopHandlersNotActive() {
    // given
    EzySimpleServer server = new EzySimpleServer();
    EzySimpleSettings settings = new EzySimpleSettings();
    settings.getStreaming().setEnable(false);
    server.setSettings(settings);
    EzyServerContext context = mock(EzyServerContext.class);
    when(context.getServer()).thenReturn(server);
    EzyNioServerBootstrap sut = new EzyNioServerBootstrap();
    sut.setContext(context);
    // when
    MethodUtil.invokeMethod("startStreamHandlingLoopHandlers", sut);
    // then
    Asserts.assertNull(FieldUtil.getFieldValue(sut, "streamHandlingLoopHandler"));
}
Also used : EzySimpleServer(com.tvd12.ezyfoxserver.EzySimpleServer) EzyServerContext(com.tvd12.ezyfoxserver.context.EzyServerContext) EzySimpleSettings(com.tvd12.ezyfoxserver.setting.EzySimpleSettings) EzyNioServerBootstrap(com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap) Test(org.testng.annotations.Test) BaseTest(com.tvd12.test.base.BaseTest)

Example 3 with EzyNioServerBootstrap

use of com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap in project ezyfox-server by youngmonkeys.

the class EzyNioServerBootstrapTest method destroySocketDataReceiver.

@Test
public void destroySocketDataReceiver() {
    // given
    EzySocketDataReceiver dataReceiver = mock(EzySocketDataReceiver.class);
    EzyNioServerBootstrap sut = new EzyNioServerBootstrap();
    sut.setSocketDataReceiver(dataReceiver);
    // when
    sut.destroy();
    // then
    verify(dataReceiver, times(1)).destroy();
}
Also used : EzySocketDataReceiver(com.tvd12.ezyfoxserver.nio.socket.EzySocketDataReceiver) EzyNioServerBootstrap(com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap) Test(org.testng.annotations.Test) BaseTest(com.tvd12.test.base.BaseTest)

Example 4 with EzyNioServerBootstrap

use of com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap in project ezyfox-server by youngmonkeys.

the class EzyNioServerBootstrapTest method startWebSocketServerBootstrapNotActive.

@Test
public void startWebSocketServerBootstrapNotActive() {
    // given
    EzySimpleServer server = new EzySimpleServer();
    EzySimpleSettings settings = new EzySimpleSettings();
    settings.getWebsocket().setActive(false);
    server.setSettings(settings);
    EzyServerContext context = mock(EzyServerContext.class);
    when(context.getServer()).thenReturn(server);
    EzyNioServerBootstrap sut = new EzyNioServerBootstrap();
    sut.setContext(context);
    // when
    MethodUtil.invokeMethod("startWebSocketServerBootstrap", sut);
    // then
    Asserts.assertNull(FieldUtil.getFieldValue(sut, "websocketServerBootstrap"));
}
Also used : EzySimpleServer(com.tvd12.ezyfoxserver.EzySimpleServer) EzyServerContext(com.tvd12.ezyfoxserver.context.EzyServerContext) EzySimpleSettings(com.tvd12.ezyfoxserver.setting.EzySimpleSettings) EzyNioServerBootstrap(com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap) Test(org.testng.annotations.Test) BaseTest(com.tvd12.test.base.BaseTest)

Example 5 with EzyNioServerBootstrap

use of com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap in project ezyfox-server by youngmonkeys.

the class EzyNioServerBootstrapTest method startUdpServerBootstrapNotActive.

@Test
public void startUdpServerBootstrapNotActive() {
    // given
    EzySimpleServer server = new EzySimpleServer();
    EzySimpleSettings settings = new EzySimpleSettings();
    settings.getUdp().setActive(false);
    server.setSettings(settings);
    EzyServerContext context = mock(EzyServerContext.class);
    when(context.getServer()).thenReturn(server);
    EzyNioServerBootstrap sut = new EzyNioServerBootstrap();
    sut.setContext(context);
    // when
    MethodUtil.invokeMethod("startUdpServerBootstrap", sut);
    // then
    Asserts.assertNull(FieldUtil.getFieldValue(sut, "udpServerBootstrap"));
    sut.destroy();
}
Also used : EzySimpleServer(com.tvd12.ezyfoxserver.EzySimpleServer) EzyServerContext(com.tvd12.ezyfoxserver.context.EzyServerContext) EzySimpleSettings(com.tvd12.ezyfoxserver.setting.EzySimpleSettings) EzyNioServerBootstrap(com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap) Test(org.testng.annotations.Test) BaseTest(com.tvd12.test.base.BaseTest)

Aggregations

EzyNioServerBootstrap (com.tvd12.ezyfoxserver.nio.EzyNioServerBootstrap)7 BaseTest (com.tvd12.test.base.BaseTest)6 Test (org.testng.annotations.Test)6 EzySimpleServer (com.tvd12.ezyfoxserver.EzySimpleServer)5 EzySimpleSettings (com.tvd12.ezyfoxserver.setting.EzySimpleSettings)5 EzyServerContext (com.tvd12.ezyfoxserver.context.EzyServerContext)4 EzyResponseApi (com.tvd12.ezyfoxserver.api.EzyResponseApi)2 EzyStreamingApi (com.tvd12.ezyfoxserver.api.EzyStreamingApi)2 EzySocketDataReceiver (com.tvd12.ezyfoxserver.nio.socket.EzySocketDataReceiver)2 EzyHandlerGroupManager (com.tvd12.ezyfoxserver.nio.wrapper.EzyHandlerGroupManager)2 EzyCodecFactory (com.tvd12.ezyfoxserver.codec.EzyCodecFactory)1 EzySimpleConfig (com.tvd12.ezyfoxserver.config.EzySimpleConfig)1 EzySimpleServerContext (com.tvd12.ezyfoxserver.context.EzySimpleServerContext)1 EzyHandlerGroupBuilderFactory (com.tvd12.ezyfoxserver.nio.factory.EzyHandlerGroupBuilderFactory)1 EzyEventControllersSetting (com.tvd12.ezyfoxserver.setting.EzyEventControllersSetting)1 EzySimpleEventControllersSetting (com.tvd12.ezyfoxserver.setting.EzySimpleEventControllersSetting)1 EzySimpleStreamingSetting (com.tvd12.ezyfoxserver.setting.EzySimpleStreamingSetting)1 EzyEventControllers (com.tvd12.ezyfoxserver.wrapper.EzyEventControllers)1 EzyServerControllers (com.tvd12.ezyfoxserver.wrapper.EzyServerControllers)1 BlockingQueue (java.util.concurrent.BlockingQueue)1