Skip to content

Commit

Permalink
Tests for NB_UID, NB_GID, GRANT_SUDO options
Browse files Browse the repository at this point in the history
* Improve test container teardown
* Fix needless groupmod when NB_GID is unchanged
  • Loading branch information
parente committed Nov 30, 2017
1 parent 8a59d74 commit b913913
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 21 deletions.
4 changes: 2 additions & 2 deletions base-notebook/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ if [ $(id -u) == 0 ] ; then
usermod -u $NB_UID $NB_USER
fi

# Change GID of NB_USER to NB_GID if NB_GID is passed as a parameter
if [ "$NB_GID" ] ; then
# Change GID of NB_USER to NB_GID if it does not match
if [ "$NB_GID" != $(id -g $NB_USER) ] ; then
echo "Set $NB_USER GID to: $NB_GID"
groupmod -g $NB_GID -o $(id -g -n $NB_USER)
fi
Expand Down
64 changes: 50 additions & 14 deletions base-notebook/test/test_container_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_unsigned_ssl(container, http_client):
"""Container should generate a self-signed SSL certificate
and notebook server should use it to enable HTTPS.
"""
c = container.run(
container.run(
environment=['GEN_CERT=yes']
)
# NOTE: The requests.Session backing the http_client fixture does not retry
Expand All @@ -34,32 +34,68 @@ def test_unsigned_ssl(container, http_client):
assert 'login_submit' in resp.text


@pytest.mark.skip('placeholder')
def test_uid_change():
pass
def test_uid_change(container):
"""Container should change the UID of the default user."""
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')


@pytest.mark.skip('placeholder')
def test_gid_change():
pass
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')


@pytest.mark.skip('placeholder')
def test_group_add():
pass
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')


@pytest.mark.skip('placeholder')
def test_sudo():
pass
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')
def test_host_mount():
def test_host_mount(container):
"""Container should start the notebook server properly when
the user home directory is host mounted.
"""
pass


@pytest.mark.skip('placeholder')
def test_alt_command():
"""Container should launch an alternative command."""
pass

9 changes: 4 additions & 5 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ def run(self, **kwargs):
self.container = self.docker_client.containers.run(self.image_name, **all_kwargs)
return self.container

def kill(self):
"""Kills the tracked docker container."""
def remove(self):
"""Kills and removes the tracked docker container."""
if self.container:
self.container.kill()
self.container.remove(force=True)


@pytest.fixture(scope='function')
Expand All @@ -92,10 +92,9 @@ def container(docker_client, image_name):
docker_client,
image_name,
detach=True,
auto_remove=False,
ports={
'8888/tcp': 8888
}
)
yield container
container.kill()
container.remove()

0 comments on commit b913913

Please sign in to comment.