summaryrefslogtreecommitdiff
path: root/lib/spack/spack/cmd/test.py
blob: b9f2a449aee2c4926bad9f9614a303c789f4dc18 (plain) (blame)
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
##############################################################################
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
# Produced at the Lawrence Livermore National Laboratory.
#
# This file is part of Spack.
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
# LLNL-CODE-647188
#
# For details, see https://github.com/llnl/spack
# Please also see the LICENSE file for our notice and the LGPL.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License (as
# published by the Free Software Foundation) version 2.1, February 1999.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
# conditions of the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
import os

from llnl.util.filesystem import join_path, mkdirp
from llnl.util.tty.colify import colify

import spack
import spack.test
from spack.fetch_strategy import FetchError

description = "Run unit tests"


def setup_parser(subparser):
    subparser.add_argument(
        'names', nargs='*', help="Names of tests to run.")
    subparser.add_argument(
        '-l', '--list', action='store_true', dest='list',
        help="Show available tests")
    subparser.add_argument(
        '--createXmlOutput', action='store_true', dest='createXmlOutput',
        help="Create JUnit XML from test results")
    subparser.add_argument(
        '--xmlOutputDir', dest='xmlOutputDir',
        help="Nose creates XML files in this directory")
    subparser.add_argument(
        '-v', '--verbose', action='store_true', dest='verbose',
        help="verbose output")


class MockCache(object):
    def store(self, copyCmd, relativeDst):
        pass

    def fetcher(self, targetPath, digest):
        return MockCacheFetcher()


class MockCacheFetcher(object):
    def set_stage(self, stage):
        pass

    def fetch(self):
        raise FetchError("Mock cache always fails for tests")

    def __str__(self):
        return "[mock fetcher]"


def test(parser, args):
    if args.list:
        print "Available tests:"
        colify(spack.test.list_tests(), indent=2)

    else:
        if not args.createXmlOutput:
            outputDir = None
        else:
            if not args.xmlOutputDir:
                outputDir = join_path(os.getcwd(), "test-output")
            else:
                outputDir = os.path.abspath(args.xmlOutputDir)

            if not os.path.exists(outputDir):
                mkdirp(outputDir)
        spack.fetch_cache = MockCache()
        spack.test.run(args.names, outputDir, args.verbose)