Skip to content

DEFRA/forms-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

forms-manager

Core delivery platform Node.js Backend Template.

Requirements

Node.js

Please install the Node.js version in .nvmrc using Node Version Manager nvm via:

cd forms-manager
nvm use

Local development

Setup

  1. Install Docker

  2. Bring up runtime dependencies

docker compose up
  1. Create a .env file with the following mandatory environment variables populated at root level:
MONGO_URI=""
MONGO_DATABASE=""
OIDC_JWKS_URI=""
OIDC_VERIFY_AUD=""
OIDC_VERIFY_ISS=""
ROLE_EDITOR_GROUP_ID=""
HTTP_PROXY=
HTTPS_PROXY=
NO_PROXY=

For proxy options, see https://www.npmjs.com/package/proxy-from-env which is used by https://github.com/TooTallNate/proxy-agents/tree/main/packages/proxy-agent. It's currently supports Hapi Wreck only, e.g. in the JWKS lookup.

Development

To run the application in development mode run:

npm run dev

Production

To mimic the application running in production mode locally run:

npm start

Npm scripts

All available Npm scripts can be seen in package.json To view them in your command line run:

npm run

API endpoints

Endpoint Description
GET: /health Health
GET: /v1/entities Entities
GET: /v1/entities/<entityId> Entity by ID
PATCH: /forms/<id> Update Form by ID

Calling API endpoints

Postman

A Postman collection and environment are available for making calls to the Teams and Repositories API. Simply import the collection and environment into Postman.

Docker

Development image

Build:

docker build --target development --no-cache --tag forms-manager:development .

Run:

docker run -e GITHUB_API_TOKEN -p 3008:3008 forms-manager:development

Production image

Build:

docker build --no-cache --tag forms-manager .

Run:

docker run -e GITHUB_API_TOKEN -p 3001:3001 forms-manager

Integration testing

Local development with the integration test environment

If you want to run the API with the integration test environment (which includes mock OIDC and test MongoDB):

  1. Set up the integration test environment:
npm run test:integration:setup    # Start OIDC mock server and MongoDB
npm run test:integration:start    # Start the API service
npm run test:integration:wait     # Wait for the app to be ready
  1. The API will be available at http://localhost:3001

  2. When finished, clean up the environment:

npm run test:integration:stop

Running Postman tests locally

To run the integration tests manually in Postman:

  1. Set up the integration test environment as described above
  2. Import the test collection and environment into Postman:
  • Collection: test/integration/postman/forms-manager-ci-mock.postman_collection.json
  • Environment: test/integration/postman/forms-manager-ci-mock.postman_environment.json
  1. Ensure the environment variable root is set to http://localhost:3001
  2. Run the collection or individual requests through the Postman GUI
  3. Clean up the environment when done with npm run test:integration:stop

Adding new API tests

To extend the integration test suite with new test cases:

  1. Open the collection in Postman:
  • Import the collection if you haven't already: test/integration/postman/forms-manager-ci-mock.postman_collection.json
  • Import the environment: test/integration/postman/forms-manager-ci-mock.postman_environment.json
  1. Create a new request:
  • Right-click on the appropriate folder in the collection and select "Add Request"
  • Name it clearly, describing what it tests (e.g., "Create Form - Valid Input")
  • Set the HTTP method (GET, POST, PUT, etc.) and URL using environment variables: {{root}}/forms
  1. Configure authentication:
  • In the Authorization tab, select "Bearer Token"
  • Use {{accessToken}} as the token value (the collection's pre-request scripts will handle token acquisition)
  1. Add request body or parameters if needed:
  • For POST/PUT requests, add your JSON body in the Body tab
  • Use the "raw" format and select JSON
  1. Add pre-request scripts if required:
  • Use the Pre-request Script tab for setup logic
  • Create test data or variables needed for this specific test
  1. Add test assertions:
  • In the Tests tab, write assertions to verify the response

  • Example:

    pm.test('Status code is 200', function () {
      pm.response.to.have.status(200)
    })
    
    pm.test('Response has expected data', function () {
      const responseData = pm.response.json()
      pm.expect(responseData).to.have.property('id')
      pm.expect(responseData.name).to.eql('Expected Name')
    })
  1. Test locally:
  • Start the integration environment with npm run test:integration:setup && npm run test:integration:start && npm run test:integration:wait
  • Run your new request and verify it passes
  • Make adjustments as needed
  1. Export and commit:
  • Export the updated collection: File → Export → Collection
  • Save it to test/integration/postman/forms-manager-ci-mock.postman_collection.json, overwriting the existing file
  • Commit the updated collection file to the repository
  1. Update documentation if needed:

If you're adding endpoints for new features, update the API endpoints section in this README

The CI pipeline will automatically run your new test along with the existing ones on PRs and merges to main.

Licence

THIS INFORMATION IS LICENSED UNDER THE CONDITIONS OF THE OPEN GOVERNMENT LICENCE found at:

http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3

The following attribution statement MUST be cited in your products and applications when using this information.

Contains public sector information licensed under the Open Government license v3

About the licence

The Open Government Licence (OGL) was developed by the Controller of Her Majesty's Stationery Office (HMSO) to enable information providers in the public sector to license the use and re-use of their information under a common open licence.

It is designed to encourage use and re-use of information freely and flexibly, with only a few conditions.

About

Git repository for service forms-manager

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 11