2015-06-30 22:33:43 +00:00
|
|
|
import datetime
|
|
|
|
|
|
|
|
from dateutil import tz
|
|
|
|
import docker
|
|
|
|
try:
|
|
|
|
from unittest import mock
|
|
|
|
except ImportError:
|
|
|
|
import mock
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def container():
|
|
|
|
return {
|
|
|
|
'Id': 'abcdabcdabcdabcd',
|
|
|
|
'Created': '2013-12-20T17:00:00Z',
|
|
|
|
'Name': '/container_name',
|
|
|
|
'State': {
|
|
|
|
'Running': False,
|
|
|
|
'FinishedAt': '2014-01-01T17:30:00Z',
|
|
|
|
'StartedAt': '2014-01-01T17:01:00Z',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def image():
|
|
|
|
return {
|
|
|
|
'Id': 'abcdabcdabcdabcd',
|
|
|
|
'Created': '2014-01-20T05:00:00Z',
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def now():
|
|
|
|
return datetime.datetime(2014, 1, 20, 10, 10, tzinfo=tz.tzutc())
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def earlier_time():
|
|
|
|
return datetime.datetime(2014, 1, 1, 0, 0, tzinfo=tz.tzutc())
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def later_time():
|
|
|
|
return datetime.datetime(2014, 1, 20, 0, 10, tzinfo=tz.tzutc())
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def mock_client():
|
2018-03-06 14:42:10 +00:00
|
|
|
client = mock.create_autospec(docker.APIClient)
|
|
|
|
client._version = '1.21'
|
2017-04-21 17:12:42 +00:00
|
|
|
return client
|