Search in sources :

Example 1 with SelectionEvent

use of org.knime.gateway.impl.service.events.SelectionEvent in project knime-core by knime.

the class NodeViewEntTest method testNodeViewEntWithSelectionEventSource.

/**
 * Tests the {@link SelectionEventSource} in conjunction with {@link NodeViewEnt}.
 *
 * @throws IOException
 */
@Test
public void testNodeViewEntWithSelectionEventSource() throws IOException {
    var wfm = WorkflowManagerUtil.createEmptyWorkflow();
    Function<NodeViewNodeModel, NodeView> nodeViewCreator = m -> NodeViewTest.createNodeView(Page.builder(() -> "blub", "index.html").build());
    NativeNodeContainer nnc = WorkflowManagerUtil.createAndAddNode(wfm, new NodeViewNodeFactory(nodeViewCreator));
    wfm.executeAllAndWaitUntilDone();
    var hiLiteHandler = nnc.getNodeModel().getInHiLiteHandler(0);
    hiLiteHandler.fireHiLiteEvent(new RowKey("k1"), new RowKey("k2"));
    @SuppressWarnings("unchecked") final BiConsumer<String, SelectionEvent> consumerMock = mock(BiConsumer.class);
    var selectionEventSource = SelectionEventSourceTest.createSelectionEventSource(consumerMock);
    var initialSelection = selectionEventSource.addEventListenerAndGetInitialEventFor(nnc).map(SelectionEvent::getKeys).orElse(Collections.emptyList());
    var nodeViewEnt = new NodeViewEnt(nnc, () -> initialSelection);
    assertThat(nodeViewEnt.getInitialSelection(), is(List.of("k1", "k2")));
    hiLiteHandler.fireHiLiteEvent(new RowKey("k3"));
    await().pollDelay(ONE_HUNDRED_MILLISECONDS).timeout(FIVE_SECONDS).untilAsserted(() -> verify(consumerMock, times(1)).accept(eq("SelectionEvent"), argThat(se -> se.getKeys().equals(List.of("k3")) && se.getMode() == SelectionEventMode.ADD)));
    WorkflowManagerUtil.disposeWorkflow(wfm);
}
Also used : NativeNodeContainer(org.knime.core.node.workflow.NativeNodeContainer) NodeMessage(org.knime.core.node.workflow.NodeMessage) VirtualSubNodeInputNodeFactory(org.knime.core.node.workflow.virtual.subnode.VirtualSubNodeInputNodeFactory) NodeView(org.knime.core.webui.node.view.NodeView) SelectionEventMode(org.knime.gateway.impl.service.events.SelectionEventSource.SelectionEventMode) RowKey(org.knime.core.data.RowKey) ArgumentMatchers.argThat(org.mockito.ArgumentMatchers.argThat) ArgumentMatchers.eq(org.mockito.ArgumentMatchers.eq) Resource(org.knime.core.webui.page.Resource) SelectionEventSource(org.knime.gateway.impl.service.events.SelectionEventSource) Page(org.knime.core.webui.page.Page) Function(java.util.function.Function) PageUtil(org.knime.core.webui.page.PageUtil) SelectionEvent(org.knime.gateway.impl.service.events.SelectionEvent) WorkflowManagerUtil(org.knime.testing.util.WorkflowManagerUtil) Matchers.nullValue(org.hamcrest.Matchers.nullValue) BiConsumer(java.util.function.BiConsumer) MatcherAssert.assertThat(org.hamcrest.MatcherAssert.assertThat) ONE_HUNDRED_MILLISECONDS(org.awaitility.Duration.ONE_HUNDRED_MILLISECONDS) PortType(org.knime.core.node.port.PortType) NodeViewNodeFactory(org.knime.testing.node.view.NodeViewNodeFactory) Awaitility.await(org.awaitility.Awaitility.await) PageTest(org.knime.core.webui.page.PageTest) NodeViewTest(org.knime.core.webui.node.view.NodeViewTest) Mockito.times(org.mockito.Mockito.times) IOException(java.io.IOException) Test(org.junit.Test) NodeViewManagerTest.runOnExecutor(org.knime.core.webui.node.view.NodeViewManagerTest.runOnExecutor) Matchers.startsWith(org.hamcrest.Matchers.startsWith) Mockito.verify(org.mockito.Mockito.verify) List(java.util.List) NodeViewNodeModel(org.knime.testing.node.view.NodeViewNodeModel) TextInitialDataService(org.knime.core.webui.data.text.TextInitialDataService) Matchers.is(org.hamcrest.Matchers.is) Assert(org.junit.Assert) Matchers.endsWith(org.hamcrest.Matchers.endsWith) Collections(java.util.Collections) FIVE_SECONDS(org.awaitility.Duration.FIVE_SECONDS) Mockito.mock(org.mockito.Mockito.mock) SelectionEventSourceTest(org.knime.gateway.impl.service.events.SelectionEventSourceTest) NodeViewNodeFactory(org.knime.testing.node.view.NodeViewNodeFactory) RowKey(org.knime.core.data.RowKey) NodeViewNodeModel(org.knime.testing.node.view.NodeViewNodeModel) NodeView(org.knime.core.webui.node.view.NodeView) SelectionEvent(org.knime.gateway.impl.service.events.SelectionEvent) NativeNodeContainer(org.knime.core.node.workflow.NativeNodeContainer) PageTest(org.knime.core.webui.page.PageTest) NodeViewTest(org.knime.core.webui.node.view.NodeViewTest) Test(org.junit.Test) SelectionEventSourceTest(org.knime.gateway.impl.service.events.SelectionEventSourceTest)

Example 2 with SelectionEvent

use of org.knime.gateway.impl.service.events.SelectionEvent in project knime-core by knime.

the class NodeViewEntUtilTest method testCreateNodeViewEntAndSetUpEventSources.

/**
 * Tests
 * {@link NodeViewEntUtil#createNodeViewEntAndEventSources(org.knime.core.node.workflow.NativeNodeContainer, BiConsumer, boolean)}.
 *
 * @throws IOException
 */
@SuppressWarnings("unchecked")
@Test
public void testCreateNodeViewEntAndSetUpEventSources() throws IOException {
    var wfm = WorkflowManagerUtil.createEmptyWorkflow();
    var nnc = WorkflowManagerUtil.createAndAddNode(wfm, new NodeViewNodeFactory(0, 0));
    var hlh = nnc.getNodeModel().getInHiLiteHandler(0);
    wfm.executeAllAndWaitUntilDone();
    BiConsumer<String, Object> eventConsumer = Mockito.mock(BiConsumer.class);
    /* assert that the selection event source is properly set up */
    var eventSource = NodeViewEntUtil.createNodeViewEntAndEventSources(nnc, eventConsumer, false).getSecond()[0];
    fireHiLiteEvent(hlh, "test");
    verify(eventConsumer).accept(eq("SelectionEvent"), argThat(se -> verifySelectionEvent((SelectionEvent) se, "test")));
    /* assert that all the listeners are removed from the selection event source on node state change */
    wfm.resetAndConfigureAll();
    fireHiLiteEvent(hlh, "test2");
    verify(eventConsumer, never()).accept(eq("SelectionEvent"), argThat(se -> verifySelectionEvent((SelectionEvent) se, "test2")));
    eventSource.removeAllEventListeners();
    /* test the selection event source in combination with the node view state event source */
    // test selection events
    wfm.executeAllAndWaitUntilDone();
    NodeViewEntUtil.createNodeViewEntAndEventSources(nnc, eventConsumer, true);
    fireHiLiteEvent(hlh, "test3");
    verify(eventConsumer).accept(eq("SelectionEvent"), argThat(se -> verifySelectionEvent((SelectionEvent) se, "test3")));
    // test node view state event: configured
    wfm.resetAndConfigureAll();
    awaitUntilAsserted(() -> verify(eventConsumer).accept(eq("NodeViewStateEvent"), argThat(se -> verifyNodeViewStateEvent((NodeViewStateEvent) se, "configured", null))));
    // make sure no selection events are fired if node is not executed
    fireHiLiteEvent(hlh, "test4");
    verify(eventConsumer, never()).accept(eq("SelectionEvent"), argThat(se -> verifySelectionEvent((SelectionEvent) se, "test4")));
    // test node view state event: executed
    wfm.executeAllAndWaitUntilDone();
    awaitUntilAsserted(() -> verify(eventConsumer).accept(eq("NodeViewStateEvent"), argThat(se -> verifyNodeViewStateEvent((NodeViewStateEvent) se, "executed", "the initial data"))));
    // make sure that selection events are issued again
    fireHiLiteEvent(hlh, "test5");
    verify(eventConsumer).accept(eq("SelectionEvent"), argThat(se -> verifySelectionEvent((SelectionEvent) se, "test5")));
    WorkflowManagerUtil.disposeWorkflow(wfm);
}
Also used : NodeViewNodeFactory(org.knime.testing.node.view.NodeViewNodeFactory) KeyEvent(org.knime.core.node.property.hilite.KeyEvent) NodeViewStateEvent(org.knime.gateway.impl.service.events.NodeViewStateEvent) Awaitility.await(org.awaitility.Awaitility.await) SelectionEventMode(org.knime.gateway.impl.service.events.SelectionEventSource.SelectionEventMode) RowKey(org.knime.core.data.RowKey) ArgumentMatchers.argThat(org.mockito.ArgumentMatchers.argThat) ArgumentMatchers.eq(org.mockito.ArgumentMatchers.eq) IOException(java.io.IOException) Test(org.junit.Test) Mockito.verify(org.mockito.Mockito.verify) Objects(java.util.Objects) ThrowingRunnable(org.awaitility.core.ThrowingRunnable) Mockito(org.mockito.Mockito) Mockito.never(org.mockito.Mockito.never) List(java.util.List) SelectionEvent(org.knime.gateway.impl.service.events.SelectionEvent) WorkflowManagerUtil(org.knime.testing.util.WorkflowManagerUtil) HiLiteHandler(org.knime.core.node.property.hilite.HiLiteHandler) BiConsumer(java.util.function.BiConsumer) FIVE_SECONDS(org.awaitility.Duration.FIVE_SECONDS) ONE_HUNDRED_MILLISECONDS(org.awaitility.Duration.ONE_HUNDRED_MILLISECONDS) NodeViewNodeFactory(org.knime.testing.node.view.NodeViewNodeFactory) NodeViewStateEvent(org.knime.gateway.impl.service.events.NodeViewStateEvent) Test(org.junit.Test)

Aggregations

IOException (java.io.IOException)2 List (java.util.List)2 BiConsumer (java.util.function.BiConsumer)2 Awaitility.await (org.awaitility.Awaitility.await)2 FIVE_SECONDS (org.awaitility.Duration.FIVE_SECONDS)2 ONE_HUNDRED_MILLISECONDS (org.awaitility.Duration.ONE_HUNDRED_MILLISECONDS)2 Test (org.junit.Test)2 RowKey (org.knime.core.data.RowKey)2 SelectionEvent (org.knime.gateway.impl.service.events.SelectionEvent)2 SelectionEventMode (org.knime.gateway.impl.service.events.SelectionEventSource.SelectionEventMode)2 NodeViewNodeFactory (org.knime.testing.node.view.NodeViewNodeFactory)2 WorkflowManagerUtil (org.knime.testing.util.WorkflowManagerUtil)2 ArgumentMatchers.argThat (org.mockito.ArgumentMatchers.argThat)2 ArgumentMatchers.eq (org.mockito.ArgumentMatchers.eq)2 Mockito.verify (org.mockito.Mockito.verify)2 Collections (java.util.Collections)1 Objects (java.util.Objects)1 Function (java.util.function.Function)1 ThrowingRunnable (org.awaitility.core.ThrowingRunnable)1 MatcherAssert.assertThat (org.hamcrest.MatcherAssert.assertThat)1