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());
}
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();
}
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();
}
Aggregations