- NUnit2046: `Assert.That(x.Count, Is.EqualTo(n))` → `Assert.That(x, Has.Count.EqualTo(n))` (or `Is.Empty` when n==0)
- NUnit2011: `Assert.That(s.Contains(x))` → `Assert.That(s, Does.Contain(x))` for richer failure messages
- CA1866: `.StartsWith("$"|"@"|":")` → `.StartsWith('$'|'@'|':')` char overload
Driven by `dotnet format analyzers --diagnostics NUnit2046 NUnit2011 CA1866`
for the cases the Roslyn fixer handles, plus a regex sweep for the remaining
`Count == n` (n>0) cases which the fixer doesn't address. CA1866 had no
associated code fix and was edited by hand (3 sites in 2 files). All tests
green (1180 passing).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
56 lines
1.7 KiB
C#
56 lines
1.7 KiB
C#
using Strata.SqlTools.SqlBreakdown.Classes;
|
|
|
|
namespace Strata.SqlTools.SqlBreakdown.Tests.SqlBreakdownCollectionTests;
|
|
|
|
/// <summary>
|
|
/// Unit tests for SqlBreakdownCollection with DROP statements.
|
|
/// </summary>
|
|
[TestFixture]
|
|
public class SqlBreakdownCollectionDropTests : SqlBreakdownCollectionTestBase
|
|
{
|
|
[Test]
|
|
public void ParseBatch_WithDropTableStatements_ParsesSuccessfully()
|
|
{
|
|
// Arrange
|
|
var collection = new SqlBreakdownCollection();
|
|
var batchSql = @"
|
|
DROP TABLE IF EXISTS OrderItems
|
|
GO
|
|
DROP TABLE IF EXISTS Orders
|
|
GO
|
|
DROP TABLE IF EXISTS Users
|
|
";
|
|
|
|
// Act
|
|
collection.ParseBatch(batchSql);
|
|
|
|
// Assert
|
|
Assert.That(collection, Has.Count.EqualTo(3));
|
|
Assert.That(collection.GetRawStatementAt(0), Does.Contain("DROP TABLE"));
|
|
Assert.That(collection.GetRawStatementAt(1), Does.Contain("DROP TABLE"));
|
|
}
|
|
|
|
[Test]
|
|
public void ParseBatch_WithDropIndexAndProcedureStatements_ParsesSuccessfully()
|
|
{
|
|
// Arrange
|
|
var collection = new SqlBreakdownCollection();
|
|
var batchSql = @"
|
|
DROP INDEX IF EXISTS idx_Users_Email ON Users
|
|
GO
|
|
DROP PROCEDURE IF EXISTS sp_GetUserById
|
|
GO
|
|
DROP VIEW IF EXISTS vw_UserOrders
|
|
";
|
|
|
|
// Act
|
|
collection.ParseBatch(batchSql);
|
|
|
|
// Assert
|
|
Assert.That(collection, Has.Count.EqualTo(3));
|
|
Assert.That(collection.GetRawStatementAt(0), Does.Contain("DROP INDEX"));
|
|
Assert.That(collection.GetRawStatementAt(1), Does.Contain("PROCEDURE"));
|
|
Assert.That(collection.GetRawStatementAt(2), Does.Contain("VIEW"));
|
|
}
|
|
}
|