-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrect component type in aggregated SBOM
In a multimodule Maven project, some submodules configured with `projectType: application` were incorrectly set to "library" in the aggregated SBOM. This commit fixes the issue by ensuring the correct component type is reflected based on the `projectType` configuration. Tests were also added to verify the correct component type assignment. Fixes #521 Signed-off-by: lonewalker0 <riccardoalberto.costantin@studenti.unipd.it>
- Loading branch information
1 parent
c02b50f
commit 4450f3b
Showing
5 changed files
with
261 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
package org.cyclonedx.maven; | ||
|
||
|
||
|
||
import org.junit.runner.RunWith; | ||
|
||
|
||
import io.takari.maven.testing.executor.MavenRuntime.MavenRuntimeBuilder; | ||
import io.takari.maven.testing.executor.MavenVersions; | ||
import io.takari.maven.testing.executor.junit.MavenJUnitTestRunner; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
import org.w3c.dom.Document; | ||
import org.w3c.dom.Element; | ||
import org.w3c.dom.NodeList; | ||
import static org.cyclonedx.maven.TestUtils.readXML; | ||
|
||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
|
||
|
||
|
||
import org.junit.Test; | ||
|
||
@RunWith(MavenJUnitTestRunner.class) | ||
@MavenVersions({"3.6.3"}) | ||
|
||
public class Issue521Test extends BaseMavenVerifier { | ||
|
||
public Issue521Test(MavenRuntimeBuilder runtimeBuilder) throws Exception { | ||
super(runtimeBuilder); | ||
|
||
} | ||
|
||
|
||
@Test | ||
public void testFilePresence() throws Exception { | ||
File projDir = cleanAndBuild("issue-521", null); | ||
assertFileExists(projDir, "target/bom.json"); | ||
assertFileExists(projDir, "target/bom.xml"); | ||
} | ||
|
||
@Test | ||
public void testBomJsonContent() throws Exception { | ||
File projDir = cleanAndBuild("issue-521", null); | ||
verifyBomJsonContains(projDir, "target/bom.json", "issue-521-module1", "application"); | ||
} | ||
|
||
@Test | ||
public void testBomXmlContent() throws Exception { | ||
File projDir = cleanAndBuild("issue-521", null); | ||
checkBomXml(projDir); | ||
} | ||
|
||
|
||
|
||
|
||
private static void assertFileExists(File basedir, String filePath) { | ||
File file = new File(basedir, filePath); | ||
assertTrue(file.exists(), String.format("File %s should exist", filePath)); | ||
} | ||
|
||
private void verifyBomJsonContains(File basedir, String filePath, String expectedName, String expectedType) throws IOException { | ||
File bomJsonFile = new File(basedir, filePath); | ||
assertTrue(bomJsonFile.exists(), String.format("File %s should exist", filePath)); | ||
|
||
// Leggi il contenuto del file bom.json e verifica la presenza dei campi desiderati | ||
String bomContents = fileRead(bomJsonFile, true); | ||
assertTrue(bomContents.contains("\"name\" : \"" + expectedName + "\""), | ||
String.format("bom.json should contain a module with name '%s'", expectedName)); | ||
assertTrue(bomContents.contains("\"type\" : \"" + expectedType + "\""), | ||
String.format("bom.json should contain a module with type '%s'", expectedType)); | ||
} | ||
|
||
private void checkBomXml(final File projDir) throws Exception { | ||
final Document bom = readXML(new File(projDir, "target/bom.xml")); | ||
|
||
final NodeList componentsList = bom.getElementsByTagName("component"); | ||
assertTrue(componentsList.getLength() > 0, "Expected at least one component element"); | ||
|
||
boolean found=false; | ||
for (int i = 0; i < componentsList.getLength(); i++) { | ||
Element component = (Element) componentsList.item(i); | ||
String name = component.getElementsByTagName("name").item(0).getTextContent(); | ||
String type = component.getAttribute("type"); | ||
|
||
if ("issue-521-module1".equals(name) && "application".equals(type)) { | ||
found = true; | ||
break; | ||
} | ||
} | ||
|
||
assertTrue(found, "Expected to find a component with name 'module1' and type 'application'"); | ||
} | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>com.example</groupId> | ||
<artifactId>issue-521</artifactId> | ||
<version>${revision}</version> | ||
</parent> | ||
|
||
<artifactId>issue-521-module1</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.1</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.cyclonedx</groupId> | ||
<artifactId>cyclonedx-maven-plugin</artifactId> | ||
<version>${current.version}</version> | ||
<configuration> | ||
<projectType>application</projectType> | ||
</configuration> | ||
|
||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>com.example</groupId> | ||
<artifactId>issue-521</artifactId> | ||
<version>${revision}</version> | ||
</parent> | ||
|
||
<artifactId>issue-521-module2</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.1</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.example</groupId> | ||
<artifactId>issue-521</artifactId> | ||
<packaging>pom</packaging> | ||
<version>${revision}</version> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache-2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<modules> | ||
<module>module1</module> | ||
<module>module2</module> | ||
</modules> | ||
|
||
<properties> | ||
<revision>1.0.0</revision> | ||
<maven.compiler.source>8</maven.compiler.source> | ||
<maven.compiler.target>8</maven.compiler.target> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.cyclonedx</groupId> | ||
<artifactId>cyclonedx-maven-plugin</artifactId> | ||
<version>${current.version}</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>makeAggregateBom</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
|
||
<schemaVersion>1.4</schemaVersion> | ||
<includeBomSerialNumber>true</includeBomSerialNumber> | ||
<includeCompileScope>true</includeCompileScope> | ||
<includeProvidedScope>false</includeProvidedScope> | ||
<includeRuntimeScope>false</includeRuntimeScope> | ||
<includeSystemScope>false</includeSystemScope> | ||
<includeTestScope>false</includeTestScope> | ||
<includeLicenseText>false</includeLicenseText> | ||
<outputFormat>all</outputFormat> | ||
</configuration> | ||
|
||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |