| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * https://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| package org.apache.bcel; |
| |
| import static org.junit.jupiter.api.Assertions.assertThrows; |
| |
| import java.io.File; |
| import java.io.FileInputStream; |
| |
| import org.apache.bcel.classfile.ClassFormatException; |
| import org.apache.bcel.classfile.ClassParser; |
| import org.junit.jupiter.api.Test; |
| |
| class OssFuzzTest { |
| |
| @Test |
| void testIssue51980() throws Exception { |
| testOssFuzzReproducer("51980"); |
| } |
| |
| @Test |
| void testIssue51989() throws Exception { |
| testOssFuzzReproducer("51989"); |
| } |
| |
| @Test |
| void testIssue52168() throws Exception { |
| testOssFuzzReproducer("52168"); |
| } |
| |
| @Test |
| void testIssue53543() throws Exception { |
| testOssFuzzReproducer("53543"); |
| } |
| |
| /** |
| * The original issue 53544 was a false positive but reviewing that issue did find a valid issue nearby. |
| */ |
| @Test |
| void testIssue53544a() throws Exception { |
| testOssFuzzReproducer("53544a"); |
| } |
| |
| @Test |
| void testIssue53620() throws Exception { |
| testOssFuzzReproducer("53620"); |
| } |
| |
| @Test |
| void testIssue53676() throws Exception { |
| testOssFuzzReproducer("53676"); |
| } |
| |
| @Test |
| void testIssue54119() throws Exception { |
| testOssFuzzReproducer("54119"); |
| } |
| |
| @Test |
| void testIssue54254() throws Exception { |
| testOssFuzzReproducer("54254"); |
| } |
| |
| private void testOssFuzzReproducer(final String issue) throws Exception { |
| // Class names here use non-".class" suffix so that Maven plugins like surefire do not try to read the file and fail the build. |
| final File reproducerFile = new File("target/test-classes/ossfuzz/issue" + issue + "/Test.classx"); |
| try (FileInputStream reproducerInputStream = new FileInputStream(reproducerFile)) { |
| final ClassParser cp = new ClassParser(reproducerInputStream, "Test"); |
| assertThrows(ClassFormatException.class, () -> cp.parse()); |
| } |
| } |
| } |