File: test_python.sh

package info (click to toggle)
mwrap 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,480 kB
  • sloc: cpp: 3,315; python: 1,850; ansic: 856; makefile: 255; lex: 233; sh: 145
file content (210 lines) | stat: -rwxr-xr-x 5,425 bytes parent folder | download
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
#!/usr/bin/env bash
#
# test_python.sh — test the Python mwrap port against reference files
# and against C++ mwrap output.
#
# Usage:
#   bash testing/test_python.sh <path-to-cpp-mwrap> <path-to-python-mwrap>
#
# Example:
#   bash testing/test_python.sh build/mwrap python/mwrap

set -euo pipefail

if [ $# -ne 2 ]; then
    echo "Usage: $0 <cpp-mwrap> <python-mwrap>"
    exit 1
fi

MWRAP_CPP="$(cd "$(dirname "$1")" && pwd)/$(basename "$1")"
MWRAP_PY="$(cd "$(dirname "$2")" && pwd)/$(basename "$2")"

SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
TMPDIR_BASE="$(mktemp -d)"
trap 'rm -rf "$TMPDIR_BASE"' EXIT

PASS=0
FAIL=0
ERRORS=""

pass() {
    PASS=$((PASS + 1))
    echo "  PASS: $1"
}

fail() {
    FAIL=$((FAIL + 1))
    ERRORS="${ERRORS}  FAIL: $1\n"
    echo "  FAIL: $1"
}

# ----------------------------------------------------------------
# Group A: Reference-file tests
# Run from the testing directory with relative .mw paths so that
# error messages use basenames (matching the .ref files).
# ----------------------------------------------------------------
echo "=== Group A: Reference-file tests ==="

run_ref_test() {
    local name="$1"
    local mw_basename="$2"
    local ref_file="$3"
    shift 3
    local flags=("$@")

    local tmpout="$TMPDIR_BASE/${name}.stderr"

    # Run Python mwrap from SCRIPT_DIR with relative .mw path; expect nonzero exit
    if (cd "$SCRIPT_DIR" && "$MWRAP_PY" "${flags[@]}" "$mw_basename" 2>"$tmpout") ; then
        fail "$name (expected nonzero exit, got 0)"
        return
    fi

    # Normalize "end of file" -> "$end" to match Bison 3.x convention
    sed -i.bak 's/end of file/$end/g' "$tmpout"

    if diff -u "$ref_file" "$tmpout" >/dev/null 2>&1; then
        pass "$name"
    else
        fail "$name (stderr differs from reference)"
        diff -u "$ref_file" "$tmpout" || true
    fi
}

run_ref_test test_syntax \
    test_syntax.mw \
    "$SCRIPT_DIR/test_syntax.ref" \
    -cppcomplex

run_ref_test test_typecheck \
    test_typecheck.mw \
    "$SCRIPT_DIR/test_typecheck.ref" \
    -cppcomplex

# ----------------------------------------------------------------
# Group B: Output equivalence tests (Python vs C++)
# ----------------------------------------------------------------
echo ""
echo "=== Group B: Output equivalence tests ==="

run_equiv_test() {
    local name="$1"
    local mw_file="$2"
    local cc_ext="$3"       # .cc or .c
    local gen_m="$4"        # "yes" or "no"
    shift 4
    local flags=()
    if [ $# -gt 0 ]; then
        flags=("$@")
    fi

    local cpp_dir="$TMPDIR_BASE/cpp_${name}"
    local py_dir="$TMPDIR_BASE/py_${name}"
    mkdir -p "$cpp_dir" "$py_dir"

    local mex_name="${name}mex"
    local cc_file="${mex_name}${cc_ext}"

    # Copy test_include2.mw if needed (for @include)
    if [ -f "$SCRIPT_DIR/test_include2.mw" ]; then
        cp "$SCRIPT_DIR/test_include2.mw" "$cpp_dir/"
        cp "$SCRIPT_DIR/test_include2.mw" "$py_dir/"
    fi

    local cpp_args=(-mex "$mex_name" -c "$cc_file")
    local py_args=(-mex "$mex_name" -c "$cc_file")

    if [ "$gen_m" = "yes" ]; then
        cpp_args+=(-m "${name}.m")
        py_args+=(-m "${name}.m")
    else
        cpp_args+=(-mb)
        py_args+=(-mb)
    fi

    if [ ${#flags[@]} -gt 0 ]; then
        cpp_args+=("${flags[@]}")
        py_args+=("${flags[@]}")
    fi
    cpp_args+=("$mw_file")
    py_args+=("$mw_file")

    # Run C++ mwrap
    if ! (cd "$cpp_dir" && "$MWRAP_CPP" "${cpp_args[@]}" 2>/dev/null); then
        fail "$name (C++ mwrap failed)"
        return
    fi

    # Run Python mwrap
    if ! (cd "$py_dir" && "$MWRAP_PY" "${py_args[@]}" 2>/dev/null); then
        fail "$name (Python mwrap failed)"
        return
    fi

    # Compare generated C/C++ file
    if diff -u "$cpp_dir/$cc_file" "$py_dir/$cc_file" >/dev/null 2>&1; then
        pass "$name ($cc_file)"
    else
        fail "$name ($cc_file differs)"
        diff -u "$cpp_dir/$cc_file" "$py_dir/$cc_file" | head -40 || true
    fi

    # Compare generated .m file (if applicable)
    if [ "$gen_m" = "yes" ]; then
        if diff -u "$cpp_dir/${name}.m" "$py_dir/${name}.m" >/dev/null 2>&1; then
            pass "$name (${name}.m)"
        else
            fail "$name (${name}.m differs)"
            diff -u "$cpp_dir/${name}.m" "$py_dir/${name}.m" | head -40 || true
        fi
    fi
}

run_equiv_test test_transfers \
    "$SCRIPT_DIR/test_transfers.mw" .cc yes

run_equiv_test test_cpp_complex \
    "$SCRIPT_DIR/test_cpp_complex.mw" .cc yes \
    -cppcomplex

run_equiv_test test_c99_complex \
    "$SCRIPT_DIR/test_c99_complex.mw" .c yes \
    -c99complex

run_equiv_test test_catch \
    "$SCRIPT_DIR/test_catch.mw" .cc yes \
    -catch

run_equiv_test test_fortran1 \
    "$SCRIPT_DIR/test_fortran1.mw" .cc yes

run_equiv_test test_fortran2 \
    "$SCRIPT_DIR/test_fortran2.mw" .c yes

run_equiv_test test_include \
    "$SCRIPT_DIR/test_include.mw" .cc yes

run_equiv_test test_single \
    "$SCRIPT_DIR/test_single.mw" .cc no \
    -cppcomplex

run_equiv_test test_char \
    "$SCRIPT_DIR/test_char.mw" .cc no \
    -cppcomplex

# ----------------------------------------------------------------
# Summary
# ----------------------------------------------------------------
echo ""
echo "=== Summary ==="
echo "  Passed: $PASS"
echo "  Failed: $FAIL"

if [ $FAIL -ne 0 ]; then
    echo ""
    echo "Failures:"
    echo -e "$ERRORS"
    exit 1
fi

exit 0