|
| 1 | +/* |
| 2 | + * Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +/* |
| 25 | + * @test |
| 26 | + * @bug 8241187 |
| 27 | + * @summary ToolBox::grep should allow for negative filtering |
| 28 | + * @library /tools/lib |
| 29 | + * @build toolbox.ToolBox |
| 30 | + * @run main TestGrepOfToolBox |
| 31 | + */ |
| 32 | + |
| 33 | +import java.util.Arrays; |
| 34 | +import java.util.List; |
| 35 | + |
| 36 | +import toolbox.ToolBox; |
| 37 | + |
| 38 | +public class TestGrepOfToolBox { |
| 39 | + public static void main(String[] args) { |
| 40 | + ToolBox tb = new ToolBox(); |
| 41 | + List<String> input = Arrays.asList("apple", "banana", "cat", "dog", "end", "ending"); |
| 42 | + |
| 43 | + String regex1 = ".*ana.*"; |
| 44 | + List<String> expected1 = Arrays.asList("apple", "cat", "dog", "end", "ending"); |
| 45 | + List<String> output1 = tb.grep(regex1, input, false); |
| 46 | + tb.checkEqual(expected1, output1); |
| 47 | + |
| 48 | + String regex2 = ".*nd.*"; |
| 49 | + List<String> expected2 = Arrays.asList("apple", "banana", "cat", "dog"); |
| 50 | + List<String> output2 = tb.grep(regex2, input, false); |
| 51 | + tb.checkEqual(expected2, output2); |
| 52 | + |
| 53 | + String regex3 = "apple"; |
| 54 | + List<String> expected3 = Arrays.asList("banana", "cat", "dog", "end", "ending"); |
| 55 | + List<String> output3 = tb.grep(regex3, input, false); |
| 56 | + tb.checkEqual(expected3, output3); |
| 57 | + |
| 58 | + String regex4 = ".*ana.*"; |
| 59 | + List<String> expected4 = Arrays.asList("banana"); |
| 60 | + List<String> output4 = tb.grep(regex4, input, true); |
| 61 | + tb.checkEqual(expected4, output4); |
| 62 | + |
| 63 | + String regex5 = ".*nd.*"; |
| 64 | + List<String> expected5 = Arrays.asList("end", "ending"); |
| 65 | + List<String> output5 = tb.grep(regex5, input, true); |
| 66 | + tb.checkEqual(expected5, output5); |
| 67 | + |
| 68 | + String regex6 = "apple"; |
| 69 | + List<String> expected6 = Arrays.asList("apple"); |
| 70 | + List<String> output6 = tb.grep(regex6, input, true); |
| 71 | + tb.checkEqual(expected6, output6); |
| 72 | + } |
| 73 | +} |
0 commit comments