Search in sources :

Example 6 with ProgressStatusEvent

use of org.glassfish.api.admin.progress.ProgressStatusEvent in project Payara by payara.

the class ProgressStatusEventTest method testEventCreateChild.

@Test
public void testEventCreateChild() throws IOException {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    writer.writeTo(EVENT_CREATE_CHILD, null, null, null, MediaType.APPLICATION_JSON_TYPE, null, baos);
    baos.close();
    ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
    ProgressStatusEvent event = reader.readFrom(bais, MediaType.APPLICATION_JSON);
    assertEquals(event, EVENT_CREATE_CHILD);
}
Also used : ProgressStatusEvent(org.glassfish.api.admin.progress.ProgressStatusEvent) ByteArrayInputStream(java.io.ByteArrayInputStream) ByteArrayOutputStream(java.io.ByteArrayOutputStream) Test(org.junit.Test)

Example 7 with ProgressStatusEvent

use of org.glassfish.api.admin.progress.ProgressStatusEvent in project Payara by payara.

the class ProgressStatusEventTest method testEventProgress.

@Test
public void testEventProgress() throws IOException {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    writer.writeTo(EVENT_PROGRESS, null, null, null, MediaType.APPLICATION_JSON_TYPE, null, baos);
    baos.close();
    ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
    ProgressStatusEvent event = reader.readFrom(bais, MediaType.APPLICATION_JSON);
    assertEquals(event, EVENT_PROGRESS);
}
Also used : ProgressStatusEvent(org.glassfish.api.admin.progress.ProgressStatusEvent) ByteArrayInputStream(java.io.ByteArrayInputStream) ByteArrayOutputStream(java.io.ByteArrayOutputStream) Test(org.junit.Test)

Aggregations

ProgressStatusEvent (org.glassfish.api.admin.progress.ProgressStatusEvent)7 ByteArrayInputStream (java.io.ByteArrayInputStream)4 ByteArrayOutputStream (java.io.ByteArrayOutputStream)4 Test (org.junit.Test)4 JsonToken (com.fasterxml.jackson.core.JsonToken)1 ProgressStatusClient (com.sun.enterprise.admin.progress.ProgressStatusClient)1 IOException (java.io.IOException)1 ProgressStatusBase (org.glassfish.api.admin.progress.ProgressStatusBase)1 ProgressStatusDTO (org.glassfish.api.admin.progress.ProgressStatusDTO)1 ProgressStatusEventComplete (org.glassfish.api.admin.progress.ProgressStatusEventComplete)1 ProgressStatusEventCreateChild (org.glassfish.api.admin.progress.ProgressStatusEventCreateChild)1 ProgressStatusEventProgress (org.glassfish.api.admin.progress.ProgressStatusEventProgress)1 ProgressStatusEventSet (org.glassfish.api.admin.progress.ProgressStatusEventSet)1