2015-11-10 00:27:12 +00:00
|
|
|
# Tests using pytest
|
2016-02-21 21:11:37 +00:00
|
|
|
from __future__ import absolute_import
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-01-25 11:11:50 +00:00
|
|
|
import fnmatch
|
2016-03-05 01:21:03 +00:00
|
|
|
import os
|
2016-02-21 21:11:37 +00:00
|
|
|
from multiprocessing import Process
|
2016-01-25 11:11:50 +00:00
|
|
|
|
|
|
|
from yaml import load
|
|
|
|
from yaml import Loader
|
2015-11-10 00:27:12 +00:00
|
|
|
|
2016-02-21 21:11:37 +00:00
|
|
|
from pyentrypoint import DockerLinks
|
|
|
|
from pyentrypoint import Entrypoint
|
|
|
|
|
2015-11-10 00:27:12 +00:00
|
|
|
LINKS = [
|
|
|
|
'test1',
|
|
|
|
'test2',
|
|
|
|
'test3',
|
|
|
|
'test4',
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def test_all_links():
|
|
|
|
links = DockerLinks()
|
|
|
|
all_links = links.links()
|
|
|
|
|
|
|
|
assert len(all_links) == 4
|
|
|
|
for _, item in all_links.items():
|
|
|
|
assert len(set(item["names"]).intersection(LINKS))
|
|
|
|
|
|
|
|
|
|
|
|
def test_filtering():
|
|
|
|
links = DockerLinks()
|
|
|
|
test1 = links.links("test1")
|
|
|
|
|
|
|
|
assert len(test1) == 1
|
|
|
|
|
|
|
|
test2_and_3 = links.links("test2", "test3")
|
|
|
|
|
|
|
|
assert len(test2_and_3) == 2
|
|
|
|
|
|
|
|
test4_and_5 = links.links("test4", "notexist")
|
|
|
|
assert len(test4_and_5) == 1
|
|
|
|
|
|
|
|
test5 = links.links("notexist")
|
|
|
|
assert len(test5) == 0
|
|
|
|
|
|
|
|
|
|
|
|
def test_env():
|
|
|
|
links = DockerLinks()
|
|
|
|
env = links.links("test1", "test3")
|
|
|
|
|
|
|
|
for _, item in env.items():
|
|
|
|
assert item["environment"]["FOO"] == "bar"
|
|
|
|
|
|
|
|
|
|
|
|
def test_ports():
|
|
|
|
links = DockerLinks()
|
|
|
|
|
|
|
|
ports = links.links('test1', 'test2')
|
|
|
|
|
|
|
|
for _, item in ports.items():
|
|
|
|
if 'test1' in item["names"]:
|
|
|
|
assert item["ports"]["800"]['protocol'] == 'tcp'
|
|
|
|
assert item["ports"]["8001"]['protocol'] == 'udp'
|
|
|
|
else:
|
|
|
|
assert item["ports"]["800"]['protocol'] == 'udp'
|
|
|
|
assert item["ports"]["8001"]['protocol'] == 'tcp'
|
2015-12-07 02:19:46 +00:00
|
|
|
|
|
|
|
|
2015-12-15 07:56:17 +00:00
|
|
|
def test_entrypoint_links():
|
2016-03-05 00:37:28 +00:00
|
|
|
entry = Entrypoint(conf='configs/base.yml')
|
2015-12-15 07:56:17 +00:00
|
|
|
links = entry.config.links
|
|
|
|
|
|
|
|
assert len(links.all) == 4
|
|
|
|
|
|
|
|
assert len(links.test1) == 2
|
|
|
|
|
|
|
|
assert links.test2_800.port == 800
|
|
|
|
|
|
|
|
|
2016-01-25 11:11:50 +00:00
|
|
|
def test_containers():
|
|
|
|
links = DockerLinks()
|
|
|
|
ctns = links.to_containers()
|
|
|
|
|
|
|
|
assert len(ctns) == 4
|
|
|
|
|
|
|
|
for ctn in ctns:
|
2016-03-05 00:37:28 +00:00
|
|
|
if 'test1' in ctn.names:
|
2016-01-25 11:11:50 +00:00
|
|
|
assert ctn.environ['FOO'] == 'bar'
|
2016-03-05 00:37:28 +00:00
|
|
|
assert len(ctn.links) == 2
|
|
|
|
if 'test2' in ctn.names:
|
|
|
|
assert len(ctn.links) == 2
|
|
|
|
if 'test3' in ctn.names:
|
|
|
|
assert ctn.environ['FOO'] == 'bar'
|
|
|
|
assert len(ctn.links) == 0
|
|
|
|
if 'test4' in ctn.names:
|
|
|
|
assert len(ctn.links) == 0
|
2016-01-25 11:11:50 +00:00
|
|
|
|
2016-03-07 02:07:03 +00:00
|
|
|
# Test sorted names
|
2016-03-07 23:12:13 +00:00
|
|
|
int(ctn.id, base=16)
|
2016-03-07 22:04:09 +00:00
|
|
|
assert len(ctn.names[0]) <= len(ctn.names[1])
|
2016-03-07 02:07:03 +00:00
|
|
|
|
2016-01-25 11:11:50 +00:00
|
|
|
|
2015-12-15 07:56:17 +00:00
|
|
|
def test_templates():
|
2016-03-05 00:37:28 +00:00
|
|
|
entry = Entrypoint(conf='configs/base.yml')
|
2015-12-15 07:56:17 +00:00
|
|
|
|
|
|
|
conf = entry.config
|
|
|
|
|
|
|
|
entry.apply_conf()
|
2015-12-07 02:19:46 +00:00
|
|
|
|
2015-12-15 07:56:17 +00:00
|
|
|
with open(conf.config_files[0], mode='r') as r:
|
2016-01-25 11:11:50 +00:00
|
|
|
test = load(stream=r, Loader=Loader)
|
|
|
|
|
|
|
|
assert len(set(test['All links'])) == 4
|
|
|
|
assert len(set(test['All links 1'])) == 2
|
|
|
|
assert len(set(test['All links 2'])) == 2
|
|
|
|
|
|
|
|
assert fnmatch.fnmatch(test['Links 2 800'][0], 'udp://*:800')
|
|
|
|
|
|
|
|
# test environment
|
|
|
|
assert test['All environ']['FOO'] == 'bar'
|
|
|
|
assert test['All links 2 environ']['FOO'] == 'bar'
|
|
|
|
|
|
|
|
test_names = [
|
|
|
|
'test1',
|
|
|
|
'test2',
|
|
|
|
'test3',
|
|
|
|
'test4',
|
|
|
|
]
|
|
|
|
|
|
|
|
# test names
|
|
|
|
for test_name in test_names:
|
|
|
|
assert test_name in test['All names']
|
2016-02-21 21:11:37 +00:00
|
|
|
|
2016-03-07 23:12:13 +00:00
|
|
|
# test id
|
|
|
|
for id in test['ID']:
|
|
|
|
int(id, base=16)
|
|
|
|
|
2016-02-21 21:11:37 +00:00
|
|
|
|
|
|
|
def test_conf_commands():
|
2016-03-05 00:37:28 +00:00
|
|
|
entry = Entrypoint(conf='configs/base.yml')
|
2016-02-21 21:11:37 +00:00
|
|
|
|
|
|
|
for cmd in entry.config.pre_conf_commands:
|
|
|
|
entry.run_conf_cmd(cmd)
|
|
|
|
for cmd in entry.config.post_conf_commands:
|
|
|
|
entry.run_conf_cmd(cmd)
|
|
|
|
|
|
|
|
with open('/tmp/OK') as f:
|
|
|
|
assert f.readline().startswith('TEST')
|
|
|
|
|
|
|
|
with open('/tmp/OKOK') as f:
|
|
|
|
assert f.readline().startswith('TEST2')
|
|
|
|
|
|
|
|
with open('/tmp/OKOKOK') as f:
|
|
|
|
assert f.readline().startswith('TEST3')
|
|
|
|
|
|
|
|
|
|
|
|
def test_command():
|
|
|
|
run = [
|
2016-03-05 01:21:03 +00:00
|
|
|
# ((Process instance), (file to check), (uid), (gid))
|
2016-02-28 23:27:43 +00:00
|
|
|
(Process(target=Entrypoint(
|
2016-03-05 00:37:28 +00:00
|
|
|
conf='configs/base.yml',
|
2016-03-05 01:21:03 +00:00
|
|
|
args=['-c', 'echo OK > /tmp/CMD']).launch),
|
|
|
|
'/tmp/CMD', 1000, 1000),
|
2016-02-28 23:27:43 +00:00
|
|
|
(Process(target=Entrypoint(
|
2016-03-05 00:37:28 +00:00
|
|
|
conf='configs/base.yml',
|
|
|
|
args=['bash', '-c', 'echo ${SECRET}OK > /tmp/CMD2']).launch),
|
2016-03-05 01:21:03 +00:00
|
|
|
'/tmp/CMD2', 1000, 1000),
|
|
|
|
(Process(target=Entrypoint(
|
|
|
|
conf='configs/usernames.yml',
|
|
|
|
args=['bash', '-c', 'echo OK > /tmp/CMD3']).launch),
|
|
|
|
'/tmp/CMD3', 33, 33),
|
2016-03-06 15:43:01 +00:00
|
|
|
(Process(target=Entrypoint(
|
|
|
|
conf='configs/unhandled.yml',
|
|
|
|
args=['bash', '-c', 'echo OK > /tmp/CMD4']).launch),
|
|
|
|
'/tmp/CMD4', 0, 0),
|
2016-02-21 21:11:37 +00:00
|
|
|
]
|
|
|
|
|
2016-03-05 01:21:03 +00:00
|
|
|
for proc, test, uid, gid in run:
|
2016-02-21 21:11:37 +00:00
|
|
|
proc.start()
|
|
|
|
proc.join()
|
2016-02-28 23:27:43 +00:00
|
|
|
with open(test) as f:
|
|
|
|
assert f.readline().startswith('OK')
|
2016-03-05 01:21:03 +00:00
|
|
|
assert os.stat(test).st_uid == uid
|
|
|
|
assert os.stat(test).st_gid == gid
|
2016-03-07 23:12:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_config_file():
|
|
|
|
os.environ['ENTRYPOINT_CONFIG'] = 'configs/base.yml'
|
|
|
|
entry = Entrypoint()
|
|
|
|
|
|
|
|
assert entry.config.has_config
|
|
|
|
|
|
|
|
del os.environ['ENTRYPOINT_CONFIG']
|