Refactor code structure and optimize performance across multiple modules

This commit is contained in:
StellaOps Bot
2025-12-26 20:03:22 +02:00
parent c786faae84
commit b4fc66feb6
3353 changed files with 88254 additions and 1590657 deletions

View File

@@ -7,11 +7,13 @@
using StellaOps.Scanner.CallGraph.Node;
using Xunit;
using StellaOps.TestKit;
namespace StellaOps.Scanner.CallGraph.Tests;
public class NodeCallGraphExtractorTests
{
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ParsesValidJson()
{
// Arrange
@@ -56,7 +58,8 @@ public class NodeCallGraphExtractorTests
Assert.Single(result.Entrypoints);
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ParsesNodeWithPosition()
{
// Arrange
@@ -92,7 +95,8 @@ public class NodeCallGraphExtractorTests
Assert.Equal(5, node.Position.Column);
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ParsesEdgeWithSite()
{
// Arrange
@@ -127,7 +131,8 @@ public class NodeCallGraphExtractorTests
Assert.Equal(25, edge.Site.Line);
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ThrowsOnEmptyInput()
{
// Arrange & Act & Assert
@@ -135,7 +140,8 @@ public class NodeCallGraphExtractorTests
Assert.Throws<ArgumentNullException>(() => BabelResultParser.Parse(null!));
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ParsesNdjson()
{
// Arrange
@@ -152,7 +158,8 @@ public class NodeCallGraphExtractorTests
Assert.Equal("app", result.Module);
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void JsEntrypointInfo_HasCorrectProperties()
{
// Arrange
@@ -184,7 +191,8 @@ public class NodeCallGraphExtractorTests
Assert.Equal("GET", ep.Method);
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ParsesSinks()
{
// Arrange
@@ -229,7 +237,8 @@ public class NodeCallGraphExtractorTests
Assert.Equal(42, sink.Site.Line);
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ParsesMultipleSinkCategories()
{
// Arrange
@@ -269,7 +278,8 @@ public class NodeCallGraphExtractorTests
Assert.Contains(result.Sinks, s => s.Category == "file_write");
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ParsesEmptySinks()
{
// Arrange
@@ -290,7 +300,8 @@ public class NodeCallGraphExtractorTests
Assert.Empty(result.Sinks);
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ParsesMissingSinks()
{
// Arrange - sinks field omitted entirely
@@ -310,7 +321,8 @@ public class NodeCallGraphExtractorTests
Assert.Empty(result.Sinks);
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public void BabelResultParser_ParsesSinkWithoutSite()
{
// Arrange