Copy of Sprint testing (folio-testing-sprint)

The purpose of the Sprint testing environment is to validate the functionality implemented by development teams during the sprint (2 weeks).

According to the internal processes and flow Sprint testing environment should be provisioned/updated and read on the 2nd Wednesday of the sprint.

As this environment is based on the big dataset (Bugfest) we recommend for the DevOps team start environment preparation in advance on the 2nd Tuesday of the sprint.

Preparation (2nd Tuesday of the sprint)

1) Destroy the current environment (namespace)

First of all, we need to destroy the current revision of the Sprint testing environment. We expect that all testing-related activities have been finished to this date.

The purpose of this exercise (why do we need to destroy instead of just update?) is to validate all new functionality and migration in conditions close to the real customer process, when customer environments update from the previous release to the current one.

Example:

  • R1-2023 → Snapshot (Sprint 170) - Correct
  • R1-2023 → Snapshot (Sprint 169) → Snapshot (Sprint 170) - Incorrect

For namespace deletion (destroy) we use Project pipeline

2) Run Data Migration pipeline

As mentioned above, the purpose of this activity is also to measure the time of backend modules migration (update) and schema validation to compare DB schemas in clean and migrated setup.

During this activity, we also should follow the same approach with versions. This is mean that we should run Data Migration pipeline to compare the previous release with the current one (Example: R1-2023 → Snapshot (Sprint 170)).

Result of running Data Migration pipeline:

  • Schema Diffs Report
  • Data Migration Time Report
  • JIRA tickets if schema inconsistency

3) Provision environment (namespace) based on Bugfest DB snapshot

Provision Sprint testing environment from previous release Bugfest RDS snapshot (For example (R1-2023): opbf-bugfest-snapshot-04-12-2023).

Requirements:

  • DB: RDS
  • Kafka: Shared (AWS MSK). But also possible built-in with at least 50Gb of disk space and 2 brokers
  • OpenSearch: Shared (AWS OpenSearch)
  • Config type (For backend modules): testing or performance


Important

As this environment uses the Bugfest dataset, it is highly recommended to use testing or performance config type for helm deployment of backend modules during provisioning and future updates.

4) Update to the latest previous release version

Generally, we take a Bugfest snapshot at the beginning of the release cycle (to avoid populating dummy and invalid data).

That is why we need first all actualize all modules versions to the latest version of the previous release after environment provisioning and before upgrading to the current release version to include all hotfixes, etc.

For modules update we use backend-modules-deploy-branch pipeline

Example: R1-2023-GA → R1-2023-hotfix-2

5) Update to the latest current release version (snapshot)

At this stage, we update the environment to the latest current release versions of modules. 

For modules update we use backend-modules-deploy-branch pipeline

Example: R1-2023-hotfix-2 → snapshot

6) Run indexation

Temporary

Set ENV variable for mod-search before index

SEARCH_BY_ALL_FIELDS_ENABLED=true

Final update (2nd Wednesday of the sprint)

1) Update to the latest current release version (one more time)

We expect that it could be the situation that some development features have been merged in the morning or during the previous day, that is why we should update env one more time with backend-modules-deploy-branch pipeline to the latest current release versions (snapshot)

2) Create additional tenants

At this stage, we need to create some additional tenants (if required) with create-tenant pipeline.

For the current moment required tenants are:

  • tenantId: aqa

Known issues

IssueSprintReleaseDescriptionSolution/Workaround
Password reset link
R2-2023At the current moment, our pipelines do not have an implemented functionality to update the password reset link in tenant configuration for existing tenants.Update configuration with Postman PUT request
Search by all fields
R2-2023At the current moment, our pipelines do not have an implemented functionality.https://github.com/folio-org/mod-search#search-by-all-field-values
IndexationSprint 170R2-2023There is an issue with latests mod-search version mod-search-2.1.0-SNAPSHOT.359Recommended to use mod-search-2.1.0-SNAPSHOT.357
Deprecated permissions
R2-2023After all steps, remove deprecated permissionshttps://s3.amazonaws.com/foliodocs/api/mod-permissions/r/permissions.html#perms_purge_deprecated_post
call-number-type
R2-2023There is an issue with call-number-type
UPDATE fs09000000_mod_inventory_storage.call_number_type
SET jsonb = jsonb ||
  '{
     "name": "Dewey Decimal classification (local)"
   }'
WHERE jsonb->>'name'='Dewey Decimal classification';
UPDATE fs09000000_mod_inventory_storage.call_number_type
SET jsonb = jsonb ||
  '{
     "name": "Library of Congress classification (local)"
   }'
WHERE jsonb->>'name'='Library of Congress classification';
UPDATE fs09000000_mod_inventory_storage.call_number_type
SET jsonb = jsonb ||
  '{
     "name": "National Library of Medicine classification (local)"
   }'
WHERE jsonb->>'name'='National Library of Medicine classification';
UPDATE fs09000000_mod_inventory_storage.call_number_type
SET jsonb = jsonb ||
  '{
     "name": "Other scheme (local)"
   }'
WHERE jsonb->>'name'='Other scheme';
UPDATE fs09000000_mod_inventory_storage.call_number_type
SET jsonb = jsonb ||
  '{
     "name": "Superintendent of Documents classification (local)"
   }'
WHERE jsonb->>'name'='Superintendent of Documents classification';

INSERT INTO fs09000000_mod_inventory_storage.call_number_type(id, jsonb)
    VALUES ('fc388041-6cd0-4806-8a74-ebe3b9ab4c6e','{
  "id": "fc388041-6cd0-4806-8a74-ebe3b9ab4c6e",
  "name": "Superintendent of Documents classification",
  "source": "system"
}'), ('6caca63e-5651-4db6-9247-3205156e9699','{
  "id": "6caca63e-5651-4db6-9247-3205156e9699",
  "name": "Other scheme",
  "source": "system"
}'), ('054d460d-d6b9-4469-9e37-7a78a2266655','{
  "id": "054d460d-d6b9-4469-9e37-7a78a2266655",
  "name": "National Library of Medicine classification",
  "source": "system"
}'), ('95467209-6d7b-468b-94df-0f5d7ad2747d','{
  "id": "95467209-6d7b-468b-94df-0f5d7ad2747d",
  "name": "Library of Congress classification",
  "source": "system"
}'), ('03dd64d0-5626-4ecd-8ece-4531e0069f35','{
  "id": "03dd64d0-5626-4ecd-8ece-4531e0069f35",
  "name": "Dewey Decimal classification",
  "source": "system"
}');