Search in sources :

Example 1 with TableToolbar

use of au.gov.asd.tac.constellation.views.tableview.components.TableToolbar in project constellation by constellation-app.

the class TablePaneNGTest method updateTableGraphIsNull.

@Test
public void updateTableGraphIsNull() throws InterruptedException, ExecutionException, TimeoutException {
    final Table table = mock(Table.class);
    final TableView<ObservableList<String>> tableView = mock(TableView.class);
    final TableViewState tableViewState = new TableViewState();
    final TableToolbar tableToolbar = mock(TableToolbar.class);
    final List<TableColumn<ObservableList<String>, String>> tableColumns = new ArrayList<>();
    tableColumns.add(mock(TableColumn.class));
    tableColumns.add(mock(TableColumn.class));
    final ObservableList<TableColumn<ObservableList<String>, String>> columns = FXCollections.observableList(tableColumns);
    when(tablePane.getTable()).thenReturn(table);
    when(table.getTableView()).thenReturn(tableView);
    doReturn(columns).when(tableView).getColumns();
    when(tablePane.getTableToolbar()).thenReturn(tableToolbar);
    tablePane.updateTable(null, tableViewState);
    try {
        tablePane.getFuture().get(30, TimeUnit.SECONDS);
    } catch (InterruptedException | ExecutionException | TimeoutException ex) {
        fail("The update thread did not finish as expected within the allowed time. " + "Something went wrong");
    }
    verify(tableToolbar).updateToolbar(tableViewState);
    verify(table, times(0)).updateColumns(any(Graph.class), any(TableViewState.class));
    verify(table, times(0)).updateData(any(Graph.class), any(TableViewState.class), any(ProgressBar.class));
    verify(table, times(0)).updateSelection(any(Graph.class), any(TableViewState.class));
    // The future finished but maybe not the JavaFX thread
    WaitForAsyncUtils.waitForFxEvents();
    verify(table, times(0)).updateSortOrder();
    assertTrue(columns.isEmpty());
}
Also used : Table(au.gov.asd.tac.constellation.views.tableview.components.Table) TableToolbar(au.gov.asd.tac.constellation.views.tableview.components.TableToolbar) ArrayList(java.util.ArrayList) TableColumn(javafx.scene.control.TableColumn) Graph(au.gov.asd.tac.constellation.graph.Graph) ObservableList(javafx.collections.ObservableList) TableViewState(au.gov.asd.tac.constellation.views.tableview.state.TableViewState) ExecutionException(java.util.concurrent.ExecutionException) ProgressBar(au.gov.asd.tac.constellation.views.tableview.components.ProgressBar) TimeoutException(java.util.concurrent.TimeoutException) Test(org.testng.annotations.Test)

Example 2 with TableToolbar

use of au.gov.asd.tac.constellation.views.tableview.components.TableToolbar in project constellation by constellation-app.

the class TablePaneNGTest method updateTable_interrupt.

@Test
public void updateTable_interrupt() {
    final Graph graph = mock(Graph.class);
    final TableViewState tableViewState = new TableViewState();
    final Table table = mock(Table.class);
    final ProgressBar progressBar = mock(ProgressBar.class);
    final TableToolbar tableToolbar = mock(TableToolbar.class);
    when(tablePane.getTable()).thenReturn(table);
    when(tablePane.getProgressBar()).thenReturn(progressBar);
    when(tablePane.getTableToolbar()).thenReturn(tableToolbar);
    doAnswer(mockitoInvocation -> {
        System.out.println("Interrupt: " + Thread.currentThread().getName());
        Thread.currentThread().interrupt();
        return null;
    }).when(table).updateColumns(graph, tableViewState);
    tablePane.updateTable(graph, tableViewState);
    try {
        tablePane.getFuture().get(30, TimeUnit.SECONDS);
    } catch (InterruptedException | ExecutionException | TimeoutException ex) {
        fail("The update thread did not finish as expected within the allowed time. " + "Something went wrong");
    }
    verify(tableToolbar).updateToolbar(tableViewState);
    // Update columns is called
    verify(table).updateColumns(graph, tableViewState);
    // Verify everything after that is not called
    verify(table, times(0)).updateData(graph, tableViewState, progressBar);
    verify(table, times(0)).updateSelection(graph, tableViewState);
    // The future finished but maybe not the JavaFX thread
    WaitForAsyncUtils.waitForFxEvents();
    verify(table, times(0)).updateSortOrder();
}
Also used : Graph(au.gov.asd.tac.constellation.graph.Graph) Table(au.gov.asd.tac.constellation.views.tableview.components.Table) TableToolbar(au.gov.asd.tac.constellation.views.tableview.components.TableToolbar) TableViewState(au.gov.asd.tac.constellation.views.tableview.state.TableViewState) ExecutionException(java.util.concurrent.ExecutionException) ProgressBar(au.gov.asd.tac.constellation.views.tableview.components.ProgressBar) TimeoutException(java.util.concurrent.TimeoutException) Test(org.testng.annotations.Test)

Example 3 with TableToolbar

use of au.gov.asd.tac.constellation.views.tableview.components.TableToolbar in project constellation by constellation-app.

the class TablePaneNGTest method updateTable.

@Test
public void updateTable() {
    final Graph graph = mock(Graph.class);
    final TableViewState tableViewState = new TableViewState();
    final Table table = mock(Table.class);
    final ProgressBar progressBar = mock(ProgressBar.class);
    final TableToolbar tableToolbar = mock(TableToolbar.class);
    when(tablePane.getTable()).thenReturn(table);
    when(tablePane.getProgressBar()).thenReturn(progressBar);
    when(tablePane.getTableToolbar()).thenReturn(tableToolbar);
    tablePane.updateTable(graph, tableViewState);
    try {
        tablePane.getFuture().get(30, TimeUnit.SECONDS);
    } catch (InterruptedException | ExecutionException | TimeoutException ex) {
        fail("The update thread did not finish as expected within the allowed time. " + "Something went wrong");
    }
    verify(tableToolbar).updateToolbar(tableViewState);
    verify(table).updateColumns(graph, tableViewState);
    verify(table).updateData(graph, tableViewState, progressBar);
    verify(table).updateSelection(graph, tableViewState);
    // The future finished but maybe not the JavaFX thread
    WaitForAsyncUtils.waitForFxEvents();
    verify(table).updateSortOrder();
}
Also used : Graph(au.gov.asd.tac.constellation.graph.Graph) Table(au.gov.asd.tac.constellation.views.tableview.components.Table) TableToolbar(au.gov.asd.tac.constellation.views.tableview.components.TableToolbar) TableViewState(au.gov.asd.tac.constellation.views.tableview.state.TableViewState) ExecutionException(java.util.concurrent.ExecutionException) ProgressBar(au.gov.asd.tac.constellation.views.tableview.components.ProgressBar) TimeoutException(java.util.concurrent.TimeoutException) Test(org.testng.annotations.Test)

Aggregations

Graph (au.gov.asd.tac.constellation.graph.Graph)3 ProgressBar (au.gov.asd.tac.constellation.views.tableview.components.ProgressBar)3 Table (au.gov.asd.tac.constellation.views.tableview.components.Table)3 TableToolbar (au.gov.asd.tac.constellation.views.tableview.components.TableToolbar)3 TableViewState (au.gov.asd.tac.constellation.views.tableview.state.TableViewState)3 ExecutionException (java.util.concurrent.ExecutionException)3 TimeoutException (java.util.concurrent.TimeoutException)3 Test (org.testng.annotations.Test)3 ArrayList (java.util.ArrayList)1 ObservableList (javafx.collections.ObservableList)1 TableColumn (javafx.scene.control.TableColumn)1