Skip to content

Introduction

codecov

Introduction

Integrates’ backend is an HTTP web service written in Python, served with Hypercorn and built with Starlette.

Principles

  • Functional: The codebase favors functions over classes and avoids direct mutations.
  • No need to reinvent the wheel: Leveraging third-party packages when available.

Getting started

To view changes reflected as you edit the code, you can run:

Terminal window
m . /integrates

As explained in the introduction section, this command launches a replica of the platform using the test data defined in common/schemas/database-design.json. Inside the schemas/tables directory you find all the data launched by default. This is useful as it allows you to modify anything you wish to test, for example:

{
enrolled: true
is_concurrent_session: false
is_registered: true
role: "admin"
last_name: "Manager"
last_login_date: "2020-12-31T16:50:17+00:00"
...
legal_remember: true
registration_date: "2018-02-28T16:54:12+00:00"
sk: "USER#__adminEmail__"
pk_2: "USER#all"
pk: "USER#__adminEmail__"
first_name: "Integrates"
email: "__adminEmail__"
sk_2: "USER#__adminEmail__"
},

This portion of the code that is in the stakeholder_state.cue file defines your local user, with this you can modify the role, registration status, and all metadata information. Remember, after doing any modifications to the local database you need to run the following:

Terminal window
m . /common/schemas/export

And update your local environment so your changes can be reflected.

More on this can be found in the database design section.

Linting

The back uses Prospector and Mypy to enforce compliance with a defined coding style.

To view linting issues, run:

Terminal window
m . /lintPython/dirOfModules/integrates/name of the module

To view and auto-fix formatting issues, run:

Terminal window
m . /formatPython/default

Testing

The back-end uses pytest as a test runner.

To execute unit tests on your computer, run:

Terminal window
m . /integrates/back/test/unit 'changes_db'
Terminal window
m . /integrates/back/test/unit 'not_changes_db'

To execute a functional test on your computer, run:

Terminal window
m . /integrates/back/test/functional 'name of the test'

Core

The back-end codebase consists of several modules, classified into three layers: API, business logic, and data access.

Web server

The back-end is served by Hypercorn, a program with two sides:

  • 🌐 On one side it speaks the HTTP protocol, receiving requests and sending responses.
  • 🐍 On the other it speaks Python (ASGI), passing request data to Python code for processing.

This is lower-level functionality is challenging to build an application directly on top of, which is where Starlette comes in handy.

Starlette abstracts requests handling, and provides utilities for building web applications, such as declaring routes, middlewares, and managing sessions and cookies.

API layer

This layer provides an external interface for interacting with services implemented as a GraphQL API. You can learn more here.

You can find it in the back/src/api directory.

Business logic layer

Implements core functionality of the application, processing inputs and producing outputs based on business requirements.

You can find it across modules in files usually named domain.py.

Data access layer

Declares the structure of each entity used in the application and interacts with database-specific modules to read from and write to a data store.

It provides functions to perform CRUD operations for each entity, taking care of batching and caching using dataloaders. Designed to be agnostic for easy swapping of the underlying data store.

You can find it in the back/src/db_model, back/src/dynamodb and back/src/search directories.