8000 GitHub - communitiesuk/funding-service: Funding as a Platform
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

communitiesuk/funding-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
10000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Funding Service

Local development setup

Pre-requisites

  • Node (version defined in .nvmrc). We recommend using nvm to manage node versions.
  • uv installed globally
  • Copy .env.example to fresh .env file and leave values as is, or use direnv/.envrc for these variables.

Quickstart

  1. nvm use
  2. make bootstrap
  3. make up

If you see permission errors around certs (eg. ERROR: failed to read the CA key: open certs/rootCA-key.pem: permission denied) follow these instructions instead of step 2. above.

Assumes your are on an MHCLG-managed macbook and you have 2 accounts. Your ADMIN_USER is the account with full admin permissions, and your STANDARD_USER is the normal account you use for day to day work.

  1. su <ADMIN_USER>
  2. sudo make certs Read the output - should be no apparent errors.
  3. chown -R <STANDARD_USER>:staff certs
  4. exit to return to your standard user shell.
  5. make pre-commit
  6. make vite
  7. make clean-build
  8. Continue with step 3. above
  • If you hit the error SecTrustSettingsSetTrustSettings: The authorization was denied since no user interaction was possible. when doing the above su - steps, then you may need to actually logout and login as your admin user instead of using su
  • If you subsequently hit git errors that mention dubious ownership in repository this is to do with changing the directory permissions above. A terminal restart should fix this.

Instructions

We use uv for managing the local Python environment. Install this tool globally and then run uv sync in this repository to install the correct python version and python dependencies.

Developers are expected to run the app locally using docker-compose. There are some helper commands in a Makefile to help bring up the service.

  • make bootstrap will create a local self-signed certificate for HTTPS during development, and set up flask-vite/vite to compile GOV.UK Frontend/our frontend assets.
  • make up / docker compose up will start the Funding Service app and expose it on https://funding.communities.gov.localhost:8080
  • make down / docker compose down will stop the Funding Service.
  • make build / docker compose build will rebuild the Funding Service image.
  • make clean-build / docker compose build --no-cache will rebuild the Funding Service image, bypassing caching. This should rarely be needed.

SSO

By default, local development and locally-run end to end tests use a stub server to implement the same interface as Microsoft SSO flow. This is so we can reliably run e2e tests locally without hitting the real SSO endpoints, and so devs don't need test Azure AD credentials to be able to use the app, making initial setup easier.

If you need to allow real SSO login locally, update the environment variables for AZURE_AD_CLIENT_ID, AZURE_AD_CLIENT_SECRET and AZURE_AD_TENANT_ID to those used by the test Azure AD and add an environment variable of AZURE_AD_BASE_URL=https://login.microsoftonline.com/ in your .env file, or comment out the LocalConfig version of this variable in the config so it falls back to the BaseConfig default. Be aware that the SSO e2e test will fail while this is enabled - don't forget to switch back to check this passes.

Tests

E2E Tests

All E2E (browser) tests should live inside /tests/e2e.

As a one-off setup step, run uv run playwright install to download and configure the browsers needed for these tests.

To run any E2E tests include the e2e option in the pytest command:

uv run pytest --e2e

This will, by default, run the browser tests headless - i.e. you won't see a browser appear.

To display the browser so you can visually inspect the test journey, add the --headed flag.

To slow the test down, add --slowmo 1000 to have Playwright insert 1 second pauses between each step so that you can follow what the test is doing more easily.

This function skips e2e or non-e2e tests depending on if they are in the e2e module under tests, so no individual tests need to be marked with the e2e marker.

Run E2E tests against an AWS environment

Additional flags must be passed to the pytest command:

  • dev: --e2e-env dev --e2e-aws-vault-profile <your_dev_aws_profile_name>
  • test: --e2e-env test --e2e-aws-vault-profile <your_test_aws_profile_name>
0