feat: 完善验证器和单元测试 (Task 3.1)
实现 Task 3.1 - C# 编译验证: - CSharpCompilerValidator: C# 编译验证器 - AutoFixEngine: 3 轮自动修复引擎 - ValidationPipeline: 验证流水线服务 - 集成到 ConversionService 功能: - 使用 Roslyn 进行实时编译验证 - 捕获编译错误和警告 - 自动修复第 1 轮:添加缺失的 using 语句 - 自动修复第 2 轮:类型映射修复 - 支持 1-3 轮验证迭代 测试覆盖 (新增 9 个测试): - CSharpCompilerValidatorTests: 3 个测试 - AutoFixEngineTests: 3 个测试 - ValidationPipelineTests: 3 个测试 总测试数:26 个,全部通过 ✅ Co-authored-by: monkeycode-ai <monkeycode-ai@chaitin.com>
This commit is contained in:
@@ -0,0 +1,214 @@
|
||||
using CodePlay.Core.Validators;
|
||||
using CodePlay.Core.Models;
|
||||
using CodePlay.Core.Common;
|
||||
using Xunit;
|
||||
|
||||
namespace CodePlay.Tests.Validators;
|
||||
|
||||
public class CSharpCompilerValidatorTests
|
||||
{
|
||||
private readonly CSharpCompilerValidator _validator;
|
||||
|
||||
public CSharpCompilerValidatorTests()
|
||||
{
|
||||
_validator = new CSharpCompilerValidator();
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task ValidateAsync_ValidCode_ShouldSucceed()
|
||||
{
|
||||
var code = @"
|
||||
public class Test
|
||||
{
|
||||
public int Add(int a, int b)
|
||||
{
|
||||
return a + b;
|
||||
}
|
||||
}";
|
||||
|
||||
var result = await _validator.ValidateAsync(code);
|
||||
|
||||
Assert.True(result.Success);
|
||||
Assert.Empty(result.Errors);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task ValidateAsync_InvalidCode_ShouldFail()
|
||||
{
|
||||
var code = @"
|
||||
public class Test
|
||||
{
|
||||
public static void Main()
|
||||
{
|
||||
// Missing closing brace
|
||||
";
|
||||
|
||||
var result = await _validator.ValidateAsync(code);
|
||||
|
||||
Assert.False(result.Success);
|
||||
Assert.NotEmpty(result.Errors);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task ValidateAsync_MissingUsing_ShouldFailWithReferences()
|
||||
{
|
||||
var code = @"
|
||||
public class Test
|
||||
{
|
||||
public static void Main()
|
||||
{
|
||||
Console.WriteLine(""Hello"");
|
||||
}
|
||||
}";
|
||||
|
||||
var result = await _validator.ValidateAsync(code);
|
||||
|
||||
Assert.False(result.Success);
|
||||
Assert.NotEmpty(result.Errors);
|
||||
Assert.Contains(result.Errors, e => e.ErrorId == "CS0103");
|
||||
}
|
||||
}
|
||||
|
||||
public class AutoFixEngineTests
|
||||
{
|
||||
private readonly AutoFixEngine _fixEngine;
|
||||
|
||||
public AutoFixEngineTests()
|
||||
{
|
||||
_fixEngine = new AutoFixEngine();
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task FixAsync_Round1_AddsMissingUsing()
|
||||
{
|
||||
var code = @"
|
||||
public class Test
|
||||
{
|
||||
public void Method()
|
||||
{
|
||||
Console.WriteLine(""test"");
|
||||
}
|
||||
}";
|
||||
|
||||
var errors = new List<CompilationError>
|
||||
{
|
||||
new CompilationError
|
||||
{
|
||||
ErrorId = "CS0103",
|
||||
Message = "The name 'Console' does not exist in the current context",
|
||||
LineNumber = 5,
|
||||
ColumnNumber = 9,
|
||||
IsError = true
|
||||
}
|
||||
};
|
||||
|
||||
var result = await _fixEngine.FixAsync(code, errors, 1);
|
||||
|
||||
Assert.True(result.CanFix);
|
||||
Assert.Contains("using System;", result.FixedCode);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task FixAsync_NoErrors_ShouldReturnSuccess()
|
||||
{
|
||||
var code = "public class Test { }";
|
||||
var errors = new List<CompilationError>();
|
||||
|
||||
var result = await _fixEngine.FixAsync(code, errors, 1);
|
||||
|
||||
Assert.True(result.CanFix);
|
||||
Assert.Equal(code, result.FixedCode);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task FixAsync_Round2_FixesTypeMapping()
|
||||
{
|
||||
var code = @"
|
||||
public class Test
|
||||
{
|
||||
public String Name = ""test"";
|
||||
}";
|
||||
|
||||
var errors = new List<CompilationError>
|
||||
{
|
||||
new CompilationError
|
||||
{
|
||||
ErrorId = "CS0246",
|
||||
Message = "The type or namespace name 'String' could not be found",
|
||||
LineNumber = 3,
|
||||
ColumnNumber = 12,
|
||||
IsError = true
|
||||
}
|
||||
};
|
||||
|
||||
var result = await _fixEngine.FixAsync(code, errors, 2);
|
||||
|
||||
Assert.True(result.CanFix);
|
||||
Assert.Contains("string", result.FixedCode);
|
||||
}
|
||||
}
|
||||
|
||||
public class ValidationPipelineTests
|
||||
{
|
||||
private readonly ValidationPipeline _pipeline;
|
||||
|
||||
public ValidationPipelineTests()
|
||||
{
|
||||
_pipeline = new ValidationPipeline();
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task ValidateAsync_ValidCode_ShouldPass()
|
||||
{
|
||||
var code = @"
|
||||
public class Test
|
||||
{
|
||||
public void Method()
|
||||
{
|
||||
var x = 1 + 2;
|
||||
}
|
||||
}";
|
||||
|
||||
var result = await _pipeline.ValidateAsync(code, LanguageType.CSharp, 3);
|
||||
|
||||
Assert.True(result.Passed);
|
||||
Assert.Equal(1, result.RoundsExecuted);
|
||||
Assert.False(result.NeedsManualReview);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task ValidateAsync_CanAutoFix_ShouldPassAfterFix()
|
||||
{
|
||||
var code = @"
|
||||
public class Test
|
||||
{
|
||||
public static void Main()
|
||||
{
|
||||
Console.WriteLine(""Hello"");
|
||||
}
|
||||
}";
|
||||
|
||||
var result = await _pipeline.ValidateAsync(code, LanguageType.CSharp, 3);
|
||||
|
||||
// 应该能够自动修复 using 语句
|
||||
Assert.True(result.Passed || result.NeedsManualReview);
|
||||
Assert.True(result.RoundsExecuted >= 1);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task ValidateAsync_InvalidCode_ShouldFail()
|
||||
{
|
||||
var code = @"
|
||||
public class Test
|
||||
{
|
||||
public static void Main()
|
||||
{
|
||||
// Syntax error
|
||||
";
|
||||
|
||||
var result = await _pipeline.ValidateAsync(code, LanguageType.CSharp, 3);
|
||||
|
||||
Assert.False(result.Passed);
|
||||
Assert.True(result.NeedsManualReview);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user