generated from DFE-Digital/govuk-dotnet-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce3a3c1
commit ff65498
Showing
13 changed files
with
438 additions
and
11 deletions.
There are no files selected for viewing
148 changes: 148 additions & 0 deletions
148
Childrens-Social-Care-CPD-Tests/Controllers/ContentControllerBreadcrumbTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
using Childrens_Social_Care_CPD; | ||
using Childrens_Social_Care_CPD.Contentful; | ||
using Childrens_Social_Care_CPD.Contentful.Models; | ||
using Childrens_Social_Care_CPD.Controllers; | ||
using Childrens_Social_Care_CPD.Models; | ||
using Contentful.Core.Models; | ||
using Contentful.Core.Search; | ||
using FluentAssertions; | ||
using Microsoft.AspNetCore.Http; | ||
using Microsoft.AspNetCore.Mvc; | ||
using Microsoft.AspNetCore.Mvc.ViewFeatures; | ||
using Microsoft.Extensions.Azure; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
||
namespace Childrens_Social_Care_CPD_Tests.Controllers; | ||
|
||
public class ContentControllerBreadcrumbTests | ||
{ | ||
private ContentController _contentController; | ||
private IRequestCookieCollection _cookies; | ||
private HttpContext _httpContext; | ||
private HttpRequest _httpRequest; | ||
private ICpdContentfulClient _contentfulClient; | ||
|
||
private void SetContent(List<KeyValuePair<string, Content>> content) | ||
{ | ||
var contentCollections = new List<KeyValuePair<string, ContentfulCollection<Content>>>(); | ||
foreach (var contentDefinition in content) | ||
{ | ||
var contentCollection = new ContentfulCollection<Content>(); | ||
|
||
contentCollection.Items = contentDefinition.Value == null | ||
? new List<Content>() | ||
: contentCollection.Items = new List<Content> { contentDefinition.Value }; | ||
|
||
contentCollections.Add(new KeyValuePair<string, ContentfulCollection<Content>>(contentDefinition.Key, contentCollection)); | ||
} | ||
|
||
_contentfulClient | ||
.GetEntries(Arg.Any<QueryBuilder<Content>>(), Arg.Any<CancellationToken>()) | ||
.Returns(x => { | ||
var query = x.Arg<QueryBuilder<Content>>().Build(); | ||
foreach (var contentDefinition in content) | ||
{ | ||
if (query.Contains("fields.id=" + contentDefinition.Key)) return contentCollections.First(x => x.Key == contentDefinition.Key).Value; | ||
} | ||
return new ContentfulCollection<Content>(); | ||
}); | ||
|
||
} | ||
|
||
private void SetContent() { | ||
var page = new Content() | ||
{ | ||
Id = "page", | ||
Title = "Content Page" | ||
}; | ||
|
||
var content = new List<KeyValuePair<string, Content>>() | ||
{ | ||
new KeyValuePair<string, Content>("page", page), | ||
}; | ||
|
||
SetContent(content); | ||
} | ||
|
||
[SetUp] | ||
public void SetUp() | ||
{ | ||
_cookies = Substitute.For<IRequestCookieCollection>(); | ||
_httpContext = Substitute.For<HttpContext>(); | ||
_httpRequest = Substitute.For<HttpRequest>(); | ||
var controllerContext = Substitute.For<ControllerContext>(); | ||
|
||
_httpRequest.Cookies.Returns(_cookies); | ||
_httpContext.Request.Returns(_httpRequest); | ||
|
||
controllerContext.HttpContext = _httpContext; | ||
|
||
_contentfulClient = Substitute.For<ICpdContentfulClient>(); | ||
|
||
_contentController = new ContentController(_contentfulClient) | ||
{ | ||
ControllerContext = controllerContext, | ||
TempData = Substitute.For<ITempDataDictionary>() | ||
}; | ||
} | ||
|
||
[TearDown] | ||
public void TearDown() | ||
{ | ||
_contentfulClient = Substitute.For<ICpdContentfulClient>(); | ||
} | ||
|
||
[Test] | ||
public async Task Index_Sets_Breadcrumbs_In_ContextModel() | ||
{ | ||
// arrange | ||
var parentPage = new Content() | ||
{ | ||
Id = "parent", | ||
Title = "Parent Page" | ||
}; | ||
var childPage = new Content(){ | ||
Id = "child", | ||
Title = "Child Page", | ||
ParentPages = new List<Content>(){parentPage} | ||
}; | ||
|
||
var content = new List<KeyValuePair<string, Content>>(){ | ||
new KeyValuePair<string, Content>("parent", parentPage), | ||
new KeyValuePair<string, Content>("child", childPage) | ||
}; | ||
|
||
SetContent(content); | ||
|
||
// act | ||
await _contentController.Index("child"); | ||
var actual = _contentController.ViewData["ContextModel"] as ContextModel; | ||
var breadcrumbTrail = actual?.BreadcrumbTrail; | ||
|
||
// assert | ||
actual.Should().NotBeNull(); | ||
breadcrumbTrail[0].Key.Should().Be("Child Page"); | ||
breadcrumbTrail[0].Value.Should().Be("child"); | ||
breadcrumbTrail[1].Key.Should().Be("Parent Page"); | ||
breadcrumbTrail[1].Value.Should().Be("parent"); | ||
} | ||
|
||
[Test] | ||
public async Task Index_Sets_Blank_Breadcrumbs_In_ContextModel_If_Page_Has_No_Parent() | ||
{ | ||
// arrange | ||
SetContent(); | ||
|
||
// act | ||
await _contentController.Index("page"); | ||
var actual = _contentController.ViewData["ContextModel"] as ContextModel; | ||
var breadcrumbTrail = actual?.BreadcrumbTrail; | ||
|
||
// assert | ||
actual.Should().NotBeNull(); | ||
breadcrumbTrail.Should().BeEmpty(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
...rens-Social-Care-CPD/SessionExtensions.cs → ...-Care-CPD/Extensions/SessionExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
using Microsoft.CodeAnalysis.CSharp.Syntax; | ||
using Newtonsoft.Json; | ||
|
||
#nullable enable | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
Childrens-Social-Care-CPD/Views/Shared/_BreadcrumbTrail.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@using Childrens_Social_Care_CPD.Contentful.Models; | ||
|
||
@{ | ||
var contextModel = (ContextModel)ViewData["ContextModel"]; | ||
var breadcrumbs = contextModel.BreadcrumbTrail; | ||
breadcrumbs.Reverse(); | ||
} | ||
|
||
<div class="govuk-breadcrumbs govuk-breadcrumbs--collapse-on-mobile"> | ||
<ul> | ||
@foreach(KeyValuePair<string, string> trailItem in breadcrumbs) | ||
{ | ||
<li class="govuk-breadcrumbs__list-item"> | ||
<a class="govuk-breadcrumbs__link" href="@trailItem.Value"> | ||
@trailItem.Key | ||
</a> | ||
</li> | ||
} | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.