Skip to content

Commit

Permalink
Merge branch 'master' into redux-toolkit-analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec authored Nov 8, 2023
2 parents 014a2d3 + c1e208b commit d1dfe7c
Show file tree
Hide file tree
Showing 23 changed files with 1,242 additions and 984 deletions.
5 changes: 3 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
**

# Except the following.
!docs/user_guide
!nginx
!public
!src
!docs/user_guide
!.env
!.eslintrc.cjs
!dev-requirements.txt
!package*.json
!tsconfig.json
!tox.ini
!tsconfig.json

# Ignore user guide build directory.
docs/user_guide/site
69 changes: 69 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
module.exports = {
env: {
browser: true,
jest: true,
},
extends: [
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"plugin:import/recommended",
],
ignorePatterns: ["*.dic.js"],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: { jsx: true },
project: "./tsconfig.json",
},
plugins: ["@typescript-eslint", "react", "unused-imports"],
root: true,
rules: {
"import/first": "warn",
"import/newline-after-import": "warn",
"import/no-duplicates": "warn",
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"import/order": [
"warn",
{
alphabetize: { order: "asc" },
groups: [
"builtin",
"external",
["internal", "parent", "sibling", "index", "object", "type"],
],
"newlines-between": "always",
},
],
"no-undef": "off",
"prefer-const": "warn",
"react/jsx-boolean-value": "warn",
"unused-imports/no-unused-imports": "warn",
},
settings: {
react: { version: "detect" },
"import/resolver": {
typescript: { alwaysTryTypes: true },
},
},
overrides: [
{
files: ["*.ts", "*.tsx"],
extends: [
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
],
rules: {
"@typescript-eslint/explicit-function-return-type": [
"warn",
{ allowExpressions: true },
],
"@typescript-eslint/no-empty-interface": "warn",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/switch-exhaustiveness-check": "warn",
},
},
],
};
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
Loading

0 comments on commit d1dfe7c

Please sign in to comment.