mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
66 lines
1.9 KiB
C#
66 lines
1.9 KiB
C#
using System.Threading.Tasks;
|
|
using Microsoft.CodeAnalysis.CSharp.Testing;
|
|
using Microsoft.CodeAnalysis.Testing;
|
|
using Microsoft.CodeAnalysis.Testing.Verifiers;
|
|
using NUnit.Framework;
|
|
using VerifyCS =
|
|
Microsoft.CodeAnalysis.CSharp.Testing.NUnit.AnalyzerVerifier<Robust.Analyzers.DependencyAssignAnalyzer>;
|
|
|
|
namespace Robust.Analyzers.Tests;
|
|
|
|
[Parallelizable(ParallelScope.All | ParallelScope.Fixtures)]
|
|
[TestFixture]
|
|
public sealed class DependencyAssignAnalyzerTest
|
|
{
|
|
private const string BaseCode = """
|
|
using System;
|
|
|
|
namespace Robust.Shared.IoC;
|
|
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public sealed class DependencyAttribute : Attribute
|
|
{
|
|
}
|
|
""";
|
|
|
|
private static Task Verifier(string code, params DiagnosticResult[] expected)
|
|
{
|
|
var test = new CSharpAnalyzerTest<DependencyAssignAnalyzer, NUnitVerifier>()
|
|
{
|
|
TestState =
|
|
{
|
|
AdditionalReferences = { typeof(DependencyAssignAnalyzer).Assembly },
|
|
Sources = { code, BaseCode }
|
|
},
|
|
};
|
|
|
|
// ExpectedDiagnostics cannot be set, so we need to AddRange here...
|
|
test.TestState.ExpectedDiagnostics.AddRange(expected);
|
|
|
|
return test.RunAsync();
|
|
}
|
|
|
|
[Test]
|
|
public async Task Test()
|
|
{
|
|
const string code = """
|
|
using Robust.Shared.IoC;
|
|
|
|
public sealed class Foo
|
|
{
|
|
[Dependency]
|
|
private object? Field;
|
|
|
|
public Foo()
|
|
{
|
|
Field = "A";
|
|
}
|
|
}
|
|
""";
|
|
|
|
await Verifier(code,
|
|
// /0/Test0.cs(10,9): warning RA0025: Tried to assign to [Dependency] field 'Field'. Remove [Dependency] or inject it via field injection instead.
|
|
VerifyCS.Diagnostic().WithSpan(10, 9, 10, 20).WithArguments("Field"));
|
|
}
|
|
}
|