Skip to main content

coveo-testing-extras

Contains extra testing tools without dependency restrictions.

temporary resource implementation: Docker Container

The docker container temporary resource can be used to prepare short-lived containers.

  • Supports building from a dockerfile
  • Supports pulling images
  • Can signal on AWS ECR logout
  • Dynamic port mapping retrieval
  • Saves log output before removing the container

Automatic AWS ECR login example

Here's how you can enhance TemporaryDockerContainerResource with automatic ECR login:

from base64 import b64decode

import boto3
from coveo_testing_extras.temporary_resource.docker_container import (
    TemporaryDockerContainerResource, 
    ECRLogoutException,
    get_docker_client
)

class WithECR(TemporaryDockerContainerResource):
    def obtain_image(self) -> None:
        try:
            super().obtain_image()
        except ECRLogoutException:
            self._do_ecr_login()
            super().obtain_image()

    def _do_ecr_login(self) -> None:
        """ Performs an ecr login through awscli. """
        assert self.ecr_region
        ecr = boto3.client('ecr')
        account_id, *_ = self.image_name.split('.')
        assert account_id.isdigit()
        authorization_data = ecr.get_authorization_token(registryIds=[account_id])['authorizationData'][0]
        username, password = b64decode(authorization_data['authorizationToken']).decode().split(':')
        with get_docker_client() as client:
            login = client.login(username=username, password=password, registry=authorization_data['proxyEndpoint'])
        assert login['Status'] == 'Login Succeeded'

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

coveo_testing_extras-4.0.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

coveo_testing_extras-4.0-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file coveo_testing_extras-4.0.tar.gz.

File metadata

  • Download URL: coveo_testing_extras-4.0.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for coveo_testing_extras-4.0.tar.gz
Algorithm Hash digest
SHA256 eb86eb205471fe64c9c635a3161c6d2df4b7bf53faebdf5547887912e5244edb
MD5 c4480e49d2b920727b3b2dc5dab59f58
BLAKE2b-256 5c6544c360d1f01355d459a21d86b0ea92d8082c12b5cd4321dac4aee85d6c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for coveo_testing_extras-4.0.tar.gz:

Publisher: coveo-testing-extras.yml on coveooss/coveo-python-oss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coveo_testing_extras-4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for coveo_testing_extras-4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2c1cea3c4df4e5927a57a278b7e1811585e2dc0f2b28e9bfb5d09810788ed166
MD5 fbedec99578371828d232f5b02dd5eb5
BLAKE2b-256 c8d6f6ef5b50bb0b5569133ff23e9bb5ab08f4bb8192b2a9fa6761225ee9d433

See more details on using hashes here.

Provenance

The following attestation bundles were made for coveo_testing_extras-4.0-py3-none-any.whl:

Publisher: coveo-testing-extras.yml on coveooss/coveo-python-oss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

4.0 This release

2 files

3.0.2

2 files

3.0.1

2 files

3.0

2 files

2.1.12

2 files

2.1.11

2 files

2.1.10

2 files

2.1.9

2 files

2.1.8

2 files

2.1.7

2 files

2.1.6

2 files

2.1.5

2 files

2.1.4

2 files

2.1.3

2 files

2.1.2

2 files

2.1.1

2 files

2.1

2 files

2.0.2

2 files

2.0.1

2 files

2.0

2 files

1.0.8

2 files

1.0.7

2 files

1.0.6

2 files

1.0.5

2 files

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0

2 files

0.2.3

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page