Search in sources :

Example 1 with ListApplicationJson

use of com.enonic.xp.impl.server.rest.model.ListApplicationJson in project xp by enonic.

the class SseEntryPoint method subscribe.

@GET
@Path("events")
@Produces(MediaType.SERVER_SENT_EVENTS)
public void subscribe(@Context final SseEventSink sseEventSink) {
    final SseContextHolder ctx = contextHolder;
    if (ctx == null) {
        throw new IllegalStateException("No SSE context");
    }
    final OutboundSseEvent sseEvent = ctx.sse.newEventBuilder().name("list").id(UUID.randomUUID().toString()).mediaType(MediaType.APPLICATION_JSON_TYPE).data(ListApplicationJson.class, new ListApplicationJson(applicationService.getInstalledApplications().stream().map(application -> new ApplicationInfoJson(application, applicationService.isLocalApplication(application.getKey()))).collect(Collectors.toList()))).build();
    sseEventSink.send(sseEvent);
    ctx.broadcaster.register(sseEventSink);
}
Also used : ApplicationInfoJson(com.enonic.xp.impl.server.rest.model.ApplicationInfoJson) OutboundSseEvent(javax.ws.rs.sse.OutboundSseEvent) ListApplicationJson(com.enonic.xp.impl.server.rest.model.ListApplicationJson) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Example 2 with ListApplicationJson

use of com.enonic.xp.impl.server.rest.model.ListApplicationJson in project xp by enonic.

the class SseEntryPointTest method testSubscribe.

@Test
public void testSubscribe() {
    listener.setSse(sse);
    final SseEventSink eventSink = mock(SseEventSink.class);
    doNothing().when(broadcaster).register(eventSink);
    final Application application = mock(Application.class);
    when(application.getKey()).thenReturn(ApplicationKey.from("appKey"));
    when(application.getVersion()).thenReturn(Version.emptyVersion);
    final Applications applications = Applications.from(application);
    when(applicationService.getInstalledApplications()).thenReturn(applications);
    when(applicationService.isLocalApplication(any(ApplicationKey.class))).thenReturn(false);
    final ArgumentCaptor<ListApplicationJson> listApplicationCaptor = ArgumentCaptor.forClass(ListApplicationJson.class);
    listener.subscribe(eventSink);
    verify(broadcaster, times(1)).register(eventSink);
    verify(sse, times(1)).newEventBuilder();
    verify(eventBuilder).data(eq(ListApplicationJson.class), listApplicationCaptor.capture());
    verify(applicationService, times(1)).getInstalledApplications();
    verify(applicationService, times(1)).isLocalApplication(any(ApplicationKey.class));
    final List<ApplicationInfoJson> actualApplications = listApplicationCaptor.getValue().getApplications();
    assertNotNull(actualApplications);
    assertFalse(actualApplications.isEmpty());
    assertEquals("appKey", actualApplications.get(0).getKey());
    assertFalse(actualApplications.get(0).getLocal());
}
Also used : ApplicationInfoJson(com.enonic.xp.impl.server.rest.model.ApplicationInfoJson) ApplicationKey(com.enonic.xp.app.ApplicationKey) ListApplicationJson(com.enonic.xp.impl.server.rest.model.ListApplicationJson) Applications(com.enonic.xp.app.Applications) SseEventSink(javax.ws.rs.sse.SseEventSink) Application(com.enonic.xp.app.Application) Test(org.junit.jupiter.api.Test)

Aggregations

ApplicationInfoJson (com.enonic.xp.impl.server.rest.model.ApplicationInfoJson)2 ListApplicationJson (com.enonic.xp.impl.server.rest.model.ListApplicationJson)2 Application (com.enonic.xp.app.Application)1 ApplicationKey (com.enonic.xp.app.ApplicationKey)1 Applications (com.enonic.xp.app.Applications)1 GET (javax.ws.rs.GET)1 Path (javax.ws.rs.Path)1 Produces (javax.ws.rs.Produces)1 OutboundSseEvent (javax.ws.rs.sse.OutboundSseEvent)1 SseEventSink (javax.ws.rs.sse.SseEventSink)1 Test (org.junit.jupiter.api.Test)1