2015-11-10 00:27:12 +00:00
|
|
|
# Tests using pytest
|
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
|
|
|
|
2016-11-23 11:37:10 +00:00
|
|
|
import pytest
|
2016-12-04 20:11:10 +00:00
|
|
|
from commons import clean_env
|
2020-05-10 21:03:30 +00:00
|
|
|
from yaml import FullLoader
|
2016-01-25 11:11:50 +00:00
|
|
|
from yaml import load
|
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',
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2016-12-04 20:11:10 +00:00
|
|
|
def teardown_function(function):
|
|
|
|
clean_env()
|
|
|
|
|
|
|
|
|
2015-11-10 00:27:12 +00:00
|
|
|
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-04-25 21:23:21 +00:00
|
|
|
test_confs = ['configs/base.yml']
|
|
|
|
for test_conf in test_confs:
|
2020-06-07 08:06:31 +00:00
|
|
|
entry = Entrypoint(conf=test_conf)
|
2015-12-15 07:56:17 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
conf = entry.config
|
2015-12-15 07:56:17 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
entry.apply_conf()
|
2015-12-07 02:19:46 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
for _, config_file in conf.get_templates():
|
|
|
|
with open(config_file, mode='r') as r:
|
2020-05-10 21:03:30 +00:00
|
|
|
test = load(stream=r, Loader=FullLoader)
|
2016-03-27 17:29:53 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
assert len(set(test['All links'])) == 4
|
|
|
|
assert len(set(test['All links 1'])) == 2
|
|
|
|
assert len(set(test['All links 2'])) == 2
|
2016-03-27 17:29:53 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
assert fnmatch.fnmatch(test['Links 2 800'][0], 'udp://*:800')
|
2016-03-27 17:29:53 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
# test environment
|
|
|
|
assert test['All environ']['FOO'] == 'bar'
|
|
|
|
assert test['All links 2 environ']['FOO'] == 'bar'
|
2016-03-27 17:29:53 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
test_names = [
|
|
|
|
'test1',
|
|
|
|
'test2',
|
|
|
|
'test3',
|
|
|
|
'test4',
|
|
|
|
]
|
2016-03-27 17:29:53 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
# test names
|
|
|
|
for test_name in test_names:
|
|
|
|
assert test_name in test['All names']
|
2016-03-27 17:29:53 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
# test id
|
|
|
|
for id in test['ID']:
|
|
|
|
int(id, base=16)
|
2016-03-27 17:29:53 +00:00
|
|
|
|
2016-04-25 21:23:21 +00:00
|
|
|
# test env
|
|
|
|
assert test['ENV']['SECRET'] == 'nothing'
|
|
|
|
assert test['ENVIRON']['SECRET'] == 'nothing'
|
2016-03-21 18:29:21 +00:00
|
|
|
|
2016-11-30 07:53:54 +00:00
|
|
|
# test yaml
|
|
|
|
assert test['YAML']['yaml'] == 'ok'
|
|
|
|
|
|
|
|
# test json
|
|
|
|
assert test['JSON']['json'] == 'ok'
|
|
|
|
|
2020-05-24 16:19:11 +00:00
|
|
|
# test envtobool
|
|
|
|
assert test['ENVTOBOOL']['ok']
|
|
|
|
assert not test['ENVTOBOOL']['ko']
|
|
|
|
|
2016-02-21 21:11:37 +00:00
|
|
|
|
|
|
|
def test_conf_commands():
|
2016-12-04 20:11:10 +00:00
|
|
|
|
2016-03-05 00:37:28 +00:00
|
|
|
entry = Entrypoint(conf='configs/base.yml')
|
2016-02-21 21:11:37 +00:00
|
|
|
|
2016-12-04 20:11:10 +00:00
|
|
|
checks = [
|
|
|
|
('/tmp/OK', 'TEST'),
|
|
|
|
('/tmp/OKOK', 'TEST2'),
|
|
|
|
('/tmp/OKOKOK', 'TEST3'),
|
|
|
|
('/tmp/OKOKOKOK', 'TEST4'),
|
|
|
|
('/tmp/OKOKOKOKOK', 'TEST5'),
|
|
|
|
('/tmp/user', '1000'),
|
|
|
|
('/tmp/group', '1000'),
|
|
|
|
('/tmp/debug', 'true'),
|
2020-05-30 16:49:13 +00:00
|
|
|
('/tmp_env_1', 'ENV_1 set'),
|
|
|
|
('/tmp_env_2', 'ENV_2 set')
|
2016-12-04 20:11:10 +00:00
|
|
|
]
|
|
|
|
|
2016-05-11 22:31:26 +00:00
|
|
|
os.environ['ENTRYPOINT_PRECONF_COMMAND'] = 'echo TEST4 > /tmp/OKOKOKOK'
|
|
|
|
os.environ['ENTRYPOINT_POSTCONF_COMMAND'] = 'echo TEST5 > /tmp/OKOKOKOKOK'
|
|
|
|
|
2016-12-04 20:11:10 +00:00
|
|
|
entry.config.set_to_env()
|
2020-05-30 16:49:13 +00:00
|
|
|
entry.run_set_enviroment()
|
2016-05-11 22:31:26 +00:00
|
|
|
entry.run_pre_conf_cmds()
|
|
|
|
entry.run_post_conf_cmds()
|
2016-02-21 21:11:37 +00:00
|
|
|
|
2016-12-04 20:11:10 +00:00
|
|
|
for filename, value in checks:
|
|
|
|
with open(filename) as f:
|
|
|
|
line = f.readline()
|
|
|
|
print(line)
|
|
|
|
assert line.startswith(value)
|
2016-05-11 22:31:26 +00:00
|
|
|
|
2016-02-21 21:11:37 +00:00
|
|
|
|
|
|
|
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),
|
2016-11-19 16:19:10 +00:00
|
|
|
'/tmp/CMD3', 1009, 1010),
|
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-03-27 18:42:50 +00:00
|
|
|
(Process(target=Entrypoint(
|
2016-05-08 15:11:01 +00:00
|
|
|
conf='/dontexist',
|
2016-03-27 18:42:50 +00:00
|
|
|
args=['bash', '-c', 'echo OK > /tmp/CMD5']).launch),
|
|
|
|
'/tmp/CMD5', 0, 0),
|
2016-09-22 23:14:54 +00:00
|
|
|
(Process(target=Entrypoint(
|
|
|
|
conf='configs/secret_env.yml',
|
|
|
|
args=['bash', '-c', 'echo ${SECRET}OK > /tmp/CMD6']).launch),
|
|
|
|
'/tmp/CMD6', 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-09-22 23:14:54 +00:00
|
|
|
with open(test, 'r') as f:
|
2016-02-28 23:27:43 +00:00
|
|
|
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-07-02 13:44:10 +00:00
|
|
|
assert not os.path.isfile('/.dockerenv')
|
|
|
|
assert not os.path.isfile('/.dockerinit')
|
2016-03-07 23:12:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_config_file():
|
|
|
|
os.environ['ENTRYPOINT_CONFIG'] = 'configs/base.yml'
|
2016-05-08 16:25:36 +00:00
|
|
|
entry = Entrypoint()
|
2016-03-07 23:12:13 +00:00
|
|
|
|
|
|
|
assert entry.config.has_config
|
|
|
|
|
|
|
|
del os.environ['ENTRYPOINT_CONFIG']
|
2016-04-29 22:58:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_force_config():
|
2016-05-08 16:25:36 +00:00
|
|
|
entry = Entrypoint()
|
2016-05-08 15:11:01 +00:00
|
|
|
assert not entry.should_config
|
2016-04-29 22:58:14 +00:00
|
|
|
|
2016-05-08 15:11:01 +00:00
|
|
|
os.environ['ENTRYPOINT_FORCE'] = 'True'
|
2016-04-29 22:58:14 +00:00
|
|
|
assert entry.should_config
|
|
|
|
|
|
|
|
del os.environ['ENTRYPOINT_FORCE']
|
2016-05-07 11:57:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_display_raw():
|
2016-05-08 16:25:36 +00:00
|
|
|
entry = Entrypoint()
|
2016-05-08 15:11:01 +00:00
|
|
|
assert not entry.raw_output
|
2016-05-07 11:57:17 +00:00
|
|
|
|
2016-05-08 15:11:01 +00:00
|
|
|
os.environ['ENTRYPOINT_RAW'] = 'True'
|
2016-05-07 11:57:17 +00:00
|
|
|
assert entry.raw_output
|
|
|
|
|
|
|
|
del os.environ['ENTRYPOINT_RAW']
|
2016-05-08 16:25:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_debug_env():
|
|
|
|
os.environ['ENTRYPOINT_DEBUG'] = 'true'
|
|
|
|
entry = Entrypoint(conf='configs/empty.yml')
|
|
|
|
|
|
|
|
assert entry.config.debug
|
|
|
|
|
|
|
|
del os.environ['ENTRYPOINT_DEBUG']
|
2016-11-19 16:19:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_quiet_env():
|
|
|
|
os.environ['ENTRYPOINT_QUIET'] = 'true'
|
|
|
|
entry = Entrypoint(conf='configs/empty.yml')
|
|
|
|
|
|
|
|
assert entry.config.quiet
|
|
|
|
|
|
|
|
del os.environ['ENTRYPOINT_QUIET']
|
|
|
|
|
|
|
|
|
|
|
|
def test_user_env():
|
|
|
|
os.environ['ENTRYPOINT_USER'] = '100'
|
|
|
|
entry = Entrypoint(conf='configs/base.yml')
|
|
|
|
|
|
|
|
assert entry.config.user == 100
|
|
|
|
|
|
|
|
os.environ['ENTRYPOINT_USER'] = 'testuser'
|
|
|
|
entry = Entrypoint(conf='configs/base.yml')
|
|
|
|
|
|
|
|
assert entry.config.user == 1009
|
|
|
|
|
2016-11-23 11:37:10 +00:00
|
|
|
del os.environ['ENTRYPOINT_USER']
|
|
|
|
|
2016-11-19 16:19:10 +00:00
|
|
|
|
|
|
|
def test_group_env():
|
|
|
|
os.environ['ENTRYPOINT_GROUP'] = '100'
|
|
|
|
entry = Entrypoint(conf='configs/base.yml')
|
|
|
|
|
|
|
|
assert entry.config.group == 100
|
|
|
|
|
|
|
|
os.environ['ENTRYPOINT_GROUP'] = 'testgroup'
|
|
|
|
entry = Entrypoint(conf='configs/base.yml')
|
|
|
|
|
|
|
|
assert entry.config.group == 1010
|
2016-11-23 11:37:10 +00:00
|
|
|
|
|
|
|
del os.environ['ENTRYPOINT_GROUP']
|
|
|
|
|
|
|
|
|
|
|
|
def test_disabled_service():
|
|
|
|
os.environ['ENTRYPOINT_DISABLE_SERVICE'] = 'true'
|
|
|
|
entry = Entrypoint(conf='configs/base.yml')
|
|
|
|
|
|
|
|
assert entry.is_disabled
|
|
|
|
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
entry.exit_if_disabled()
|
|
|
|
|
|
|
|
del os.environ['ENTRYPOINT_DISABLE_SERVICE']
|
2020-05-10 21:03:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_commands_handling():
|
|
|
|
cat = Entrypoint(conf='configs/commands.yml', args=['cat', 'hello'])
|
|
|
|
sleep = Entrypoint(conf='configs/commands.yml', args=['sleep', '1'])
|
|
|
|
bash = Entrypoint(conf='configs/commands.yml', args=['bash'])
|
|
|
|
zsh = Entrypoint(conf='configs/commands.yml', args=['zsh', '-c', 'exit'])
|
|
|
|
empty = Entrypoint(conf='configs/empty.yml', args=['zsh', '-c', 'exit'])
|
|
|
|
|
|
|
|
assert cat.is_handled
|
|
|
|
assert sleep.is_handled
|
|
|
|
assert bash.is_handled
|
|
|
|
assert not zsh.is_handled
|
|
|
|
assert empty.is_handled
|
2020-05-17 21:11:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_command_matching_setup():
|
|
|
|
bash = Entrypoint(conf='configs/matching_command.yml', args=['bash'])
|
|
|
|
zsh = Entrypoint(conf='configs/matching_command.yml', args=['zsh'])
|
|
|
|
|
|
|
|
assert bash.config.user == 1000
|
|
|
|
assert zsh.config.user == 1001
|
|
|
|
|
|
|
|
assert bash.config.group == 1002
|
|
|
|
assert zsh.config.group == 1003
|
|
|
|
|
|
|
|
assert bash.config.config_files == [
|
|
|
|
'file1.tpl',
|
|
|
|
{'file2': 'file3'},
|
|
|
|
'file4',
|
|
|
|
'file9',
|
|
|
|
{'file10': 'file11'},
|
|
|
|
]
|
|
|
|
assert zsh.config.config_files == [
|
|
|
|
'file5.tpl',
|
|
|
|
{'file6': 'file7'},
|
|
|
|
'file8',
|
|
|
|
'file9',
|
|
|
|
{'file10': 'file11'},
|
|
|
|
]
|
|
|
|
|
|
|
|
assert bash.config.secret_env == [
|
|
|
|
'secret1',
|
|
|
|
'secret2',
|
|
|
|
]
|
|
|
|
assert zsh.config.secret_env == [
|
|
|
|
'secret1',
|
|
|
|
'secret3',
|
|
|
|
]
|
|
|
|
|
|
|
|
assert bash.config.pre_conf_commands == [
|
|
|
|
'cmd1',
|
|
|
|
'cmd3',
|
|
|
|
]
|
|
|
|
assert zsh.config.pre_conf_commands == [
|
|
|
|
'cmd2',
|
|
|
|
'cmd3',
|
|
|
|
]
|
|
|
|
|
|
|
|
assert bash.config.post_conf_commands == [
|
|
|
|
'cmd4',
|
|
|
|
'cmd6',
|
|
|
|
]
|
|
|
|
assert zsh.config.post_conf_commands == [
|
|
|
|
'cmd4',
|
|
|
|
'cmd5',
|
|
|
|
]
|
|
|
|
|
2020-05-30 16:49:13 +00:00
|
|
|
assert bash.config.set_environment == [
|
|
|
|
{'ENV_1': 'echo set ENV_1'}
|
|
|
|
]
|
|
|
|
assert zsh.config.set_environment == [
|
|
|
|
{'ENV_2': 'echo set ENV_2'}
|
|
|
|
]
|
|
|
|
|
2020-05-17 21:11:20 +00:00
|
|
|
assert bash.config.post_run_commands == [
|
|
|
|
'cmd7',
|
|
|
|
'cmd8',
|
|
|
|
]
|
|
|
|
assert zsh.config.post_run_commands == [
|
|
|
|
'cmd8',
|
|
|
|
'cmd9',
|
|
|
|
]
|
|
|
|
|
|
|
|
assert bash.config.debug
|
|
|
|
assert zsh.config.debug
|
|
|
|
|
|
|
|
assert bash.config.clean_env
|
|
|
|
assert not zsh.config.clean_env
|
|
|
|
|
|
|
|
assert bash.config.remove_dockerenv
|
|
|
|
assert zsh.config.remove_dockerenv
|