Skip to main content

No project description provided

Project description

Mebula is a framework which you can use in your testing code to mock your calls to cloud providers’ APIs. At the moment, Oracle’s OCI, Google Cloud and Microsoft Azure are supported.

Installation

  • For Microsoft Azure, install the mebula[azure] package.

  • For Google Cloud, install the mebula[google] package.

  • For Oracle’s OCI, install the mebula[oracle] package.

Usage

Azure

You can use the mock_azure context manager and then use the Azure functions as normal:

from azure.common.client_factory import get_client_from_json_dict
from azure.mgmt.compute import ComputeManagementClient

from mebula.azure import mock_azure


def test_azure():
    with mock_azure():
        config_dict = {
            "clientId": "ad735158-65ca-11e7-ba4d-ecb1d756380e",
            "clientSecret": "b70bb224-65ca-11e7-810c-ecb1d756380e",
            "subscriptionId": "bfc42d3a-65ca-11e7-95cf-ecb1d756380e",
            "tenantId": "c81da1d8-65ca-11e7-b1d1-ecb1d756380e",
            "activeDirectoryEndpointUrl": "https://login.microsoftonline.com",
            "resourceManagerEndpointUrl": "https://management.azure.com/",
            "activeDirectoryGraphResourceId": "https://graph.windows.net/",
            "sqlManagementEndpointUrl": "https://management.core.windows.net:8443/",
            "galleryEndpointUrl": "https://gallery.azure.com/",
            "managementEndpointUrl": "https://management.core.windows.net/",
        }
        client = get_client_from_json_dict(ComputeManagementClient, config_dict)

        assert list(client.virtual_machines.list("group")) == []

Google

You can use the mock_google context manager and then use the Google API functions as normal:

import googleapiclient.discovery

from mebula import mock_google


def test_google(client):
    with mock_google():
        client = googleapiclient.discovery.build("compute", "v1")

        assert client.instances().list(project="foo", zone="bar").execute() == {}

Oracle

You can use the mock_oracle context manager and then use the Oracle oci functions as normal:

import oci

from mebula.oracle import mock_oracle


def test_oracle():
    with mock_oracle():
        compute = oci.core.ComputeClient(config={})

        assert compute.list_instances("foo").data == []

Coverage

Coverage is very minimal at the moment. Only launching and listing instances is supported.

Project details


Download files

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

Source Distribution

mebula-0.2.7.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

mebula-0.2.7-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file mebula-0.2.7.tar.gz.

File metadata

  • Download URL: mebula-0.2.7.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.3 CPython/3.9.0 Linux/5.4.0-1026-azure

File hashes

Hashes for mebula-0.2.7.tar.gz
Algorithm Hash digest
SHA256 9fc2640b3d847449e39cd67de9308a7bd4d06d5716e9b593673823771fe1aafa
MD5 9409f78e6cdbe5562a9dfa9dcf9484c1
BLAKE2b-256 cb4c3d462960088b6de24288e8f91fc856b21129c535950b24165e00a754ab7e

See more details on using hashes here.

File details

Details for the file mebula-0.2.7-py3-none-any.whl.

File metadata

  • Download URL: mebula-0.2.7-py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.3 CPython/3.9.0 Linux/5.4.0-1026-azure

File hashes

Hashes for mebula-0.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 95f75bf3083dea73b192377dfdadaad9a811dbb3276d8f39dc219ec7464d3319
MD5 776239f6f3606476aa9b6122570dad39
BLAKE2b-256 38275e1103ec8c29089ea643c345586f0a0cdfb2f41d4ec7b240b37aba075914

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page