Tests for NB_UID, NB_GID, GRANT_SUDO options

* Improve test container teardown
* Fix needless groupmod when NB_GID is unchanged
This commit is contained in:
Peter Parente
2017-11-30 00:15:17 -05:00
parent 8a59d74813
commit b9139131da
3 changed files with 62 additions and 27 deletions

View File

@@ -33,8 +33,8 @@ if [ $(id -u) == 0 ] ; then
usermod -u $NB_UID $NB_USER usermod -u $NB_UID $NB_USER
fi fi
# Change GID of NB_USER to NB_GID if NB_GID is passed as a parameter # Change GID of NB_USER to NB_GID if it does not match
if [ "$NB_GID" ] ; then if [ "$NB_GID" != $(id -g $NB_USER) ] ; then
echo "Set $NB_USER GID to: $NB_GID" echo "Set $NB_USER GID to: $NB_GID"
groupmod -g $NB_GID -o $(id -g -n $NB_USER) groupmod -g $NB_GID -o $(id -g -n $NB_USER)
fi fi

View File

@@ -21,7 +21,7 @@ def test_unsigned_ssl(container, http_client):
"""Container should generate a self-signed SSL certificate """Container should generate a self-signed SSL certificate
and notebook server should use it to enable HTTPS. and notebook server should use it to enable HTTPS.
""" """
c = container.run( container.run(
environment=['GEN_CERT=yes'] environment=['GEN_CERT=yes']
) )
# NOTE: The requests.Session backing the http_client fixture does not retry # NOTE: The requests.Session backing the http_client fixture does not retry
@@ -34,32 +34,68 @@ def test_unsigned_ssl(container, http_client):
assert 'login_submit' in resp.text assert 'login_submit' in resp.text
@pytest.mark.skip('placeholder') def test_uid_change(container):
def test_uid_change(): """Container should change the UID of the default user."""
pass c = container.run(
tty=True,
user='root',
environment=['NB_UID=1010'],
command=['start.sh', 'id && touch /opt/conda/test-file']
)
# usermod is slow so give it some time
c.wait(timeout=120)
assert 'uid=1010(jovyan)' in c.logs(stdout=True).decode('utf-8')
def test_gid_change(container):
"""Container should change the GID of the default user."""
c = container.run(
tty=True,
user='root',
environment=['NB_GID=110'],
command=['start.sh', 'id']
)
c.wait(timeout=10)
assert 'gid=110(users)' in c.logs(stdout=True).decode('utf-8')
def test_sudo(container):
"""Container should grant passwordless sudo to the default user."""
c = container.run(
tty=True,
user='root',
environment=['GRANT_SUDO=yes'],
command=['start.sh', 'sudo', 'id']
)
rv = c.wait(timeout=10)
assert rv == 0
assert 'uid=0(root)' in c.logs(stdout=True).decode('utf-8')
def test_group_add(container):
"""Container should run with the specified uid, gid, and secondary
group, but retain unprivileged access to the conda path.
"""
c = container.run(
user='1010:1010',
group_add=['users'],
command=['start.sh', 'bash', '-c', 'id && touch /opt/conda/test-file']
)
rv = c.wait(timeout=5)
assert rv == 0
assert 'uid=1010 gid=1010 groups=1010,100(users)' in c.logs(stdout=True).decode('utf-8')
@pytest.mark.skip('placeholder') @pytest.mark.skip('placeholder')
def test_gid_change(): def test_host_mount(container):
pass """Container should start the notebook server properly when
the user home directory is host mounted.
"""
@pytest.mark.skip('placeholder')
def test_group_add():
pass
@pytest.mark.skip('placeholder')
def test_sudo():
pass
@pytest.mark.skip('placeholder')
def test_host_mount():
pass pass
@pytest.mark.skip('placeholder') @pytest.mark.skip('placeholder')
def test_alt_command(): def test_alt_command():
"""Container should launch an alternative command."""
pass pass

View File

@@ -75,10 +75,10 @@ class TrackedContainer(object):
self.container = self.docker_client.containers.run(self.image_name, **all_kwargs) self.container = self.docker_client.containers.run(self.image_name, **all_kwargs)
return self.container return self.container
def kill(self): def remove(self):
"""Kills the tracked docker container.""" """Kills and removes the tracked docker container."""
if self.container: if self.container:
self.container.kill() self.container.remove(force=True)
@pytest.fixture(scope='function') @pytest.fixture(scope='function')
@@ -92,10 +92,9 @@ def container(docker_client, image_name):
docker_client, docker_client,
image_name, image_name,
detach=True, detach=True,
auto_remove=False,
ports={ ports={
'8888/tcp': 8888 '8888/tcp': 8888
} }
) )
yield container yield container
container.kill() container.remove()