Created unit test for core logic in test-install command.

This commit is contained in:
Peter Scheibel 2015-10-15 22:02:14 -07:00
parent 6cd976d036
commit 39f0f000f8
3 changed files with 145 additions and 12 deletions

View file

@ -82,8 +82,23 @@ def __init__(self, spec):
def stringId(self): def stringId(self):
return "-".join(str(x) for x in (self.name, self.version, self.hashId)) return "-".join(str(x) for x in (self.name, self.version, self.hashId))
def __hash__(self):
return hash((self.name, self.version, self.hashId))
def __eq__(self, other):
if not isinstance(other, BuildId):
return False
return ((self.name, self.version, self.hashId) ==
(other.name, other.version, other.hashId))
def create_test_output(topSpec, newInstalls, output):
def fetch_log(path):
with open(path, 'rb') as F:
return list(F.readlines())
def create_test_output(topSpec, newInstalls, output, getLogFunc=fetch_log):
# Post-order traversal is not strictly required but it makes sense to output # Post-order traversal is not strictly required but it makes sense to output
# tests for dependencies first. # tests for dependencies first.
for spec in topSpec.traverse(order='post'): for spec in topSpec.traverse(order='post'):
@ -98,17 +113,16 @@ def create_test_output(topSpec, newInstalls, output):
bId = BuildId(spec) bId = BuildId(spec)
package = spack.db.get(spec) package = spack.db.get(spec)
with open(package.build_log_path, 'rb') as F: lines = getLogFunc(package.build_log_path)
lines = F.readlines() errMessages = list(line for line in lines if
errMessages = list(line for line in lines if re.search('error:', line, re.IGNORECASE))
re.search('error:', line, re.IGNORECASE)) errOutput = errMessages if errMessages else lines[-10:]
errOutput = errMessages if errMessages else lines[-10:] errOutput = '\n'.join(itertools.chain(
errOutput = '\n'.join(itertools.chain( [spec.to_yaml(), "Errors:"], errOutput,
[spec.to_yaml(), "Errors:"], errOutput, ["Build Log:", package.build_log_path]))
["Build Log:", package.build_log_path]))
output.add_test(bId, package.installed, errOutput)
output.add_test(bId, package.installed, errOutput)
def test_install(parser, args): def test_install(parser, args):
if not args.package: if not args.package:

View file

@ -56,7 +56,8 @@
'spec_yaml', 'spec_yaml',
'optional_deps', 'optional_deps',
'make_executable', 'make_executable',
'configure_guess'] 'configure_guess',
'unit_install']
def list_tests(): def list_tests():

View file

@ -0,0 +1,118 @@
##############################################################################
# Copyright (c) 2013, Lawrence Livermore National Security, LLC.
# Produced at the Lawrence Livermore National Laboratory.
#
# This file is part of Spack.
# Written by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
# LLNL-CODE-647188
#
# For details, see https://scalability-llnl.github.io/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 General Public License (as published by
# the Free Software Foundation) version 2.1 dated 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 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 unittest
import itertools
import spack
test_install = __import__("spack.cmd.test-install",
fromlist=["BuildId", "create_test_output"])
class MockOutput(object):
def __init__(self):
self.results = {}
def add_test(self, buildId, passed=True, buildInfo=None):
self.results[buildId] = passed
def write_to(self, stream):
pass
class MockSpec(object):
def __init__(self, name, version, hashStr=None):
self.dependencies = {}
self.name = name
self.version = version
self.hash = hashStr if hashStr else hash((name, version))
def traverse(self, order=None):
allDeps = itertools.chain.from_iterable(i.traverse() for i in
self.dependencies.itervalues())
return set(itertools.chain([self], allDeps))
def dag_hash(self):
return self.hash
def to_yaml(self):
return "<<<MOCK YAML {0}>>>".format(test_install.BuildId(self).stringId())
class MockPackage(object):
def __init__(self, buildLogPath):
self.installed = False
self.build_log_path = buildLogPath
specX = MockSpec("X", "1.2.0")
specY = MockSpec("Y", "2.3.8")
specX.dependencies['Y'] = specY
pkgX = MockPackage('logX')
pkgY = MockPackage('logY')
bIdX = test_install.BuildId(specX)
bIdY = test_install.BuildId(specY)
class UnitInstallTest(unittest.TestCase):
"""Tests test-install where X->Y"""
def setUp(self):
super(UnitInstallTest, self).setUp()
#import pdb; pdb.set_trace()
pkgX.installed = False
pkgY.installed = False
pkgDb = MockPackageDb({specX:pkgX, specY:pkgY})
spack.db = pkgDb
def tearDown(self):
super(UnitInstallTest, self).tearDown()
def test_installing_both(self):
mo = MockOutput()
pkgX.installed = True
pkgY.installed = True
test_install.create_test_output(specX, [specX, specY], mo, getLogFunc=test_fetch_log)
self.assertEqual(mo.results, {bIdX:True, bIdY:True})
def test_dependency_already_installed(self):
mo = MockOutput()
pkgX.installed = True
pkgY.installed = True
test_install.create_test_output(specX, [specX], mo, getLogFunc=test_fetch_log)
self.assertEqual(mo.results, {bIdX:True})
class MockPackageDb(object):
def __init__(self, init=None):
self.specToPkg = {}
if init:
self.specToPkg.update(init)
def get(self, spec):
return self.specToPkg[spec]
def test_fetch_log(path):
return []