use of org.parosproxy.paros.core.scanner.Plugin.AlertThreshold in project zaproxy by zaproxy.
the class PolicyPassiveScanPanel method getTableTest.
/**
* This method initializes tableTest
*
* @return javax.swing.JTable
*/
private JTable getTableTest() {
if (tableTest == null) {
tableTest = new JTable();
tableTest.setModel(getPassiveScanTableModel());
tableTest.setRowHeight(DisplayUtils.getScaledSize(18));
tableTest.setIntercellSpacing(new java.awt.Dimension(1, 1));
tableTest.setAutoCreateRowSorter(true);
//Default sort by name (column 0)
List<RowSorter.SortKey> sortKeys = new ArrayList<RowSorter.SortKey>(1);
sortKeys.add(new RowSorter.SortKey(0, SortOrder.ASCENDING));
tableTest.getRowSorter().setSortKeys(sortKeys);
for (int i = 0; i < tableTest.getColumnCount() - 1; i++) {
TableColumn column = tableTest.getColumnModel().getColumn(i);
column.setPreferredWidth(width[i]);
}
JComboBox<String> jcb1 = new JComboBox<>();
for (AlertThreshold level : AlertThreshold.values()) {
jcb1.addItem(Constant.messages.getString("ascan.policy.level." + level.name().toLowerCase()));
}
tableTest.getColumnModel().getColumn(1).setCellEditor(new DefaultCellEditor(jcb1));
}
return tableTest;
}
use of org.parosproxy.paros.core.scanner.Plugin.AlertThreshold in project zaproxy by zaproxy.
the class PluginPassiveScannerUnitTest method shouldFailToSetNullLevel.
@Test(expected = IllegalArgumentException.class)
public void shouldFailToSetNullLevel() {
// Given
AlertThreshold level = null;
// When
scanner.setLevel(level);
// Then = IllegalArgumentException.
}
use of org.parosproxy.paros.core.scanner.Plugin.AlertThreshold in project zaproxy by zaproxy.
the class PluginPassiveScannerUnitTest method shouldFailToSetNullDefaultLevel.
@Test(expected = IllegalArgumentException.class)
public void shouldFailToSetNullDefaultLevel() {
// Given
AlertThreshold level = null;
// When
scanner.setDefaultLevel(level);
// Then = IllegalArgumentException.
}
use of org.parosproxy.paros.core.scanner.Plugin.AlertThreshold in project zaproxy by zaproxy.
the class PluginPassiveScannerUnitTest method shouldSetValidLevel.
@Test
public void shouldSetValidLevel() {
// Given
AlertThreshold level = AlertThreshold.HIGH;
// When
scanner.setLevel(level);
// Then
assertThat(scanner.getLevel(), is(equalTo(level)));
}
Aggregations