compose/tests/testcases.py

33 lines
866 B
Python
Raw Normal View History

from __future__ import unicode_literals
from __future__ import absolute_import
from fig.packages.docker import Client
2013-12-20 21:28:24 +01:00
from fig.service import Service
from fig.cli.utils import docker_url
2014-01-06 12:22:46 +01:00
from . import unittest
2014-01-06 12:22:46 +01:00
class DockerClientTestCase(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.client = Client(docker_url())
cls.client.pull('ubuntu')
def setUp(self):
for c in self.client.containers(all=True):
if c['Names'] and 'figtest' in c['Names'][0]:
self.client.kill(c['Id'])
self.client.remove_container(c['Id'])
2013-12-09 22:39:11 +01:00
def create_service(self, name, **kwargs):
return Service(
project='figtest',
name=name,
client=self.client,
image="ubuntu",
command=["/bin/sleep", "300"],
2013-12-09 22:39:11 +01:00
**kwargs
)