Skip to content

Commit

Permalink
Refine LIFT testing (#2739)
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec authored Nov 6, 2023
1 parent 93866e5 commit 9e792a5
Show file tree
Hide file tree
Showing 3 changed files with 137 additions and 12 deletions.
117 changes: 117 additions & 0 deletions Backend.Tests/Controllers/LiftControllerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,38 @@ private static async Task<string> DownloadAndReadLift(LiftController liftControl
return liftText;
}

[Test]
public void TestUploadLiftFileNoPermission()
{
_liftController.ControllerContext.HttpContext = PermissionServiceMock.UnauthorizedHttpContext();
var result = _liftController.UploadLiftFile(_projId, new FileUpload()).Result;
Assert.That(result, Is.InstanceOf<ForbidResult>());
}

[Test]
public void TestUploadLiftFileInvalidProjectId()
{
var result = _liftController.UploadLiftFile("../hack", new FileUpload()).Result;
Assert.That(result, Is.InstanceOf<UnsupportedMediaTypeResult>());
}

[Test]
public void TestUploadLiftFileAlreadyImported()
{
var projId = _projRepo.Create(new Project { Name = "already has import", LiftImported = true }).Result!.Id;
var result = _liftController.UploadLiftFile(projId, new FileUpload()).Result;
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
Assert.That(((BadRequestObjectResult)result).Value, Contains.Substring("LIFT"));
}

[Test]
public void TestUploadLiftFileBadFile()
{
var result = _liftController.UploadLiftFile(_projId, new FileUpload()).Result;
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
Assert.That(((BadRequestObjectResult)result).Value, Is.InstanceOf<string>());
}

[Test]
public void TestUploadLiftFileAndGetWritingSystems()
{
Expand Down Expand Up @@ -271,6 +303,21 @@ public void TestFinishUploadLiftFileNothingToFinish()
Assert.That(_liftService.RetrieveImport(UserId), Is.Null);
}

[Test]
public void TestFinishUploadLiftFileNoPermission()
{
_liftController.ControllerContext.HttpContext = PermissionServiceMock.UnauthorizedHttpContext();
var result = _liftController.FinishUploadLiftFile(_projId).Result;
Assert.That(result, Is.InstanceOf<ForbidResult>());
}

[Test]
public void TestFinishUploadLiftFileInvalidProjectId()
{
var result = _liftController.FinishUploadLiftFile("../hack", UserId).Result;
Assert.That(result, Is.InstanceOf<UnsupportedMediaTypeResult>());
}

[Test]
public async Task TestModifiedTimeExportsToLift()
{
Expand All @@ -285,6 +332,35 @@ public async Task TestModifiedTimeExportsToLift()
Assert.That(liftContents, Does.Contain("dateModified=\"2000-01-01T00:00:00Z\""));
}

[Test]
public void TestExportLiftFileNoPermission()
{
_liftController.ControllerContext.HttpContext = PermissionServiceMock.UnauthorizedHttpContext();
var result = _liftController.ExportLiftFile(_projId).Result;
Assert.That(result, Is.InstanceOf<ForbidResult>());
}

[Test]
public void TestExportLiftFileInvalidProjectId()
{
var result = _liftController.ExportLiftFile("../hack").Result;
Assert.That(result, Is.InstanceOf<UnsupportedMediaTypeResult>());
}

[Test]
public void TestExportLiftFileNoProject()
{
var result = _liftController.ExportLiftFile("non-existent-project").Result;
Assert.That(result, Is.InstanceOf<NotFoundObjectResult>());
}

[Test]
public void TestExportLiftFileNoWordsInProject()
{
var result = _liftController.ExportLiftFile(_projId).Result;
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
}

[Test]
public void TestExportInvalidProjectId()
{
Expand All @@ -294,6 +370,47 @@ public void TestExportInvalidProjectId()
Throws.TypeOf<MissingProjectException>());
}

[Test]
public void TestDownloadLiftFileNoPermission()
{
_liftController.ControllerContext.HttpContext = PermissionServiceMock.UnauthorizedHttpContext();
var result = _liftController.DownloadLiftFile(_projId).Result;
Assert.That(result, Is.InstanceOf<ForbidResult>());
}

[Test]
public void TestCanUploadLiftNoPermission()
{
_liftController.ControllerContext.HttpContext = PermissionServiceMock.UnauthorizedHttpContext();
var result = _liftController.CanUploadLift(_projId).Result;
Assert.That(result, Is.InstanceOf<ForbidResult>());
}

[Test]
public void TestCanUploadLiftInvalidProjectId()
{
var result = _liftController.CanUploadLift("../hack").Result;
Assert.That(result, Is.InstanceOf<UnsupportedMediaTypeResult>());
}

[Test]
public void TestCanUploadLiftFalse()
{
var projId = _projRepo.Create(new Project { Name = "has import", LiftImported = true }).Result!.Id;
var result = _liftController.CanUploadLift(projId).Result;
Assert.That(result, Is.InstanceOf<OkObjectResult>());
Assert.That(((OkObjectResult)result).Value, Is.False);
}

[Test]
public void TestCanUploadLiftTrue()
{
var projId = _projRepo.Create(new Project { Name = "has no import", LiftImported = false }).Result!.Id;
var result = _liftController.CanUploadLift(projId).Result;
Assert.That(result, Is.InstanceOf<OkObjectResult>());
Assert.That(((OkObjectResult)result).Value, Is.True);
}

/// <summary>
/// Create three words and delete one. Ensure that the deleted word is still exported to Lift format and marked
/// as deleted.
Expand Down
3 changes: 2 additions & 1 deletion Backend.Tests/Mocks/ProjectRepositoryMock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ public Task<ResultOfUpdate> Update(string projectId, Project project)

public Task<bool> CanImportLift(string projectId)
{
return Task.FromResult(true);
var project = _projects.Find(p => p.Id == projectId);
return Task.FromResult(project?.LiftImported != true);
}
}
}
29 changes: 18 additions & 11 deletions Backend/Services/LiftService.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.IO.Compression;
using System.Linq;
Expand Down Expand Up @@ -944,16 +945,17 @@ public void ProcessRangeElement(string range, string id, string guid, string par

// The following are unused and are not implemented, but may still be called by the Lexicon Merger
// They may be useful later if we need to add more complex attributes to words in The Combine
[ExcludeFromCodeCoverage]
public LiftExample GetOrMakeExample(LiftSense sense, Extensible info)
{
return new LiftExample { Content = new LiftMultiText() };
}

[ExcludeFromCodeCoverage]
public LiftObject GetOrMakeParentReversal(LiftObject parent, LiftMultiText contents, string type)
{
return new LiftReversal();
}

[ExcludeFromCodeCoverage]
public LiftSense GetOrMakeSubsense(LiftSense sense, Extensible info, string rawXml)
{
return new LiftSense(info, new Guid(), sense)
Expand All @@ -962,35 +964,40 @@ public LiftSense GetOrMakeSubsense(LiftSense sense, Extensible info, string rawX
Gloss = new LiftMultiText()
};
}

[ExcludeFromCodeCoverage]
public LiftObject MergeInEtymology(LiftEntry entry, string source, string type, LiftMultiText form,
LiftMultiText gloss, string rawXml)
LiftMultiText gloss, string rawXml)
{
return new LiftEtymology();
}

[ExcludeFromCodeCoverage]
public LiftObject MergeInReversal(
LiftSense sense, LiftObject parent, LiftMultiText contents, string type, string rawXml)
LiftSense sense, LiftObject parent, LiftMultiText contents, string type, string rawXml)
{
return new LiftReversal();
}

[ExcludeFromCodeCoverage]
public LiftObject MergeInVariant(LiftEntry entry, LiftMultiText contents, string rawXml)
{
return new LiftVariant();
}

[ExcludeFromCodeCoverage]
public void EntryWasDeleted(Extensible info, DateTime dateDeleted) { }
[ExcludeFromCodeCoverage]
public void MergeInExampleForm(LiftExample example, LiftMultiText multiText) { }

[ExcludeFromCodeCoverage]
public void MergeInPicture(LiftSense sense, string href, LiftMultiText caption) { }
[ExcludeFromCodeCoverage]
public void MergeInRelation(
LiftObject extensible, string relationTypeName, string targetId, string rawXml)
LiftObject extensible, string relationTypeName, string targetId, string rawXml)
{ }
[ExcludeFromCodeCoverage]
public void MergeInSource(LiftExample example, string source) { }
[ExcludeFromCodeCoverage]
public void MergeInTranslationForm(
LiftExample example, string type, LiftMultiText multiText, string rawXml)
LiftExample example, string type, LiftMultiText multiText, string rawXml)
{ }
[ExcludeFromCodeCoverage]
public void ProcessFieldDefinition(string tag, LiftMultiText description) { }
}
}
Expand Down

0 comments on commit 9e792a5

Please sign in to comment.