use of org.apache.cxf.ws.eventing.DeliveryType in project cxf by apache.
the class SubscriptionEndTest method doTest.
@Test
public void doTest() throws IOException {
NotificatorService service = createNotificatorService();
service.start();
Subscribe subscribe = new Subscribe();
EndpointReferenceType eventSinkERT = new EndpointReferenceType();
AttributedURIType eventSinkAddr = new AttributedURIType();
String eventSinkURL = TestUtil.generateRandomURLWithLocalTransport();
eventSinkAddr.setValue(eventSinkURL);
eventSinkERT.setAddress(eventSinkAddr);
subscribe.setDelivery(new DeliveryType());
subscribe.getDelivery().getContent().add(new ObjectFactory().createNotifyTo(eventSinkERT));
JAXBElement<String> idqn = new JAXBElement<>(new QName("http://www.example.org", "MyReferenceParameter"), String.class, "380");
ReferenceParametersType myParams = new ReferenceParametersType();
myParams.getAny().add(idqn);
eventSinkERT.setReferenceParameters(myParams);
EndpointReferenceType endToERT = new EndpointReferenceType();
AttributedURIType endToAddr = new AttributedURIType();
String endToURL = TestUtil.generateRandomURLWithLocalTransport();
endToAddr.setValue(endToURL);
endToERT.setAddress(endToAddr);
subscribe.setEndTo(endToERT);
SubscribeResponse response = eventSourceClient.subscribeOp(subscribe);
Element referenceParams = (Element) response.getSubscriptionManager().getReferenceParameters().getAny().get(0);
Server endToEndpoint = createEndToEndpointWithReferenceParametersAssertion(endToURL, myParams);
TestingEndToEndpointImpl.RECEIVED_ENDS.set(0);
SingletonSubscriptionManagerContainer.getInstance().subscriptionEnd(UUID.fromString(referenceParams.getTextContent()), "Sorry, " + "but we don't like you anymore", SubscriptionEndStatus.SOURCE_CANCELLING);
for (int i = 0; i < 10; i++) {
if (TestingEndToEndpointImpl.RECEIVED_ENDS.get() == 1) {
break;
}
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
}
endToEndpoint.stop();
if (TestingEndToEndpointImpl.RECEIVED_ENDS.get() != 1) {
Assert.fail("TestingEndToEndpointImpl should have received 1 subscription end notification but received " + TestingEndToEndpointImpl.RECEIVED_ENDS.get());
}
}
use of org.apache.cxf.ws.eventing.DeliveryType 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());
}
}
use of org.apache.cxf.ws.eventing.DeliveryType in project cxf by apache.
the class NotificationTest method basicReceptionOfEvents.
@Test
public void basicReceptionOfEvents() 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));
eventSourceClient.subscribeOp(subscribe);
eventSourceClient.subscribeOp(subscribe);
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() == 3) {
break;
}
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
}
eventSinkServer.stop();
if (TestingEventSinkImpl.RECEIVED_FIRES.get() != 3) {
Assert.fail("TestingEventSinkImpl should have received 3 events but received " + TestingEventSinkImpl.RECEIVED_FIRES.get());
}
}
use of org.apache.cxf.ws.eventing.DeliveryType in project cxf by apache.
the class NotificationTest method withReferenceParameters.
@Test
public void withReferenceParameters() throws Exception {
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();
JAXBElement<String> idqn = new JAXBElement<>(new QName("http://www.example.org", "MyReferenceParameter"), String.class, "380");
JAXBElement<String> idqn2 = new JAXBElement<>(new QName("http://www.example.org", "MyReferenceParameter2"), String.class, "381");
eventSinkERT.setReferenceParameters(new ReferenceParametersType());
eventSinkERT.getReferenceParameters().getAny().add(idqn);
eventSinkERT.getReferenceParameters().getAny().add(idqn2);
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));
eventSourceClient.subscribeOp(subscribe);
Server eventSinkServer = createEventSinkWithReferenceParametersAssertion(url, eventSinkERT.getReferenceParameters());
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();
int received = TestingEventSinkImpl.RECEIVED_FIRES.get();
if (received != 1) {
Assert.fail("TestingEventSinkImpl should have received 1 events but received " + received);
}
}
use of org.apache.cxf.ws.eventing.DeliveryType in project cxf by apache.
the class NotificationTest method expiration.
/**
* request a subscription that expires soon
* an event will be emitted after the expiration
* we should not receive notification about the event
* @throws IOException
*/
@Test
public void expiration() throws IOException {
NotificatorService service = createNotificatorService();
Subscribe subscribe = new Subscribe();
ExpirationType exp = new ExpirationType();
exp.setValue(DurationAndDateUtil.convertToXMLString(DurationAndDateUtil.parseDurationOrTimestamp("PT1S")));
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));
eventSourceClient.subscribeOp(subscribe);
Server eventSinkServer = createEventSink(url);
TestingEventSinkImpl.RECEIVED_FIRES.set(0);
service.start();
Emitter emitter = new EmitterImpl(service);
try {
Thread.sleep(3000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
emitter.dispatch(new FireEvent("Canada", 8));
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
eventSinkServer.stop();
if (TestingEventSinkImpl.RECEIVED_FIRES.get() != 0) {
Assert.fail("TestingEventSinkImpl should not have received any events but received " + TestingEventSinkImpl.RECEIVED_FIRES.get());
}
}
Aggregations