Search in sources :

Example 11 with AlertThreshold

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;
}
Also used : RowSorter(javax.swing.RowSorter) JComboBox(javax.swing.JComboBox) ArrayList(java.util.ArrayList) TableColumn(javax.swing.table.TableColumn) AlertThreshold(org.parosproxy.paros.core.scanner.Plugin.AlertThreshold) DefaultCellEditor(javax.swing.DefaultCellEditor) JTable(javax.swing.JTable)

Example 12 with AlertThreshold

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.
}
Also used : AlertThreshold(org.parosproxy.paros.core.scanner.Plugin.AlertThreshold) Test(org.junit.Test)

Example 13 with AlertThreshold

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.
}
Also used : AlertThreshold(org.parosproxy.paros.core.scanner.Plugin.AlertThreshold) Test(org.junit.Test)

Example 14 with AlertThreshold

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)));
}
Also used : AlertThreshold(org.parosproxy.paros.core.scanner.Plugin.AlertThreshold) Test(org.junit.Test)

Aggregations

AlertThreshold (org.parosproxy.paros.core.scanner.Plugin.AlertThreshold)14 ArrayList (java.util.ArrayList)5 Test (org.junit.Test)5 Plugin (org.parosproxy.paros.core.scanner.Plugin)4 DefaultCellEditor (javax.swing.DefaultCellEditor)3 JComboBox (javax.swing.JComboBox)3 JTable (javax.swing.JTable)3 RowSorter (javax.swing.RowSorter)3 TableColumn (javax.swing.table.TableColumn)3 AttackStrength (org.parosproxy.paros.core.scanner.Plugin.AttackStrength)2 ScannerParamFilter (org.parosproxy.paros.core.scanner.ScannerParamFilter)2 Session (org.parosproxy.paros.model.Session)2 ApiException (org.zaproxy.zap.extension.api.ApiException)2 ApiResponseElement (org.zaproxy.zap.extension.api.ApiResponseElement)2 GenericScanner2 (org.zaproxy.zap.model.GenericScanner2)2 Date (java.util.Date)1 HashMap (java.util.HashMap)1 PatternSyntaxException (java.util.regex.PatternSyntaxException)1 JSONException (net.sf.json.JSONException)1 ConfigurationException (org.apache.commons.configuration.ConfigurationException)1