Skip to main content

Test Fabric scripts on VirtualBox VMs

Project description

Fabtest is a set of utilities and base TestCases that aid testing Fabric scripts against VirtualBox VMs. License is MIT.

VM is rolled back to initial state before each test so tests can do anything with target system; Fabric commands can be run from Python.

Installation

pip install fabtest

VMs

In order to run tests you’ll need VirtualBox 4.x and an OS image. Image should have ssh server installed.

Example VMs (they can be imported to VirtualBox via File->Import Appliance):

Due to bugs in VirtualBox it is better to convert imported .vmdk disk images to .vdi images, e.g.:

VBoxManage clonehd Ubuntu-10.10-disk1.vmdk Ubuntu-10.10-disk.vdi --format VDI

Then detach (and remove) vmdk disk from the VM and attach the vdi image.

After you get the image, make sure it is not running and execute the fabtest-preparevm script (pass your VM name or uid to it):

fabtest-preparevm Lenny

This command configures port forwarding (127.0.0.1:2222 to guest 22 port, 127.0.0.1:8888 to guest 80 port) and takes ‘fabtest-initial’ snapshot used for test rollbacks (it is taken from booted machine in order to speedup tests).

Writing tests

Subclass fabtest.VirtualBoxTest or fabtest.FabTest and use fabtest.fab for fabric commands execution:

from fabric.api import run
from fabtest import FabTest, fab

def whoami():
    return run('whoami')

class MyTestCase(FabTest):
    def test_root_login(self):
        output = fab(whoami)
        self.assertEqual(output, 'root')

Look at source code (and example/runtests.py) for more.

CHANGES

0.1.4 (2012-04-19)

  • Workaround for a VirtualBox bug under Windows.

0.1.3 (2012-04-14)

  • Packaging fixes.

0.1.1 (2012-03-02)

  • Better exception handling (the original traceback is preserved).

0.1 (2012-03-01)

  • Fabric >= 1.4 is supported (and required);

  • more reliable virtualbox snapshot handling;

  • fab function now wraps fabric’s execute and returns single value, not a list of values.

0.0.8 (2011-03-22)

  • Many tweaks & bug fixes.

0.0.1 (2011-02-16)

Initial experimental release (extracted from django-fab-deploy).

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

fabtest-0.1.4.tar.gz (6.5 kB view details)

Uploaded Source

File details

Details for the file fabtest-0.1.4.tar.gz.

File metadata

  • Download URL: fabtest-0.1.4.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for fabtest-0.1.4.tar.gz
Algorithm Hash digest
SHA256 8bccf53f32c013c2ca4603d31ac45cf790132a8fba3cd4d33483136989f7328b
MD5 6014e0176052ae73791d1e5ce7ad4406
BLAKE2b-256 feca0e389a794a68d8916f97c4061aeda73c77b693b5db5b7759d438dcd2e644

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