2016-10-11 04:14:39 +00:00
|
|
|
''' This file starts with 000 to make it run first '''
|
|
|
|
import pytest
|
|
|
|
import testinfra
|
|
|
|
|
|
|
|
run_local = testinfra.get_backend(
|
|
|
|
"local://"
|
|
|
|
).get_module("Command").run
|
|
|
|
|
2018-07-02 20:54:19 +00:00
|
|
|
|
2016-10-11 04:14:39 +00:00
|
|
|
@pytest.mark.parametrize("image,tag", [
|
2018-07-03 06:33:30 +00:00
|
|
|
('test/debian.Dockerfile', 'pytest_pihole:debian'),
|
|
|
|
('test/centos.Dockerfile', 'pytest_pihole:centos'),
|
2018-07-06 00:12:39 +00:00
|
|
|
('test/fedora.Dockerfile', 'pytest_pihole:fedora'),
|
2016-10-11 04:14:39 +00:00
|
|
|
])
|
|
|
|
def test_build_pihole_image(image, tag):
|
|
|
|
build_cmd = run_local('docker build -f {} -t {} .'.format(image, tag))
|
|
|
|
if build_cmd.rc != 0:
|
|
|
|
print build_cmd.stdout
|
|
|
|
print build_cmd.stderr
|
|
|
|
assert build_cmd.rc == 0
|