1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
import datetime
from dcoscli import tables
import mock
import pytz
from ..fixtures.marathon import (app_fixture, app_task_fixture,
deployment_fixture, group_fixture)
from ..fixtures.node import slave_fixture
from ..fixtures.package import package_fixture, search_result_fixture
from ..fixtures.service import framework_fixture
from ..fixtures.task import browse_fixture, task_fixture
def test_task_table():
_test_table(tables.task_table,
[task_fixture()],
'tests/unit/data/task.txt')
def test_app_table():
apps = [app_fixture()]
deployments = []
table = tables.app_table(apps, deployments)
with open('tests/unit/data/app.txt') as f:
assert str(table) == f.read()
def test_deployment_table():
_test_table(tables.deployment_table,
[deployment_fixture()],
'tests/unit/data/deployment.txt')
def test_app_task_table():
_test_table(tables.app_task_table,
[app_task_fixture()],
'tests/unit/data/app_task.txt')
def test_service_table():
_test_table(tables.service_table,
[framework_fixture()],
'tests/unit/data/service.txt')
def test_group_table():
_test_table(tables.group_table,
[group_fixture()],
'tests/unit/data/group.txt')
def test_package_table():
_test_table(tables.package_table,
[package_fixture()],
'tests/unit/data/package.txt')
def test_package_search_table():
_test_table(tables.package_search_table,
[search_result_fixture()],
'tests/unit/data/package_search.txt')
def test_node_table():
_test_table(tables.slave_table,
[slave_fixture()],
'tests/unit/data/node.txt')
def test_ls_long_table():
with mock.patch('dcoscli.tables._format_unix_timestamp',
lambda ts: datetime.datetime.fromtimestamp(
ts, pytz.utc).strftime('%b %d %H:%M')):
_test_table(tables.ls_long_table,
browse_fixture(),
'tests/unit/data/ls_long.txt')
def _test_table(table_fn, fixture_fn, path):
table = table_fn(fixture_fn)
with open(path) as f:
assert str(table) == f.read()
|