summaryrefslogtreecommitdiff
path: root/lib/spack/spack/test/cmd/list.py
blob: fe86a7f3b7256fcb9233a7cbb094ac883f8f288a (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
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.main import SpackCommand

list = SpackCommand('list')


def test_list():
    output = list()
    assert 'cloverleaf3d' in output
    assert 'hdf5' in output


def test_list_filter(mock_packages):
    output = list('py-*')
    assert 'py-extension1' in output
    assert 'py-extension2' in output
    assert 'py-extension3' in output
    assert 'python' not in output
    assert 'mpich' not in output

    output = list('py')
    assert 'py-extension1' in output
    assert 'py-extension2' in output
    assert 'py-extension3' in output
    assert 'python' in output
    assert 'mpich' not in output


def test_list_search_description(mock_packages):
    output = list('--search-description', 'one build dependency')
    assert 'depb' in output


def test_list_format_name_only(mock_packages):
    output = list('--format', 'name_only')
    assert 'zmpi' in output
    assert 'hdf5' in output


def test_list_format_version_json(mock_packages):
    output = list('--format', 'version_json')
    assert '{"name": "zmpi",' in output
    assert '{"name": "dyninst",' in output
    import json
    json.loads(output)


def test_list_format_html(mock_packages):
    output = list('--format', 'html')
    assert '<div class="section" id="zmpi">' in output
    assert '<h1>zmpi' in output

    assert '<div class="section" id="hdf5">' in output
    assert '<h1>hdf5' in output


def test_list_update(tmpdir, mock_packages):
    update_file = tmpdir.join('output')

    # not yet created when list is run
    list('--update', str(update_file))
    assert update_file.exists()
    with update_file.open() as f:
        assert f.read()

    # created but older than any package
    with update_file.open('w') as f:
        f.write('empty\n')
    update_file.setmtime(0)
    list('--update', str(update_file))
    assert update_file.exists()
    with update_file.open() as f:
        assert f.read() != 'empty\n'

    # newer than any packages
    with update_file.open('w') as f:
        f.write('empty\n')
    list('--update', str(update_file))
    assert update_file.exists()
    with update_file.open() as f:
        assert f.read() == 'empty\n'