ceph/teuthology/test/test_misc.py
2013-09-11 14:49:15 -05:00

45 lines
1.0 KiB
Python

import argparse
from ..orchestra import cluster
from nose.tools import (
eq_ as eq,
assert_equal,
assert_raises,
)
from .. import misc
from ..config import config
class FakeRemote(object):
pass
def test_get_clients_simple():
ctx = argparse.Namespace()
remote = FakeRemote()
ctx.cluster = cluster.Cluster(
remotes=[
(remote, ['client.0', 'client.1'])
],
)
g = misc.get_clients(ctx=ctx, roles=['client.1'])
got = next(g)
eq(len(got), 2)
eq(got[0], ('1'))
assert got[1] is remote
assert_raises(StopIteration, next, g)
def test_get_http_log_path():
archive_server = "http://example.com/server_root"
config.archive_server = archive_server
archive_dir = "/var/www/archives"
path = misc.get_http_log_path(archive_dir)
assert_equal(path, "http://example.com/server_root/archives/")
job_id = '12345'
path = misc.get_http_log_path(archive_dir, job_id)
assert_equal(path, "http://example.com/server_root/archives/12345/")