summaryrefslogtreecommitdiff
path: root/check
blob: 101da551d03ffa8e6743f848ff4eb17a96ac3e4a (plain)
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
#!/bin/bash

set -eu
set -o pipefail

echo Running unit tests ============================================
python3 -m CoverageTestRunner --ignore-missing-from=without-tests yarns vmdb
echo

if command -v sp-codegen > /dev/null
then
    echo Running Subplot ============================================
    sp-codegen vmdb2.md -o test.py --run
    echo
fi

echo Running yarn tests ========================================
if python3 -c 'import yarnutils' 2>/dev/null
then
    yarn \
        --shell=python3 \
        --shell-arg '' \
        --shell-library yarns/lib.py \
        --env "PYTHONPATH=$(pwd)/yarns" \
        --cd-datadir \
        yarns/*.yarn "$@"
    echo
fi

echo Formatting docs ========================================
./format.sh

plugindocs() {
    ls -1 vmdb/plugins/*.mdwn
}

steps() {
    sed -n '/<h2 id="step-.*> Step: /s///p' vmdb2.html
}

code() {
    steps | grep '<code>' || true
}

panic() {
    echo "ERROR: $@" 1>&2
    exit 1
}

for doc in $(plugindocs)
do
    n="$(grep -c '^Step:' "$doc")"
    if [ "$n" != 1 ]
    then
	panic "Plugin doc $doc must have exactly 1 step title"
    fi
done

n="$(code | wc -l)"
if [ "$n" != 0 ]
then
    code
    panic "Documentation has steps that use code in title"
fi

if ! diff -u <(steps) <(steps | sort)
then
    panic "Steps are not in sorted order"
fi