Search in sources :

Example 41 with Request

use of com.tvd12.ezyhttp.client.request.Request in project ezyfox-server by youngmonkeys.

the class EzySocketRequestHandlerTest method processRequestQueue0ExceptionCaseTest.

@Test
public void processRequestQueue0ExceptionCaseTest() {
    ExEzySocketRequestHandler handler = new ExEzySocketRequestHandler();
    EzySocketDataHandlerGroupFetcher dataHandlerGroupFetcher = mock(EzySocketDataHandlerGroupFetcher.class);
    when(dataHandlerGroupFetcher.getDataHandlerGroup(any(EzySession.class))).thenThrow(new IllegalArgumentException());
    EzySession session = spy(EzyAbstractSession.class);
    when(session.isActivated()).thenReturn(Boolean.TRUE);
    EzyRequestQueue requestQueue = new EzyNonBlockingRequestQueue();
    when(session.getExtensionRequestQueue()).thenReturn(requestQueue);
    EzyArray array = EzyEntityFactory.newArrayBuilder().append(10).build();
    EzySocketRequest request = new EzySimpleSocketRequest(session, array);
    EzySessionTicketsRequestQueues sessionTicketsRequestQueues = new EzySessionTicketsRequestQueues();
    handler.setSessionTicketsQueue(sessionTicketsRequestQueues.getExtensionQueue());
    sessionTicketsRequestQueues.addRequest(request);
    handler.setDataHandlerGroupFetcher(dataHandlerGroupFetcher);
    handler.handleEvent();
}
Also used : EzyArray(com.tvd12.ezyfox.entity.EzyArray) EzySession(com.tvd12.ezyfoxserver.entity.EzySession) Test(org.testng.annotations.Test)

Example 42 with Request

use of com.tvd12.ezyhttp.client.request.Request in project ezyfox-server by youngmonkeys.

the class HelloEmbeddedServer3 method main.

public static void main(String[] args) throws Exception {
    EzySimplePluginSetting pluginSetting = new EzyPluginSettingBuilder().name(// plugin name
    "hello").addListenEvent(// listen able events USER_LOGIN, USER_ADDED, USER_REMOVED
    EzyEventType.USER_LOGIN).configFile("config.properties").entryLoader(HelloPluginEntryLoader.class).priority(// set priority, bigger number is lower, default 0
    1).threadPoolSize(// set thread pool size to create executor service for this plugin, default 0
    3).build();
    EzySimpleAppSetting appSetting = new EzyAppSettingBuilder().name(// app's name
    "hello").configFile("config.properties").entryLoader(HelloAppEntryLoader.class).maxUsers(// set max user in this app, default 999999
    9999).threadPoolSize(// set thread pool size to create executor service for this app, default 0
    3).build();
    EzySimpleUserManagementSetting userManagementSetting = new EzyUserManagementSettingBuilder().allowChangeSession(// allow change user's session, default true
    true).allowGuestLogin(// allow guest login, default false
    true).guestNamePrefix(// set name prefix for guest
    "Guest#").maxSessionPerUser(// set number of max sessions per user // default 5
    5).userMaxIdleTimeInSecond(// set max idle time of an user, default 0
    15).userNamePattern(// set username pattern, default ^[a-z0-9_.]{3,36}$
    "^[a-z0-9_.]{3,36}$").build();
    EzySimpleZoneSetting zoneSetting = new EzyZoneSettingBuilder().name(// zone's name
    "hello").plugin(// add a plug-in to zone
    pluginSetting).application(// add an app to zone
    appSetting).configFile(// set config file
    "config.properties").maxUsers(// set maximum user for zone
    999999).userManagement(// set user management settings
    userManagementSetting).addEventController(EzyEventType.SERVER_READY, HelloZoneServerReadyController.class).build();
    EzySimpleSocketSetting socketSetting = new EzySocketSettingBuilder().active(// active or not,  default true
    true).address(// loopback address, default 0.0.0.0
    "0.0.0.0").codecCreator(// encoder/decoder creator, default MsgPackCodecCreator
    MsgPackCodecCreator.class).maxRequestSize(// max request size, default 32768
    1024).port(// port, default 3005
    3005).tcpNoDelay(// tcp no delay, default false
    true).writerThreadPoolSize(// thread pool size for socket writer, default 8
    8).build();
    EzySimpleWebSocketSetting webSocketSetting = new EzyWebSocketSettingBuilder().active(// active or not,  default true
    true).address(// loopback address, default 0.0.0.0
    "0.0.0.0").codecCreator(// encoder/decoder creator, default JacksonCodecCreator
    JacksonCodecCreator.class).maxFrameSize(// max frame size, default 32768
    32678).port(// port, default 3005
    2208).writerThreadPoolSize(// thread pool size for socket writer, default 8
    8).build();
    EzySimpleMaxRequestPerSecond maxRequestPerSecond = new EzyMaxRequestPerSecondBuilder().value(// max request in a second
    15).action(// action when get max
    EzyMaxRequestPerSecondAction.DROP_REQUEST).build();
    EzySimpleSessionManagementSetting sessionManagementSetting = new EzySessionManagementSettingBuilder().sessionMaxIdleTimeInSecond(// set max idle time for session, default 30s
    30).sessionMaxWaitingTimeInSecond(// set max waiting time to login for session, default 30s
    30).sessionMaxRequestPerSecond(// set max request in a session for a session
    maxRequestPerSecond).build();
    EzySimpleUdpSetting udpSetting = new EzyUdpSettingBuilder().active(// active or not
    true).address(// set loopback IP
    "0.0.0.0").channelPoolSize(// set number of udp channel for socket writing, default 16
    16).codecCreator(// encoder/decoder creator, default MsgPackCodecCreator
    MsgPackCodecCreator.class).handlerThreadPoolSize(// set number of handler's thread, default 5
    5).maxRequestSize(// set max request's size
    1024).port(// set listen port
    2611).build();
    EzySimpleSettings settings = new EzySettingsBuilder().debug(// allow debug to print log or not, default false
    true).nodeName(// for convenient
    "hello").zone(// add a zone to server
    zoneSetting).socket(// set socket setting
    socketSetting).websocket(// set websocket setting
    webSocketSetting).udp(// set udp setting
    udpSetting).sessionManagement(// set session management setting
    sessionManagementSetting).addEventController(EzyEventType.SERVER_INITIALIZING, HelloServerInitializingReadyController.class).build();
    EzyEmbeddedServer server = EzyEmbeddedServer.builder().settings(settings).build();
    server.start();
}
Also used : EzySimpleMaxRequestPerSecond(com.tvd12.ezyfoxserver.setting.EzySimpleSessionManagementSetting.EzySimpleMaxRequestPerSecond) MsgPackCodecCreator(com.tvd12.ezyfox.codec.MsgPackCodecCreator) EzyMaxRequestPerSecondBuilder(com.tvd12.ezyfoxserver.setting.EzySessionManagementSettingBuilder.EzyMaxRequestPerSecondBuilder) EzyEmbeddedServer(com.tvd12.ezyfoxserver.embedded.EzyEmbeddedServer)

Example 43 with Request

use of com.tvd12.ezyhttp.client.request.Request in project ezyfox-server by youngmonkeys.

the class HelloController2 method greet.

@EzyDoHandle("Hello")
public void greet(@EzyRequestData GreetRequest request, EzyUser user, EzySession session, Integer nothing) {
    GreetResponse response = new GreetResponse("Hello " + request.getWho() + "!");
    System.out.println("HelloController::Big/Hello response: " + response);
}
Also used : GreetResponse(com.tvd12.ezyfoxserver.support.test.data.GreetResponse) EzyDoHandle(com.tvd12.ezyfox.core.annotation.EzyDoHandle)

Example 44 with Request

use of com.tvd12.ezyhttp.client.request.Request in project ezyfox-server by youngmonkeys.

the class HelloController2 method greet.

@EzyDoHandle("Hello")
public void greet(GreetRequest request, EzyUser user, EzySession session) {
    GreetResponse response = new GreetResponse("Hello " + request.getWho() + "!");
    System.out.println("HelloController::Big/Hello response: " + response);
}
Also used : GreetResponse(com.tvd12.ezyfoxserver.support.test.data.GreetResponse) EzyDoHandle(com.tvd12.ezyfox.core.annotation.EzyDoHandle)

Example 45 with Request

use of com.tvd12.ezyhttp.client.request.Request in project ezyfox-server by youngmonkeys.

the class EzySimpleSocketRequestTest method test.

@Test
public void test() {
    EzyAbstractSession session = spy(EzyAbstractSession.class);
    EzyArray data = EzyEntityFactory.newArrayBuilder().append(EzyCommand.APP_ACCESS.getId()).build();
    EzySimpleSocketRequest request = new EzySimpleSocketRequest(session, data);
    assert request.isSystemRequest();
}
Also used : EzyAbstractSession(com.tvd12.ezyfoxserver.entity.EzyAbstractSession) EzyArray(com.tvd12.ezyfox.entity.EzyArray) EzySimpleSocketRequest(com.tvd12.ezyfoxserver.socket.EzySimpleSocketRequest) BaseTest(com.tvd12.test.base.BaseTest) Test(org.testng.annotations.Test)

Aggregations

Test (org.testng.annotations.Test)128 HttpServletResponse (javax.servlet.http.HttpServletResponse)48 HttpServletRequest (javax.servlet.http.HttpServletRequest)45 EzySession (com.tvd12.ezyfoxserver.entity.EzySession)37 BeforeTest (org.testng.annotations.BeforeTest)36 BaseTest (com.tvd12.test.base.BaseTest)31 EzyArray (com.tvd12.ezyfox.entity.EzyArray)30 ComponentManager (com.tvd12.ezyhttp.server.core.manager.ComponentManager)29 BlockingServlet (com.tvd12.ezyhttp.server.core.servlet.BlockingServlet)29 ToString (lombok.ToString)29 RequestURI (com.tvd12.ezyhttp.server.core.request.RequestURI)27 ServletOutputStream (javax.servlet.ServletOutputStream)25 EzyServerContext (com.tvd12.ezyfoxserver.context.EzyServerContext)24 RequestHandlerManager (com.tvd12.ezyhttp.server.core.manager.RequestHandlerManager)24 Cookie (javax.servlet.http.Cookie)24 HttpClientProxy (com.tvd12.ezyhttp.client.HttpClientProxy)22 RequestCookie (com.tvd12.ezyhttp.server.core.annotation.RequestCookie)22 EzyZoneContext (com.tvd12.ezyfoxserver.context.EzyZoneContext)21 HttpClient (com.tvd12.ezyhttp.client.HttpClient)21 PostRequest (com.tvd12.ezyhttp.client.request.PostRequest)21