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
|
# This file is part of GNU Dico. -*- Autotest -*-
# Copyright (C) 2012-2024 Sergey Poznyakoff
#
# GNU Dico 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; either version 3, or (at your option)
# any later version.
#
# GNU Dico 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
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Dico. If not, see <http://www.gnu.org/licenses/>.
AT_BANNER(List)
dnl ------------------------------------------------------------
dnl TESTLIST([NAME], [KW = `'], [INPUT], [STDOUT = `'],
dnl [STDERR = `'], [RUN-IF-FAIL], [RUN-IF-PASS])
dnl
m4_pushdef([TESTLIST],[
AT_SETUP($1)
AT_KEYWORDS(list $2)
AT_DATA([input],[$3])
AT_CHECK([listop < input],
0,
[$4],
[$5],
[$6],
[$7])
AT_CLEANUP
])
# ------------------------------------------------------------
# Lists
# ------------------------------------------------------------
TESTLIST([build],[],
[add en to tre fire fem
print
],
[# items: 5
en
to
tre
fire
fem
])
TESTLIST([prepend],[],
[add en to tre fire fem
prep null jeden dwa trzy
print
],
[# items: 9
trzy
dwa
jeden
null
en
to
tre
fire
fem
])
TESTLIST([delete],[],
[add en to tre fire fem
del to fire
print
],
[# items: 3
en
tre
fem
])
TESTLIST([push],[],
[push en to tre
print
],
[# items: 3
en
to
tre
])
TESTLIST([pop],[],
[push en to tre
pop
pop
pop
],
[tre
to
en
])
TESTLIST([pop-null],[],
[pop
],
[],
[listop: Notice: nothing to pop
])
TESTLIST([get],[],
[add en to tre fire fem
3
],
[fire
])
# ------------------------------------------------------------
# Iterators
# ------------------------------------------------------------
AT_BANNER(Iterators)
TESTLIST([forward],[iterator itr],
[add en to tre fire fem
first
cur
next 3
cur
],
[0:en
0:fire
])
TESTLIST([locate],[],
[add en to tre fire fem
find tre
cur
],
[0:tre
])
TESTLIST([backward],[],
[add en to tre fire fem
find fem
cur
prev
cur
prev 2
cur
],
[0:fem
0:fire
0:to
])
TESTLIST([interaction],[],
[add en to tre fire fem
first
iter 1
find tre
cur
iter 0
cur
],
[1:tre
0:en
])
TESTLIST([interaction: moves],[],
[add en to tre fire fem
first
iter 1
find tre
iter 0
next
iter 1
next
iter 0
cur
iter 1
cur
],
[0:to
1:fire
])
m4_popdef([TESTLIST])
|