use of org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate in project controller by opendaylight.
the class SimpleShardDataTreeCohortTest method testPreCommitWithReportedFailure.
@Test
public void testPreCommitWithReportedFailure() throws Exception {
canCommitSuccess();
final Exception cause = new IllegalArgumentException("mock");
cohort.reportFailure(cause);
@SuppressWarnings("unchecked") final FutureCallback<DataTreeCandidate> callback = mock(FutureCallback.class);
cohort.preCommit(callback);
verify(callback).onFailure(cause);
verifyNoMoreInteractions(callback);
verify(mockShardDataTree, never()).startPreCommit(cohort);
}
use of org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate in project controller by opendaylight.
the class DataTreeChangeListenerActorTest method testDataChangedWithListenerRuntimeEx.
@Test
public void testDataChangedWithListenerRuntimeEx() {
new TestKit(getSystem()) {
{
final DataTreeCandidate mockTreeCandidate1 = Mockito.mock(DataTreeCandidate.class);
final ImmutableList<DataTreeCandidate> mockCandidates1 = ImmutableList.of(mockTreeCandidate1);
final DataTreeCandidate mockTreeCandidate2 = Mockito.mock(DataTreeCandidate.class);
final ImmutableList<DataTreeCandidate> mockCandidates2 = ImmutableList.of(mockTreeCandidate2);
final DataTreeCandidate mockTreeCandidate3 = Mockito.mock(DataTreeCandidate.class);
final ImmutableList<DataTreeCandidate> mockCandidates3 = ImmutableList.of(mockTreeCandidate3);
final DOMDataTreeChangeListener mockListener = Mockito.mock(DOMDataTreeChangeListener.class);
Mockito.doThrow(new RuntimeException("mock")).when(mockListener).onDataTreeChanged(mockCandidates2);
Props props = DataTreeChangeListenerActor.props(mockListener, TEST_PATH);
ActorRef subject = getSystem().actorOf(props, "testDataTreeChangedWithListenerRuntimeEx");
// Let the DataChangeListener know that notifications should be
// enabled
subject.tell(new EnableNotification(true, "test"), getRef());
subject.tell(new DataTreeChanged(mockCandidates1), getRef());
expectMsgClass(DataTreeChangedReply.class);
subject.tell(new DataTreeChanged(mockCandidates2), getRef());
expectMsgClass(DataTreeChangedReply.class);
subject.tell(new DataTreeChanged(mockCandidates3), getRef());
expectMsgClass(DataTreeChangedReply.class);
Mockito.verify(mockListener).onDataTreeChanged(mockCandidates1);
Mockito.verify(mockListener).onDataTreeChanged(mockCandidates2);
Mockito.verify(mockListener).onDataTreeChanged(mockCandidates3);
}
};
}
use of org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate in project controller by opendaylight.
the class DataTreeChangeListenerActorTest method testDataChangedWhenNotificationsAreDisabled.
@Test
public void testDataChangedWhenNotificationsAreDisabled() {
new TestKit(getSystem()) {
{
final DataTreeCandidate mockTreeCandidate = Mockito.mock(DataTreeCandidate.class);
final ImmutableList<DataTreeCandidate> mockCandidates = ImmutableList.of(mockTreeCandidate);
final DOMDataTreeChangeListener mockListener = Mockito.mock(DOMDataTreeChangeListener.class);
final Props props = DataTreeChangeListenerActor.props(mockListener, TEST_PATH);
final ActorRef subject = getSystem().actorOf(props, "testDataTreeChangedNotificationsDisabled");
subject.tell(new DataTreeChanged(mockCandidates), getRef());
within(duration("1 seconds"), () -> {
expectNoMsg();
Mockito.verify(mockListener, Mockito.never()).onDataTreeChanged(Matchers.anyCollectionOf(DataTreeCandidate.class));
return null;
});
}
};
}
use of org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate in project controller by opendaylight.
the class DataTreeChangeListenerActorTest method testDataChangedWithNoSender.
@Test
public void testDataChangedWithNoSender() {
new TestKit(getSystem()) {
{
final DataTreeCandidate mockTreeCandidate = Mockito.mock(DataTreeCandidate.class);
final ImmutableList<DataTreeCandidate> mockCandidates = ImmutableList.of(mockTreeCandidate);
final DOMDataTreeChangeListener mockListener = Mockito.mock(DOMDataTreeChangeListener.class);
final Props props = DataTreeChangeListenerActor.props(mockListener, TEST_PATH);
final ActorRef subject = getSystem().actorOf(props, "testDataTreeChangedWithNoSender");
getSystem().eventStream().subscribe(getRef(), DeadLetter.class);
subject.tell(new DataTreeChanged(mockCandidates), ActorRef.noSender());
// Make sure no DataChangedReply is sent to DeadLetters.
while (true) {
DeadLetter deadLetter;
try {
deadLetter = expectMsgClass(duration("1 seconds"), DeadLetter.class);
} catch (AssertionError e) {
// Timed out - got no DeadLetter - this is good
break;
}
// We may get DeadLetters for other messages we don't care
// about.
Assert.assertFalse("Unexpected DataTreeChangedReply", deadLetter.message() instanceof DataTreeChangedReply);
}
}
};
}
use of org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate in project controller by opendaylight.
the class AbstractShardTest method writeToStore.
public static void writeToStore(final DataTree store, final YangInstanceIdentifier id, final NormalizedNode<?, ?> node) throws DataValidationFailedException {
final DataTreeModification transaction = store.takeSnapshot().newModification();
transaction.write(id, node);
transaction.ready();
store.validate(transaction);
final DataTreeCandidate candidate = store.prepare(transaction);
store.commit(candidate);
}
Aggregations