Skip to content

Commit 1c01d24

Browse files
author
Thomas Grainger
committedJan 10, 2017
add integration tests
1 parent 24cf283 commit 1c01d24

File tree

5 files changed

+60
-0
lines changed

5 files changed

+60
-0
lines changed
 

‎.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
language: python
2+
sudo: true
3+
services:
4+
- docker
25
python:
36
- "2.7"
47
- "3.5"

‎tests/conftest.py

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
from __future__ import absolute_import
2+
3+
import time
4+
5+
import requests
6+
from requests import exceptions
7+
import docker
8+
import pytest
9+
from docker import utils as docker_utils
10+
11+
12+
@pytest.fixture(scope='session')
13+
def docker_client():
14+
client_cfg = docker_utils.kwargs_from_env()
15+
return docker.Client(version='1.21', **client_cfg)
16+
17+
18+
def wait_till_up(url, attempts):
19+
for i in range(attempts-1):
20+
try:
21+
requests.get(url)
22+
return
23+
except exceptions.ConnectionError as e:
24+
time.sleep(0.1 * 2**i)
25+
else:
26+
requests.get(url)
27+
28+
29+
@pytest.yield_fixture(scope='session')
30+
def registry(docker_client):
31+
cli = docker_client
32+
cli.pull('registry', '2')
33+
cont = cli.create_container(
34+
'registry:2',
35+
ports=[5000],
36+
host_config=cli.create_host_config(
37+
port_bindings={
38+
5000: 5000,
39+
},
40+
),
41+
)
42+
try:
43+
cli.start(cont)
44+
wait_till_up('http://localhost:5000', 3)
45+
try:
46+
yield
47+
finally:
48+
cli.stop(cont)
49+
finally:
50+
cli.remove_container(cont, v=True, force=True)

‎tests/integration/__init__.py

Whitespace-only changes.

‎tests/integration/test_base_client.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from docker_registry_client import BaseClient
2+
3+
4+
def test_base_client(registry):
5+
cli = BaseClient('http://localhost:5000', api_version=2)
6+
assert cli.catalog() == {'repositories': []}

‎tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ envlist = py{27,35,36}, lint
44
[testenv]
55
commands = py.test {posargs}
66
deps =
7+
docker-py==1.10.6
78
flexmock==0.10.2
89
pytest==3.0.5
910

0 commit comments

Comments
 (0)
Please sign in to comment.