2007-09-20 18:09:08 -04:00
|
|
|
USING: continuations kernel math namespaces strings sbufs
|
2008-02-01 00:00:08 -05:00
|
|
|
tools.test sequences vectors arrays ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: temporary
|
|
|
|
|
|
|
|
[ CHAR: b ] [ 1 >bignum "abc" nth ] unit-test
|
|
|
|
|
|
|
|
[ ] [ 10 [ [ -1000000 <sbuf> ] catch drop ] times ] unit-test
|
|
|
|
|
|
|
|
[ "abc" ] [ [ "a" "b" "c" ] [ [ % ] each ] "" make ] unit-test
|
|
|
|
|
|
|
|
[ "abc" ] [ "ab" "c" append ] unit-test
|
|
|
|
[ "abc" ] [ "a" "b" "c" 3append ] unit-test
|
|
|
|
|
|
|
|
[ 3 ] [ "a" "hola" start ] unit-test
|
|
|
|
[ f ] [ "x" "hola" start ] unit-test
|
|
|
|
[ 0 ] [ "" "a" start ] unit-test
|
|
|
|
[ 0 ] [ "" "" start ] unit-test
|
|
|
|
[ 0 ] [ "hola" "hola" start ] unit-test
|
|
|
|
[ 1 ] [ "ol" "hola" start ] unit-test
|
|
|
|
[ f ] [ "amigo" "hola" start ] unit-test
|
|
|
|
[ f ] [ "holaa" "hola" start ] unit-test
|
|
|
|
|
|
|
|
[ "Beginning" ] [ "Beginning and end" 9 head ] unit-test
|
|
|
|
|
|
|
|
[ f ] [ CHAR: I "team" member? ] unit-test
|
|
|
|
[ t ] [ "ea" "team" subseq? ] unit-test
|
|
|
|
[ f ] [ "actore" "Factor" subseq? ] unit-test
|
|
|
|
|
|
|
|
[ "end" ] [ "Beginning and end" 14 tail ] unit-test
|
|
|
|
|
|
|
|
[ t ] [ "abc" "abd" <=> 0 < ] unit-test
|
|
|
|
[ t ] [ "z" "abd" <=> 0 > ] unit-test
|
|
|
|
|
|
|
|
[ f ] [ [ 0 10 "hello" subseq ] catch not ] unit-test
|
|
|
|
|
|
|
|
[ "Replacing+spaces+with+plus" ]
|
|
|
|
[
|
|
|
|
"Replacing spaces with plus"
|
|
|
|
[ dup CHAR: \s = [ drop CHAR: + ] when ] map
|
|
|
|
]
|
|
|
|
unit-test
|
|
|
|
|
|
|
|
[ "05" ] [ "5" 2 CHAR: 0 pad-left ] unit-test
|
|
|
|
[ "666" ] [ "666" 2 CHAR: 0 pad-left ] unit-test
|
|
|
|
|
|
|
|
[ 1 "" nth ] unit-test-fails
|
|
|
|
[ -6 "hello" nth ] unit-test-fails
|
|
|
|
|
|
|
|
[ t ] [ "hello world" dup >vector >string = ] unit-test
|
|
|
|
|
|
|
|
[ "ab" ] [ 2 "abc" resize-string ] unit-test
|
|
|
|
[ "abc\0\0\0" ] [ 6 "abc" resize-string ] unit-test
|
|
|
|
|
2008-02-01 19:36:13 -05:00
|
|
|
[ "\u001234b" ] [ 2 "\u001234bc" resize-string ] unit-test
|
|
|
|
[ "\u001234bc\0\0\0" ] [ 6 "\u001234bc" resize-string ] unit-test
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
! Random tester found this
|
|
|
|
[ { "kernel-error" 3 12 -7 } ]
|
|
|
|
[ [ 2 -7 resize-string ] catch ] unit-test
|
2008-02-01 00:00:08 -05:00
|
|
|
|
2008-02-01 17:02:02 -05:00
|
|
|
! Make sure 24-bit strings work
|
2008-02-01 00:00:08 -05:00
|
|
|
"hello world" "s" set
|
|
|
|
|
|
|
|
[ ] [ HEX: 1234 1 "s" get set-nth ] unit-test
|
|
|
|
[ ] [ HEX: 4321 3 "s" get set-nth ] unit-test
|
|
|
|
[ ] [ HEX: 654321 5 "s" get set-nth ] unit-test
|
|
|
|
|
|
|
|
[
|
|
|
|
{
|
|
|
|
CHAR: h
|
|
|
|
HEX: 1234
|
|
|
|
CHAR: l
|
|
|
|
HEX: 4321
|
|
|
|
CHAR: o
|
|
|
|
HEX: 654321
|
|
|
|
CHAR: w
|
|
|
|
CHAR: o
|
|
|
|
CHAR: r
|
|
|
|
CHAR: l
|
|
|
|
CHAR: d
|
|
|
|
}
|
|
|
|
] [
|
|
|
|
"s" get >array
|
|
|
|
] unit-test
|
2008-02-01 17:02:02 -05:00
|
|
|
|
|
|
|
! Make sure we clear aux vector when storing octets
|
|
|
|
[ "\u123456hi" ] [ "ih\u123456" clone dup reverse-here ] unit-test
|
|
|
|
|
|
|
|
! Make sure aux vector is not shared
|
|
|
|
[ "\udeadbe" ] [
|
2008-02-02 16:00:05 -05:00
|
|
|
"\udeadbe" clone
|
|
|
|
CHAR: \u123456 over clone set-first
|
2008-02-01 17:02:02 -05:00
|
|
|
] unit-test
|