Files
deb-python-dcos/cli/tests/unit/test_tables.py
tamarrow 63bcddaa20 cluster: add subcommand for easy setup of multiple clusters (#983)
We are introducing a new subcommand for managing your clusters. Configuring your CLI to talk to your cluster is a single command now `dcos cluster setup`. Moreover, the CLI can now be aware of multiple clusters with cluster specific configuration managed by the CLI. 

Subcommands will be installed for the current "attached" cluster only. To install a subcommand for all your configured clusters, use `--global`. 

Note that `DCOS_CONFIG` environment variable will not take effect in
"cluster" mode since we are now managing different clusters in the CLI.
2017-05-03 10:41:45 -07:00

188 lines
5.8 KiB
Python

import datetime
import mock
import pytz
from dcos.mesos import Slave
from dcoscli import tables
from ..fixtures.auth_provider import auth_provider_fixture
from ..fixtures.clusters import cluster_list_fixture
from ..fixtures.marathon import (app_fixture, app_task_fixture,
deployment_fixture_app_post_pods,
deployment_fixture_app_pre_pods,
deployment_fixture_pod,
group_fixture, pod_list_fixture,
pod_list_without_instances_fixture,
pod_list_without_spec_version_fixture)
from ..fixtures.metrics import (agent_metrics_node_details_fixture,
agent_metrics_node_summary_fixture,
agent_metrics_task_details_fixture)
from ..fixtures.metronome import (job_history_fixture, job_list_fixture,
job_run_fixture, job_schedule_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():
task = task_fixture()
task.user = mock.Mock(return_value='root')
slave = Slave({"hostname": "mock-hostname"}, None, None)
task.slave = mock.Mock(return_value=slave)
_test_table(tables.task_table,
[task],
'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_app_pre_pods():
_test_table(tables.deployment_table,
[deployment_fixture_app_pre_pods()],
'tests/unit/data/deployment/app.txt')
def test_deployment_table_app_post_pods():
_test_table(tables.deployment_table,
[deployment_fixture_app_post_pods()],
'tests/unit/data/deployment/app.txt')
def test_deployment_table_pod():
_test_table(tables.deployment_table,
[deployment_fixture_pod()],
'tests/unit/data/deployment/pod.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_auth_providers_table():
_test_table(tables.auth_provider_table,
auth_provider_fixture(),
'tests/unit/data/auth_provider.txt')
def test_job_list_table():
_test_table(tables.job_table,
job_list_fixture(),
'tests/unit/data/job_list.txt')
def test_job_runs_table():
_test_table(tables.job_runs_table,
job_run_fixture(),
'tests/unit/data/job_runs.txt')
def test_job_history_table():
_test_table(tables.job_history_table,
job_history_fixture(),
'tests/unit/data/job_history.txt')
def test_job_schedule_table():
_test_table(tables.schedule_table,
job_schedule_fixture(),
'tests/unit/data/job_schedule.txt')
def test_pod_table():
_test_table(tables.pod_table,
pod_list_fixture(),
'tests/unit/data/pod.txt')
def test_pod_table_without_instances():
_test_table(tables.pod_table,
[pod_list_without_instances_fixture()],
'tests/unit/data/pod_without_instances.txt')
def test_pod_table_without_spec_version():
_test_table(tables.pod_table,
[pod_list_without_spec_version_fixture()],
'tests/unit/data/pod_without_spec_version.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.node_table,
[slave_fixture()],
'tests/unit/data/node.txt')
def test_clusters_tables():
_test_table(tables.clusters_table,
[cluster_list_fixture()],
'tests/unit/data/cluster.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_metrics_summary_table():
_test_table(tables.metrics_summary_table,
agent_metrics_node_summary_fixture(),
'tests/unit/data/metrics_summary.txt')
def test_metrics_details_table():
_test_table(tables.metrics_details_table,
agent_metrics_node_details_fixture(),
'tests/unit/data/metrics_node_details.txt')
def test_metrics_details_no_tags_table():
# Convenience wrapper to pass a second param
def _task_details_fn(datapoints):
return tables.metrics_details_table(datapoints, False)
_test_table(_task_details_fn, agent_metrics_task_details_fixture(),
'tests/unit/data/metrics_task_details.txt')
def _test_table(table_fn, fixture_fn, path):
table = table_fn(fixture_fn)
with open(path) as f:
assert str(table) == f.read().strip('\n')