Search in sources :

Example 16 with ExpirationType

use of org.apache.cxf.ws.eventing.ExpirationType in project cxf by apache.

the class NotificationTest method withFilter.

/**
 * We request only to receive notifications about fires in Canada
 * and there will be a fire in Canada. We should receive
 * this notification.
 */
@Test
public void withFilter() throws IOException {
    NotificatorService service = createNotificatorService();
    Subscribe subscribe = new Subscribe();
    ExpirationType exp = new ExpirationType();
    exp.setValue(DurationAndDateUtil.convertToXMLString(DurationAndDateUtil.parseDurationOrTimestamp("PT0S")));
    subscribe.setExpires(exp);
    EndpointReferenceType eventSinkERT = new EndpointReferenceType();
    AttributedURIType eventSinkAddr = new AttributedURIType();
    String url = TestUtil.generateRandomURLWithHttpTransport(NOTIFICATION_TEST_PORT);
    eventSinkAddr.setValue(url);
    eventSinkERT.setAddress(eventSinkAddr);
    subscribe.setDelivery(new DeliveryType());
    subscribe.getDelivery().getContent().add(new ObjectFactory().createNotifyTo(eventSinkERT));
    subscribe.setFilter(new FilterType());
    subscribe.getFilter().getContent().add("//*[local-name()='fire' and " + "namespace-uri()='http://www.events.com']/location[text()='Canada']");
    eventSourceClient.subscribeOp(subscribe);
    Server eventSinkServer = createEventSink(url);
    TestingEventSinkImpl.RECEIVED_FIRES.set(0);
    service.start();
    Emitter emitter = new EmitterImpl(service);
    emitter.dispatch(new FireEvent("Canada", 8));
    for (int i = 0; i < 10; i++) {
        if (TestingEventSinkImpl.RECEIVED_FIRES.get() == 1) {
            break;
        }
        try {
            Thread.sleep(1000);
        } catch (InterruptedException ex) {
            ex.printStackTrace();
        }
    }
    eventSinkServer.stop();
    if (TestingEventSinkImpl.RECEIVED_FIRES.get() != 1) {
        Assert.fail("TestingEventSinkImpl should have received 1 events but received " + TestingEventSinkImpl.RECEIVED_FIRES.get());
    }
}
Also used : Emitter(org.apache.cxf.ws.eventing.backend.notification.emitters.Emitter) EndpointReferenceType(org.apache.cxf.ws.addressing.EndpointReferenceType) Server(org.apache.cxf.endpoint.Server) NotificatorService(org.apache.cxf.ws.eventing.backend.notification.NotificatorService) AttributedURIType(org.apache.cxf.ws.addressing.AttributedURIType) Subscribe(org.apache.cxf.ws.eventing.Subscribe) FireEvent(org.apache.cxf.ws.eventing.integration.notificationapi.FireEvent) FilterType(org.apache.cxf.ws.eventing.FilterType) ObjectFactory(org.apache.cxf.ws.eventing.ObjectFactory) EmitterImpl(org.apache.cxf.ws.eventing.backend.notification.emitters.EmitterImpl) ExpirationType(org.apache.cxf.ws.eventing.ExpirationType) DeliveryType(org.apache.cxf.ws.eventing.DeliveryType) SimpleEventingIntegrationTest(org.apache.cxf.ws.eventing.base.SimpleEventingIntegrationTest) Test(org.junit.Test)

Example 17 with ExpirationType

use of org.apache.cxf.ws.eventing.ExpirationType in project cxf by apache.

the class SubscriptionGrantingTest method testExpirationGrantingWithoutBestEffort.

/*    */
/**
 * specification:
 * The expiration time MAY be either a specific time or a duration but MUST
 * be of the same type as the wse:Expires element of the corresponding request.
 * If the corresponding request did not contain a wse:Expires element, this
 * element MUST be a duration (xs:duration).
 *
 * @throws IOException
 */
@Test
public void testExpirationGrantingWithoutBestEffort() throws IOException {
    // we specify a xs:duration
    Subscribe subscribe = new Subscribe();
    ExpirationType exp = new ExpirationType();
    exp.setValue(DurationAndDateUtil.convertToXMLString(DurationAndDateUtil.parseDurationOrTimestamp("PT0S")));
    subscribe.setExpires(exp);
    DeliveryType delivery = new DeliveryType();
    subscribe.setDelivery(delivery);
    subscribe.getDelivery().getContent().add(createDummyNotifyTo());
    SubscribeResponse resp = eventSourceClient.subscribeOp(subscribe);
    Assert.assertTrue("Specification requires that EventSource return a xs:duration " + "expirationType if a xs:duration was requested by client", DurationAndDateUtil.isDuration(resp.getGrantedExpires().getValue()));
    // we specify a xs:dateTime
    subscribe = new Subscribe();
    exp = new ExpirationType();
    XMLGregorianCalendar dateRequest = (XMLGregorianCalendar) DurationAndDateUtil.parseDurationOrTimestamp("2138-06-26T12:23:12.000-01:00");
    exp.setValue(DurationAndDateUtil.convertToXMLString(dateRequest));
    subscribe.setExpires(exp);
    delivery = new DeliveryType();
    subscribe.setDelivery(delivery);
    subscribe.getDelivery().getContent().add(createDummyNotifyTo());
    resp = eventSourceClient.subscribeOp(subscribe);
    Assert.assertTrue("Specification requires that EventSource return a " + "xs:dateTime expirationType if a xs:dateTime was requested by client", DurationAndDateUtil.isXMLGregorianCalendar(resp.getGrantedExpires().getValue()));
    XMLGregorianCalendar returned = DurationAndDateUtil.parseXMLGregorianCalendar(resp.getGrantedExpires().getValue());
    System.out.println("granted expiration: " + returned.normalize().toXMLFormat());
    System.out.println("requested expiration: " + dateRequest.normalize().toXMLFormat());
    Assert.assertTrue("Server should have returned exactly the same date as we requested", returned.equals(dateRequest));
    // we don't specify anything
    subscribe = new Subscribe();
    delivery = new DeliveryType();
    subscribe.setDelivery(delivery);
    subscribe.getDelivery().getContent().add(createDummyNotifyTo());
    resp = eventSourceClient.subscribeOp(subscribe);
    Assert.assertTrue("Specification requires that EventSource return a xs:duration " + "expirationType if no specific expirationType was requested by client", DurationAndDateUtil.isDuration(resp.getGrantedExpires().getValue()));
}
Also used : XMLGregorianCalendar(javax.xml.datatype.XMLGregorianCalendar) ExpirationType(org.apache.cxf.ws.eventing.ExpirationType) Subscribe(org.apache.cxf.ws.eventing.Subscribe) SubscribeResponse(org.apache.cxf.ws.eventing.SubscribeResponse) DeliveryType(org.apache.cxf.ws.eventing.DeliveryType) Test(org.junit.Test) SimpleEventingIntegrationTest(org.apache.cxf.ws.eventing.base.SimpleEventingIntegrationTest)

Example 18 with ExpirationType

use of org.apache.cxf.ws.eventing.ExpirationType in project cxf by apache.

the class SubscriptionGrantingTest method cannotProcessFilter.

@Test
public void cannotProcessFilter() throws IOException {
    Subscribe subscribe = new Subscribe();
    ExpirationType exp = new ExpirationType();
    DeliveryType delivery = new DeliveryType();
    XMLGregorianCalendar dateRequest = (XMLGregorianCalendar) DurationAndDateUtil.parseDurationOrTimestamp("2138-06-26T12:23:12.000-01:00");
    exp.setValue(DurationAndDateUtil.convertToXMLString(dateRequest));
    exp.setBestEffort(true);
    subscribe.setExpires(exp);
    subscribe.setDelivery(delivery);
    subscribe.getDelivery().getContent().add(createDummyNotifyTo());
    subscribe.setFilter(new FilterType());
    subscribe.getFilter().getContent().add("@^5this-is-not-a-valid-xpath-expression!!!*-/");
    try {
        eventSourceClient.subscribeOp(subscribe);
    } catch (SOAPFaultException ex) {
        Assert.assertTrue(ex.getFault().getFaultCode().contains(CannotProcessFilter.LOCAL_PART));
        Assert.assertTrue(ex.getFault().getTextContent().contains(CannotProcessFilter.REASON));
        return;
    }
    Assert.fail("Event source should have sent a CannotProcessFilter fault");
}
Also used : XMLGregorianCalendar(javax.xml.datatype.XMLGregorianCalendar) FilterType(org.apache.cxf.ws.eventing.FilterType) ExpirationType(org.apache.cxf.ws.eventing.ExpirationType) SOAPFaultException(javax.xml.ws.soap.SOAPFaultException) Subscribe(org.apache.cxf.ws.eventing.Subscribe) DeliveryType(org.apache.cxf.ws.eventing.DeliveryType) Test(org.junit.Test) SimpleEventingIntegrationTest(org.apache.cxf.ws.eventing.base.SimpleEventingIntegrationTest)

Example 19 with ExpirationType

use of org.apache.cxf.ws.eventing.ExpirationType in project cxf by apache.

the class SubscriptionManagementTest method renewWithDateTime.

/**
 * Tests the Renew operation, while specifying an xs:dateTime in the renew request,
 * eg. the subscriber requests to set the subscription expiration to a specific date/time.
 */
@Test
public void renewWithDateTime() throws IOException {
    Subscribe subscribe = new Subscribe();
    ExpirationType exp = new ExpirationType();
    exp.setValue(DurationAndDateUtil.convertToXMLString(DurationAndDateUtil.parseDurationOrTimestamp(// 5 minutes
    "2018-10-21T14:52:46.826+02:00")));
    subscribe.setExpires(exp);
    DeliveryType delivery = new DeliveryType();
    subscribe.setDelivery(delivery);
    subscribe.getDelivery().getContent().add(createDummyNotifyTo());
    SubscribeResponse resp = eventSourceClient.subscribeOp(subscribe);
    SubscriptionManagerEndpoint client = createSubscriptionManagerClient(resp.getSubscriptionManager().getReferenceParameters());
    GetStatusResponse response = client.getStatusOp(new GetStatus());
    String expirationBefore = response.getGrantedExpires().getValue();
    System.out.println("EXPIRES before renew: " + expirationBefore);
    Assert.assertTrue(expirationBefore.length() > 0);
    Renew renewRequest = new Renew();
    ExpirationType renewExp = new ExpirationType();
    renewExp.setValue(DurationAndDateUtil.convertToXMLString(DurationAndDateUtil.parseDurationOrTimestamp(// 10 minutes
    "2056-10-21T14:54:46.826+02:00")));
    renewRequest.setExpires(renewExp);
    client.renewOp(renewRequest);
    response = client.getStatusOp(new GetStatus());
    String expirationAfter = response.getGrantedExpires().getValue();
    System.out.println("EXPIRES after renew: " + expirationAfter);
    Assert.assertFalse("Renew request should change the expiration time at least a bit", expirationAfter.equals(expirationBefore));
}
Also used : GetStatusResponse(org.apache.cxf.ws.eventing.GetStatusResponse) ExpirationType(org.apache.cxf.ws.eventing.ExpirationType) SubscriptionManagerEndpoint(org.apache.cxf.ws.eventing.manager.SubscriptionManagerEndpoint) Subscribe(org.apache.cxf.ws.eventing.Subscribe) SubscribeResponse(org.apache.cxf.ws.eventing.SubscribeResponse) Renew(org.apache.cxf.ws.eventing.Renew) DeliveryType(org.apache.cxf.ws.eventing.DeliveryType) GetStatus(org.apache.cxf.ws.eventing.GetStatus) Test(org.junit.Test) SimpleEventingIntegrationTest(org.apache.cxf.ws.eventing.base.SimpleEventingIntegrationTest)

Example 20 with ExpirationType

use of org.apache.cxf.ws.eventing.ExpirationType in project cxf by apache.

the class SubscriptionManagementTest method renewWithDuration.

/**
 * Tests the Renew operation, while specifying an xs:duration in the renew request,
 * eg. the subscriber requests to prolong the subscription by a specific amount of time.
 */
@Test
public void renewWithDuration() throws IOException {
    Subscribe subscribe = new Subscribe();
    ExpirationType exp = new ExpirationType();
    exp.setValue(DurationAndDateUtil.convertToXMLString(// 5 minutes
    DurationAndDateUtil.parseDurationOrTimestamp("PT5M0S")));
    subscribe.setExpires(exp);
    DeliveryType delivery = new DeliveryType();
    subscribe.setDelivery(delivery);
    subscribe.getDelivery().getContent().add(createDummyNotifyTo());
    SubscribeResponse resp = eventSourceClient.subscribeOp(subscribe);
    SubscriptionManagerEndpoint client = createSubscriptionManagerClient(resp.getSubscriptionManager().getReferenceParameters());
    GetStatusResponse response = client.getStatusOp(new GetStatus());
    String expirationBefore = response.getGrantedExpires().getValue();
    System.out.println("EXPIRES before renew: " + expirationBefore);
    Assert.assertTrue(expirationBefore.length() > 0);
    Renew renewRequest = new Renew();
    ExpirationType renewExp = new ExpirationType();
    renewExp.setValue(DurationAndDateUtil.convertToXMLString(// 10 minutes
    DurationAndDateUtil.parseDurationOrTimestamp("PT10M0S")));
    renewRequest.setExpires(renewExp);
    client.renewOp(renewRequest);
    response = client.getStatusOp(new GetStatus());
    String expirationAfter = response.getGrantedExpires().getValue();
    System.out.println("EXPIRES after renew: " + expirationAfter);
    Assert.assertFalse("Renew request should change the expiration time at least a bit", expirationAfter.equals(expirationBefore));
}
Also used : GetStatusResponse(org.apache.cxf.ws.eventing.GetStatusResponse) ExpirationType(org.apache.cxf.ws.eventing.ExpirationType) SubscriptionManagerEndpoint(org.apache.cxf.ws.eventing.manager.SubscriptionManagerEndpoint) Subscribe(org.apache.cxf.ws.eventing.Subscribe) SubscribeResponse(org.apache.cxf.ws.eventing.SubscribeResponse) Renew(org.apache.cxf.ws.eventing.Renew) DeliveryType(org.apache.cxf.ws.eventing.DeliveryType) GetStatus(org.apache.cxf.ws.eventing.GetStatus) Test(org.junit.Test) SimpleEventingIntegrationTest(org.apache.cxf.ws.eventing.base.SimpleEventingIntegrationTest)

Aggregations

ExpirationType (org.apache.cxf.ws.eventing.ExpirationType)21 Subscribe (org.apache.cxf.ws.eventing.Subscribe)17 DeliveryType (org.apache.cxf.ws.eventing.DeliveryType)16 SimpleEventingIntegrationTest (org.apache.cxf.ws.eventing.base.SimpleEventingIntegrationTest)16 Test (org.junit.Test)16 AttributedURIType (org.apache.cxf.ws.addressing.AttributedURIType)9 EndpointReferenceType (org.apache.cxf.ws.addressing.EndpointReferenceType)9 ObjectFactory (org.apache.cxf.ws.eventing.ObjectFactory)9 Server (org.apache.cxf.endpoint.Server)8 NotificatorService (org.apache.cxf.ws.eventing.backend.notification.NotificatorService)8 Emitter (org.apache.cxf.ws.eventing.backend.notification.emitters.Emitter)8 EmitterImpl (org.apache.cxf.ws.eventing.backend.notification.emitters.EmitterImpl)8 FireEvent (org.apache.cxf.ws.eventing.integration.notificationapi.FireEvent)8 SubscribeResponse (org.apache.cxf.ws.eventing.SubscribeResponse)6 XMLGregorianCalendar (javax.xml.datatype.XMLGregorianCalendar)5 FilterType (org.apache.cxf.ws.eventing.FilterType)5 GetStatus (org.apache.cxf.ws.eventing.GetStatus)4 SubscriptionManagerEndpoint (org.apache.cxf.ws.eventing.manager.SubscriptionManagerEndpoint)4 GetStatusResponse (org.apache.cxf.ws.eventing.GetStatusResponse)3 SOAPFaultException (javax.xml.ws.soap.SOAPFaultException)2