Skip to content

Commit

Permalink
feat:added stub page
Browse files Browse the repository at this point in the history
  • Loading branch information
Demwunz committed Dec 20, 2023
1 parent 814e531 commit 1e8065f
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/controllers/return-requirements.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,17 @@ async function saveNote (request, h) {
return h.redirect(`/system/return-requirements/${id}/returns-check-your-answers`)
}

async function selectPoints (request, h) {
const { sessionId } = request.params

const session = await SessionModel.query().findById(sessionId)

return h.view('return-requirements/points.njk', {
activeNavBar: 'search',
...session
})
}

module.exports = {
addANote,
noReturnsCheckYourAnswers,
Expand All @@ -155,5 +166,6 @@ module.exports = {
saveReturnsCheckYourAnswers,
saveReturnsHowDoYouWant,
saveReturnStartDate,
selectPoints,
selectReturnStartDate
}
12 changes: 12 additions & 0 deletions app/routes/return-requirement.routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,18 @@ const routes = [
},
description: 'Save note'
}
}, {
method: 'GET',
path: '/return-requirements/{sessionId}/points',
handler: ReturnRequirementsController.selectPoints,
options: {
auth: {
access: {
scope: ['billing']
}
},
description: 'Returns select points page'
}
}
]

Expand Down
29 changes: 29 additions & 0 deletions app/views/return-requirements/points.njk
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{% extends 'layout.njk' %}
{% from "govuk/components/back-link/macro.njk" import govukBackLink %}
{% from "govuk/components/button/macro.njk" import govukButton %}

{% set title = "Select the points for the return requirement" %}
{% set rootLink = "/system/return-requirements/" + id %}

{% block breadcrumbs %}
{# Back link #}
{{
govukBackLink({
text: 'Back',
href: rootLink + "/purpose"
})
}}
{% endblock %}

{% block content %}
{# Main heading #}
<div class="govuk-body">
<h1 class="govuk-heading-xl govuk-!-margin-bottom-3">{{ title }}</h1>
</div>

<form method="post">
<div class="govuk-body">
{{ govukButton({ text: "Continue" }) }}
</div>
</form>
{% endblock %}
20 changes: 20 additions & 0 deletions test/controllers/return-requirements.controller.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,24 @@ describe('Return requirements controller', () => {
})
})
})

describe('GET /return-requirements/{sessionId}/points', () => {
const options = {
method: 'GET',
url: '/return-requirements/64924759-8142-4a08-9d1e-1e902cd9d316/points',
auth: {
strategy: 'session',
credentials: { scope: ['billing'] }
}
}

describe('when the request succeeds', () => {
it('returns the page successfully', async () => {
const response = await server.inject(options)

expect(response.statusCode).to.equal(200)
expect(response.payload).to.contain('Select the points for the return requirement')
})
})
})
})

0 comments on commit 1e8065f

Please sign in to comment.