File: dockertest.py

package info (click to toggle)
notary 0.6.1~ds1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,692 kB
  • sloc: python: 1,112; sh: 481; makefile: 181; sql: 155
file content (633 lines) | stat: -rw-r--r-- 21,590 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
"""
Script that automates trusted pull/pushes on different docker versions.

Usage: python buildscripts/dockertest.py

- assumes that this is run from the root notary directory
- assumes that bin/client already exists
- assumes you are logged in with docker

- environment variables to provide:
    - DEBUG=true - produce debug output
    - DOCKER_CONTENT_TRUST_SERVER=<notary server url> test against a non-local
      notary server
    - NOTARY_SERVER_USERNAME=<username> login creds username to notary server
    - NOTARY_SERVER_PASSPHRASE=<passwd> login creds password to notary server
    - DOCKER_USERNAME=<username> docker hub login username
"""

from __future__ import print_function
from collections import OrderedDict
import atexit
import json
import os
import platform
import pwd
import re
import shutil
import subprocess
import tarfile
from tempfile import mkdtemp
from time import sleep, time
import urllib
from urlparse import urljoin

# Configuration for testing

# please give the full path to the binary (or if it's on your path, just the
# binary name) for these if you do not want them downloaded, otherwise these
# can be ignored.  Up to you to make sure you are running the correct daemon
# version.
DOCKERS = {}

# delete any of these if you want to specify the docker binaries yourself
DOWNLOAD_DOCKERS = {
    "1.10": ("https://get.docker.com", "docker-1.10.3"),
    "1.11": ("https://get.docker.com", "docker-1.11.2"),
    "1.12": ("https://get.docker.com", "docker-1.12.1"),
}

NOTARY_VERSION = "0.4.1"     # only version that will work with docker < 1.13
NOTARY_BINARY = "bin/notary"

# please replace with private registry if you want to test against a private
# registry
REGISTRY = "docker.io"

# please enter your username if it does not match your shell username, or set the
# environment variable DOCKER_USERNAME
REGISTRY_USERNAME = os.getenv("DOCKER_USERNAME", pwd.getpwuid(os.getuid())[0])

# what you want the testing repo names to be prefixed with
REPO_PREFIX = "docker_test"

# Assumes default docker config dir
DEFAULT_DOCKER_CONFIG = os.path.expanduser("~/.docker")

# Assumes the trust server will be run using compose if
# DOCKER_CONTENT_TRUST_SERVER is not specified
DEFAULT_NOTARY_SERVER = "https://notary-server:4443"

# please enter a custom trust server location if you do not wish to use a local
# docker-compose instantiation.  If testing against Docker Hub's notary server
# or another trust server, please also ensure that this script does not pick up
# incorrect TLS certificates from ~/.notary/config.json by default
TRUST_SERVER = os.getenv('DOCKER_CONTENT_TRUST_SERVER', DEFAULT_NOTARY_SERVER)


# Assumes the test will be run with `python misc/dockertest.py` from
# the root of the notary repo after binaries are built
# also overrides the notary server location if need be
if TRUST_SERVER != DEFAULT_NOTARY_SERVER:
    NOTARY_CLIENT = "{client} -s {server}".format(
        client=NOTARY_BINARY, server=TRUST_SERVER)
else:
    NOTARY_CLIENT = "{client} -c cmd/notary/config.json".format(
        client=NOTARY_BINARY)

DEBUG = " -D" if os.getenv('DEBUG') else ""

# ---- setup ----


def download_docker(download_dir="/tmp"):
    """
    Downloads the relevant docker binaries and sets the docker values
    """
    system = platform.system()
    architecture = "x86_64"
    if platform.architecture()[0] != "64bit":
        architecture = "i386"

    downloadfile = urllib.URLopener()
    for version in DOWNLOAD_DOCKERS:
        domain, binary = DOWNLOAD_DOCKERS[version]
        tarfilename = os.path.join(download_dir, binary+".tgz")
        extractdir = os.path.join(download_dir, binary)

        DOCKERS[version] = os.path.join(extractdir, "docker")

        # we already have that version
        if os.path.isfile(os.path.join(extractdir, "docker")):
            continue

        if not os.path.isdir(extractdir):
            os.makedirs(extractdir)

        if not os.path.isfile(tarfilename):
            url = urljoin(
                # as of 1.10 docker downloads are tar-ed due to potentially
                # containing containerd etc.
                # note that for windows (which we don't currently support),
                # it's a .zip file
                domain, "/".join(
                    ["builds", system, architecture, binary+".tgz"]))

            print("Downloading", url)
            downloadfile.retrieve(url, tarfilename)

        with tarfile.open(tarfilename, 'r:gz') as tf:
            for member in tf.getmembers():
                if not member.isfile():
                    continue

                archfile = tf.extractfile(member)
                fname = os.path.join(extractdir, os.path.basename(member.name))
                with open(fname, 'wb') as writefile:
                    writefile.write(archfile.read())
                os.chmod(fname, 0755)

        if not os.path.isfile(DOCKERS[version]):
            raise Exception(
                "Extracted {tar} to {loc} but could not find {docker}".format(
                    tar=tarfilename, loc=extractdir, docker=DOCKERS[version]))


def verify_notary():
    """
    Check that notary is the right version
    """
    if not os.path.isfile(NOTARY_BINARY):
        raise Exception("notary client does not exist: " + NOTARY_BINARY)

    output = subprocess.check_output([NOTARY_BINARY, "version"]).strip()
    lines = output.split("\n")
    if len(lines) != 3:
        print(output)
        raise Exception("notary version output invalid")

    if lines[1].split()[-1] > NOTARY_VERSION:
        print(output)
        raise Exception("notary version too high: must be <= " + NOTARY_VERSION)


def setup():
    """
    Ensure we are set up to run the test
    """
    download_docker()
    verify_notary()
    # ensure that we have the alpine image
    subprocess.call("docker pull alpine".split())

    # copy the docker config dir over so we don't break anything in real docker
    # config directory
    os.mkdir(_TEMP_DOCKER_CONFIG_DIR)

    # copy any docker creds over so we can push
    configfile = os.path.join(_TEMP_DOCKER_CONFIG_DIR, "config.json")
    shutil.copyfile(
        os.path.join(DEFAULT_DOCKER_CONFIG, "config.json"), configfile)

    # always clean up the config file so creds aren't left in this temp directory
    atexit.register(os.remove, configfile)
    defaulttlsdir = os.path.join(DEFAULT_DOCKER_CONFIG, "tls")
    tlsdir = os.path.join(_TEMP_DOCKER_CONFIG_DIR, "tls")
    if os.path.exists(tlsdir):
        shutil.copytree(defaulttlsdir, tlsdir)

    # make sure that the cert is in the right place for local notary
    if TRUST_SERVER == DEFAULT_NOTARY_SERVER:
        tlsdir = os.path.join(tlsdir, "notary-server:4443")
        if not os.path.isdir(tlsdir):
            try:
                shutil.rmtree(tlsdir)  # in case it's not a directory
            except OSError as ex:
                if "No such file or directory" not in str(ex):
                    raise
            os.makedirs(tlsdir)
        cert = os.path.join(tlsdir, "root-ca.crt")
        if not os.path.isfile(cert):
            shutil.copyfile("fixtures/root-ca.crt", cert)

# ---- tests ----

_TEMPDIR = mkdtemp(prefix="docker-version-test")
_TEMP_DOCKER_CONFIG_DIR = os.path.join(_TEMPDIR, "docker-config-dir")
_TRUST_DIR = os.path.join(_TEMP_DOCKER_CONFIG_DIR, "trust")

_ENV = os.environ.copy()
_ENV.update({
    # enable content trust and use our own server
    "DOCKER_CONTENT_TRUST_SERVER": TRUST_SERVER,
    "DOCKER_CONTENT_TRUST": "1",

    # environment variables that notary uses
    "NOTARY_ROOT_PASSPHRASE": "randompass",
    "NOTARY_TARGETS_PASSPHRASE": "randompass",
    "NOTARY_SNAPSHOT_PASSPHRASE": "randompass",

    # environment variables used by current version of docker
    "DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "randompass",
    "DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "randompass",

    # environment variables used by docker 1.8
    "DOCKER_CONTENT_TRUST_OFFLINE_PASSPHRASE": "randompass",
    "DOCKER_CONTENT_TRUST_TAGGING_PASSPHRASE": "randompass",

    # do not use the default docker config directory
    "DOCKER_CONFIG": _TEMP_DOCKER_CONFIG_DIR
})

_DIGEST_REGEX = re.compile(r"\b[dD]igest: sha256:([0-9a-fA-F]+)\b")
_SIZE_REGEX = re.compile(r"\bsize: ([0-9]+)\b")
_PULL_A_REGEX = re.compile(
    r"Pull \(\d+ of \d+\): .+:(.+)@sha256:([0-9a-fA-F]+)")
_BUILD_REGEX = re.compile(r"Successfully built ([0-9a-fA-F]+)")


def clear_tuf():
    """
    Removes the trusted certificates and TUF metadata in ~/.docker/trust
    """
    try:
        shutil.rmtree(os.path.join(_TRUST_DIR, "trusted_certificates"))
        shutil.rmtree(os.path.join(_TRUST_DIR, "tuf"))
    except OSError as ex:
        if "No such file or directory" not in str(ex):
            raise


def clear_keys():
    """
    Removes the TUF keys in trust directory, since the key format changed
    between versions and can cause problems if testing newer docker versions
    before testing older docker versions.
    """
    try:
        shutil.rmtree(os.path.join(_TRUST_DIR, "private"))
    except OSError as ex:
        if "No such file or directory" not in str(ex):
            raise


def run_cmd(cmd, fileoutput, input=None):
    """
    Takes a string command, runs it, and returns the output even if it fails.
    """
    print("$ " + cmd)
    fileoutput.write("$ {cmd}\n".format(cmd=cmd))

    if input is not None:
        process = subprocess.Popen(
            cmd.split(), env=_ENV, stderr=subprocess.STDOUT,
            stdin=subprocess.PIPE, stdout=subprocess.PIPE)

        process.stdin.write(input)
        process.stdin.close()
    else:
        process = subprocess.Popen(cmd.split(), env=_ENV, stderr=subprocess.STDOUT,
                                   stdout=subprocess.PIPE)
    output = ""
    while process.poll() is None:
        line = process.stdout.readline()
        print(line.strip("\n"))
        fileoutput.write(line)
        if "level=debug" not in line:
            output += line

    retcode = process.poll()
    print()
    fileoutput.write("\n")

    if retcode:
        raise subprocess.CalledProcessError(retcode, cmd, output=output)

    return output


def rmi(fout, docker_version, image, tag):
    """
    Ensures that an image is no longer available locally to docker.
    """
    try:
        run_cmd(
            "{docker} rmi {image}:{tag}".format(
                docker=DOCKERS[docker_version], image=image, tag=tag),
            fout)
    except subprocess.CalledProcessError as ex:
        if "could not find image" not in str(ex):
            raise


def assert_equality(actual, expected):
    """
    Assert equality, print nice message
    """
    assert actual == expected, "\nGot     : {0}\nExpected: {1}".format(
        repr(actual), repr(expected))


def pull(fout, docker_version, image, tag, expected_sha):
    """
    Pulls an image using docker, and asserts that the sha is correct.  Make
    sure it is untagged first.
    """
    clear_tuf()
    rmi(fout, docker_version, image, tag)
    output = run_cmd(
        "{docker}{debug} pull {image}:{tag}".format(
            docker=DOCKERS[docker_version], image=image, tag=tag, debug=DEBUG),
        fout)
    sha = _DIGEST_REGEX.search(output).group(1)
    assert_equality(sha, expected_sha)


def push(fout, docker_version, image, tag):
    """
    Tags an image with the docker version and pushes it.  Returns the sha and
    expected size.
    """
    clear_tuf()

    # tag image with the docker version
    run_cmd(
        "{docker} tag alpine {image}:{tag}".format(
            docker=DOCKERS[docker_version], image=image, tag=tag),
        fout)

    # push!
    output = run_cmd(
        "{docker}{debug} push {image}:{tag}".format(
            docker=DOCKERS[docker_version], image=image, tag=tag, debug=DEBUG),
        fout)
    sha = _DIGEST_REGEX.search(output).group(1)
    size = _SIZE_REGEX.search(output).group(1)

    # sleep for 1s after pushing, just to let things propagate :)
    sleep(1)

    # list
    targets = notary_list(fout, image)
    for target in targets:
        if target[0] == tag:
            assert_equality(target, [tag, sha, size, "targets"])
    return sha, size


def get_notary_usernamepass():
    """
    Gets the username password for the notary server
    """
    username = os.getenv("NOTARY_SERVER_USERNAME")
    passwd = os.getenv("NOTARY_SERVER_PASSPHRASE")

    if username and passwd:
        return username + "\n" + passwd + "\n"
    return None


def notary_list(fout, repo):
    """
    Calls notary list on the repo and returns a list of lists of tags, shas,
    sizes, and roles.
    """
    clear_tuf()
    output = run_cmd(
        "{notary}{debug} -d {trustdir} list {gun}".format(
            notary=NOTARY_CLIENT, trustdir=_TRUST_DIR, gun=repo, debug=DEBUG),
        fout, input=get_notary_usernamepass())
    lines = output.strip().split("\n")
    assert len(lines) >= 3, "not enough targets"
    return [line.strip().split() for line in lines[2:]]


def test_build(fout, image, docker_version):
    """
    Build from a simple Dockerfile and ensure it works with DCT enabled
    """
    clear_tuf()
    # build
    # simple dockerfile to test building with trust
    dockerfile = "FROM {image}:{tag}\nRUN sh\n".format(
        image=image, tag=docker_version)
    tempdir_dockerfile = os.path.join(_TEMPDIR, "Dockerfile")
    with open(tempdir_dockerfile, 'wb') as ftemp:
        ftemp.write(dockerfile)

    output = run_cmd(
        "{docker}{debug} build {context}".format(
            docker=DOCKERS[docker_version], context=_TEMPDIR, debug=DEBUG),
        fout)

    build_result = _BUILD_REGEX.findall(output)
    assert len(build_result) >= 0, "build did not succeed"


def test_pull_a(fout, docker_version, image, expected_tags):
    """
    Pull -A on an image and ensure that all the expected tags are present
    """
    clear_tuf()
    # remove every image possible
    for tag in expected_tags:
        rmi(fout, docker_version, image, tag)

    # pull -a
    output = run_cmd(
        "{docker}{debug} pull -a {image}".format(
            docker=DOCKERS[docker_version], image=image, debug=DEBUG), fout)
    pulled_tags = _PULL_A_REGEX.findall(output)

    assert_equality(len(pulled_tags), len(expected_tags))
    for tag, info in expected_tags.iteritems():
        found = [pulled for pulled in pulled_tags if pulled[0] == tag]
        assert found
        assert_equality(found[0][1], info["sha"])


def test_push(tempdir, docker_version, image, tag="", allow_push_failure=False,
              do_after_first_push=None):
    """
    Tests a push of an image by pushing with this docker version, and asserting
    that all the other docker versions can pull it.
    """
    if not tag:
        tag = docker_version

    filename = os.path.join(
        tempdir, "{0}_{1}_push_{2}").format(time(), docker_version, tag)

    with open(filename, 'wb') as fout:
        try:
            sha, size = push(fout, docker_version, image, tag=tag)
        except subprocess.CalledProcessError:
            if allow_push_failure:
                return {"push": "failed, but that was expected"}
            raise

        return_val = {
            "push": {
                "sha": sha,
                "size": size
            }
        }

        if do_after_first_push is not None:
            do_after_first_push(fout, image)

        for ver in DOCKERS:
            try:
                pull(fout, ver, image, tag, sha)
            except subprocess.CalledProcessError:
                print("pulling {0}:{1} with {2} (expected hash {3}) failed".format(
                    image, tag, ver, sha))
                raise
            else:
                return_val["push"][ver] = "pull succeeded"

        return return_val


def test_run(fout, image, docker_version):
    """
    Runs a simple alpine container to ensure it works with DCT enabled
    """
    clear_tuf()
    # run
    output = run_cmd(
        "{docker}{debug} run -it --rm {image}:{tag} echo SUCCESS".format(
            docker=DOCKERS[docker_version], image=image, tag=docker_version,
            debug=DEBUG), fout)
    assert "SUCCESS" in output, "run did not succeed"


def test_docker_version(docker_version, repo_name="", do_after_first_push=None):
    """
    Initialize a repo with one docker version.  Test that all other docker
    versions against that repo (both pulling and pushing).
    """
    if not repo_name:
        repo_name = "repo_by_{0}".format(docker_version)
    tempdir = os.path.join(_TEMPDIR, repo_name)
    os.makedirs(tempdir)
    image = "{0}/{1}/{2}_{3}-{4}".format(
        REGISTRY, REGISTRY_USERNAME, REPO_PREFIX, repo_name, time())

    result = OrderedDict([
        (docker_version, test_push(tempdir, docker_version, image,
                                   do_after_first_push=do_after_first_push))
    ])

    # push again if we did something after the first push
    if do_after_first_push:
        tag = docker_version + "_push_again"
        result[tag] = test_push(
            tempdir, docker_version, image, tag=tag,
            # 1.8.x and 1.9.x might fail to push again after snapshot rotation
            # or delegation manipulation
            allow_push_failure=re.compile(r"1\.[0-9](\.\d+)?$").search(docker_version))

    for ver in DOCKERS:
        if ver != docker_version:
            # 1.8.x and 1.9.x will fail to push if the repo was created by
            # a more recent docker, since the key format has changed, or if a
            # snapshot rotation or delegation has occurred
            can_fail = (
                (do_after_first_push or
                 re.compile(r"1\.[1-9][0-9](\.\d+)?$").search(docker_version)) and
                re.compile(r"1\.[0-9](\.\d+)?$").search(ver))

            result[ver] = test_push(tempdir, ver, image, allow_push_failure=can_fail)

    # find all the successfully pushed tags
    expected_tags = {}
    for ver in result:
        if isinstance(result[ver]["push"], dict):
            expected_tags[ver] = result[ver]["push"]

    with open(os.path.join(tempdir, "pull_a"), 'wb') as fout:
        for ver in DOCKERS:
            try:
                test_pull_a(fout, ver, image, expected_tags)
            except subprocess.CalledProcessError:
                result[ver]["pull-a"] = "failed"
            else:
                result[ver]["pull-a"] = "success"

    with open(os.path.join(tempdir, "notary_list"), 'wb') as fout:
        targets = notary_list(fout, image)
        assert_equality(len(targets), len(expected_tags))
        for tag, info in expected_tags.iteritems():
            found = [target for target in targets if target[0] == tag]
            assert found
            assert_equality(
                found[0][1:],
                [info["sha"], info["size"], "targets"])

        result["list"] = "listed expected targets successfully"

    with open(os.path.join(tempdir, "build"), 'wb') as fout:
            try:
                test_build(fout, image, docker_version)
            except subprocess.CalledProcessError:
                result[docker_version]["build"] = "failed"
            else:
                result[docker_version]["build"] = "success"

    with open(os.path.join(tempdir, "run"), 'wb') as fout:
            try:
                test_run(fout, image, docker_version)
            except subprocess.CalledProcessError:
                result[docker_version]["run"] = "failed"
            else:
                result[docker_version]["run"] = "success"

    with open(os.path.join(tempdir, "result.json"), 'wb') as fout:
        json.dump(result, fout, indent=2)

    return result


def rotate_to_server_snapshot(fout, image):
    """
    Uses the notary client to rotate the snapshot key to be server-managed.
    """
    run_cmd(
        "{notary}{debug} -d {trustdir} key rotate {gun} snapshot -r".format(
            notary=NOTARY_CLIENT, trustdir=_TRUST_DIR, gun=image, debug=DEBUG),
        fout, input=get_notary_usernamepass())
    run_cmd(
        "{notary}{debug} -d {trustdir} publish {gun}".format(
            notary=NOTARY_CLIENT, trustdir=_TRUST_DIR, gun=image, debug=DEBUG),
        fout, input=get_notary_usernamepass())


def test_all_docker_versions():
    """
    Initialize a repo with each docker version, and test that other docker
    versions can read/write to it.
    """
    print("Output files at", _TEMPDIR)
    results = OrderedDict()
    for docker_version in DOCKERS:
        clear_keys()

        # test with just creating a regular repo
        result = test_docker_version(docker_version)
        print("\nRepo created with docker {0}:".format(docker_version))
        print(json.dumps(result, indent=2))
        results[docker_version] = result

        # do snapshot rotation after creating the repo, and see if it's still ok
        repo_name = "repo_by_{0}_snapshot_rotation".format(docker_version)
        result = test_docker_version(
            docker_version, repo_name=repo_name,
            do_after_first_push=rotate_to_server_snapshot)

        print("\nRepo created with docker {0} and snapshot key rotated:"
              .format(docker_version))
        print(json.dumps(result, indent=2))
        results[docker_version + "_snapshot_rotation"] = result

    with open(os.path.join(_TEMPDIR, "total_results.json"), 'wb') as fout:
        json.dump(results, fout, indent=2)

    print("\n\nFinal results:")
    results["output_dir"] = _TEMPDIR
    print(json.dumps(results, indent=2))


if __name__ == "__main__":
    setup()
    test_all_docker_versions()