-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.sh
executable file
·156 lines (129 loc) · 3.69 KB
/
tests.sh
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
#!/bin/sh
# Copyright © 2022 Lior Stern
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# “Software”), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
set -ex
if [ -z "$ASM" ]; then
ASM=uxnasm
fi
if [ -z "$EMU" ]; then
EMU=uxncli
fi
if [ -z "$ROMS_DIRECTORY" ]; then
ROMS_DIRECTORY=./roms
fi
py_dis() {
INPUT="$1"
OUTPUT="$2"
./uxn_disassembler.py > "$OUTPUT" < "$INPUT"
}
tal_dis() {
INPUT="$1"
OUTPUT="$2"
cp "$INPUT" disassembler_input.rom # Because of the sandbox
# The current implementation of uxncli returns the value in System/state, which will be 1
$EMU ./disassembler.rom disassembler_input.rom > "$OUTPUT" || true
# TODO: Remove that `|| true`
rm disassembler_input.rom
}
test_tal_vs_py() {
INPUT="$1"
TAL_OUTPUT=$(mktemp --suffix=".$(basename "$INPUT").tal_output.tal")
PY_OUTPUT=$(mktemp --suffix=".$(basename "$INPUT").py_output.tal")
py_dis "$INPUT" "$PY_OUTPUT"
tal_dis "$INPUT" "$TAL_OUTPUT"
diff "$PY_OUTPUT" "$TAL_OUTPUT"
rm "$TAL_OUTPUT" "$PY_OUTPUT"
}
hash_file() {
sha512sum "$1" | cut -f1 -d ' '
}
test_tal_correctnes() {
ORIGINAL_ROM="$1"
DISASSEMBLED_ROM=$(mktemp --suffix=".$(basename "$ORIGINAL_ROM").disassembled.tal")
REASSEMBLED_ROM=$(mktemp --suffix=".$(basename "$ORIGINAL_ROM").reassembled.rom")
tal_dis "$ORIGINAL_ROM" "$DISASSEMBLED_ROM"
$ASM "$DISASSEMBLED_ROM" "$REASSEMBLED_ROM"
ORIGINAL_HASH=$(hash_file "$ORIGINAL_ROM")
REASSEMBLED_HASH=$(hash_file "$REASSEMBLED_ROM")
if test "$ORIGINAL_HASH" != "$REASSEMBLED_HASH"; then
false
fi
rm "$DISASSEMBLED_ROM" "$REASSEMBLED_ROM"
}
test_edge_case_rom() {
TEMP_TAL=$(mktemp --suffix=".$1.edge-case.tal")
TEMP_ROM="$TEMP_TAL".rom
cat > "$TEMP_TAL"
$ASM "$TEMP_TAL" "$TEMP_ROM"
test_tal_vs_py "$TEMP_ROM"
test_tal_correctnes "$TEMP_ROM"
rm "$TEMP_TAL" "$TEMP_ROM"
}
test_truncated_lit() {
cat <<EOF | test_edge_case_rom truncated_lit
|100
80
EOF
}
test_truncated_litr() {
cat <<EOF | test_edge_case_rom truncated_litr
|100
c0
EOF
}
test_truncated_lit2_0() {
cat <<EOF | test_edge_case_rom truncated_lit2_0
|100
a0
EOF
}
test_truncated_lit2_1() {
cat <<EOF | test_edge_case_rom truncated_lit2_1
|100
a0 00
EOF
}
test_truncated_lit2r_0() {
cat <<EOF | test_edge_case_rom truncated_lit2r_0
|100
e0
EOF
}
test_truncated_lit2r_1() {
cat <<EOF | test_edge_case_rom truncated_lit2r_1
|100
e0 00
EOF
}
test_tal_vs_py ./disassembler.rom
test_tal_correctnes ./disassembler.rom
if test -d "$ROMS_DIRECTORY"; then
for rom in "$ROMS_DIRECTORY"/*; do
test_tal_vs_py "$rom"
test_tal_correctnes "$rom"
done
fi
test_truncated_lit
test_truncated_litr
test_truncated_lit2_0
test_truncated_lit2_1
test_truncated_lit2r_0
test_truncated_lit2r_1