31 lines
1001 B
C#
31 lines
1001 B
C#
using NUnit.Framework;
|
|
using Umbraco.Cms.Core.Services.OperationStatus;
|
|
|
|
namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Services;
|
|
|
|
public partial class ContentEditingServiceTests
|
|
{
|
|
[TestCase(true)]
|
|
[TestCase(true)]
|
|
public async Task Can_Delete(bool variant)
|
|
{
|
|
var content = await (variant ? CreateVariantContent() : CreateInvariantContent());
|
|
|
|
var result = await ContentEditingService.DeleteAsync(content.Key);
|
|
Assert.IsTrue(result.Success);
|
|
Assert.AreEqual(ContentEditingOperationStatus.Success, result.Status);
|
|
|
|
// re-get and verify deletion
|
|
content = await ContentEditingService.GetAsync(content.Key);
|
|
Assert.IsNull(content);
|
|
}
|
|
|
|
[Test]
|
|
public async Task Cannot_Delete_Non_Existing()
|
|
{
|
|
var result = await ContentEditingService.DeleteAsync(Guid.NewGuid());
|
|
Assert.IsFalse(result.Success);
|
|
Assert.AreEqual(ContentEditingOperationStatus.NotFound, result.Status);
|
|
}
|
|
}
|