USING: arrays assocs byte-arrays generic.single kernel make math math.functions math.order math.parser math.vectors sbufs sequences sequences.private strings tools.test vectors ; IN: sequences.tests { "empty" } [ { } [ "empty" ] [ "not empty" ] if-empty ] unit-test { { 1 } "not empty" } [ { 1 } [ "empty" ] [ "not empty" ] if-empty ] unit-test { V{ 1 2 3 4 } } [ 1 5 dup >vector ] unit-test { 3 } [ 1 4 dup length ] unit-test { 2 } [ 1 3 { 1 2 3 4 } length ] unit-test { V{ 2 3 } } [ 1 3 { 1 2 3 4 } >vector ] unit-test { V{ 4 5 } } [ { 1 2 3 4 5 } 2 tail-slice* >vector ] unit-test { V{ 3 4 } } [ 2 4 1 10 dup subseq >vector ] unit-test { V{ 3 4 } } [ 0 2 2 4 1 10 dup subseq >vector ] unit-test [ 0 10 "hello" ] must-fail [ -10 3 "hello" ] must-fail [ 2 1 "hello" ] must-fail { "cba" } [ "abcdef" 3 head-slice reverse ] unit-test { 5040 5040 } [ [ 1 2 3 4 5 6 7 ] dup rest-slice [ 1 [ * ] reduce ] bi@ ] unit-test { 10079 6459 } [ [ 1 2 3 4 5 6 7 ] dup rest-slice [ 1 [ [ * ] [ + ] bi* ] reduce-index ] bi@ ] unit-test { -541365 } [ { 10 21 32 } { 500 600 700 } [ - sq ] [ - ] 2map-reduce ] unit-test { 5040 { 1 1 2 6 24 120 720 } } [ { 1 2 3 4 5 6 7 } 1 [ * ] accumulate ] unit-test { 64 B{ 1 2 4 16 } } [ B{ 2 2 4 4 } 1 [ * ] accumulate ] unit-test { 5040 { 1 1 2 6 24 120 720 } } [ { 1 2 3 4 5 6 7 } 1 [ * ] accumulate! ] unit-test { t } [ { 1 2 3 4 5 6 7 } dup 1 [ * ] accumulate! nip eq? ] unit-test { { 1 2 6 24 120 720 5040 } } [ { 1 2 3 4 5 6 7 } 1 [ * ] accumulate* ] unit-test { B{ 2 4 16 64 } } [ B{ 2 2 4 4 } 1 [ * ] accumulate* ] unit-test { { 1 2 6 24 120 720 5040 } } [ { 1 2 3 4 5 6 7 } 1 [ * ] accumulate*! ] unit-test { t } [ { 1 2 3 4 5 6 7 } dup 1 [ * ] accumulate*! eq? ] unit-test { f f } [ [ ] [ ] find ] unit-test { 0 1 } [ [ 1 ] [ ] find ] unit-test { 1 "world" } [ [ "hello" "world" ] [ "world" = ] find ] unit-test { 2 3 } [ [ 1 2 3 ] [ 2 > ] find ] unit-test { f f } [ [ 1 2 3 ] [ 10 > ] find ] unit-test { 1 CHAR: e } [ "hello world" "aeiou" [ member? ] curry find ] unit-test { 4 CHAR: o } [ 3 "hello world" "aeiou" [ member? ] curry find-from ] unit-test { f f } [ "abcd" [ 10 > nip ] find-index ] unit-test { f f } [ "abcd" [ drop CHAR: e = ] find-index ] unit-test { 3 CHAR: d } [ "abcdefg" [ 3 = nip ] find-index ] unit-test { 3 CHAR: d } [ "abcdefg" [ drop CHAR: d = ] find-index ] unit-test { 0 CHAR: a } [ 0 "abcdef" [ drop CHAR: a >= ] find-index-from ] unit-test { 1 CHAR: b } [ 0 "abcdef" [ drop CHAR: a > ] find-index-from ] unit-test { 2 CHAR: c } [ 1 "abcdef" [ drop CHAR: b > ] find-index-from ] unit-test { f } [ 3 [ ] member? ] unit-test { f } [ 3 [ 1 2 ] member? ] unit-test { t } [ 1 [ 1 2 ] member? ] unit-test { t } [ 2 [ 1 2 ] member? ] unit-test { t } [ [ "hello" "world" ] [ second ] keep member-eq? ] unit-test { 4 } [ CHAR: x "tuvwxyz" >vector index ] unit-test { f } [ CHAR: x 5 "tuvwxyz" >vector index-from ] unit-test { f } [ CHAR: a 0 "tuvwxyz" >vector index-from ] unit-test { f } [ [ "Hello" { } 0.75 ] [ string? ] all? ] unit-test { t } [ [ ] [ ] all? ] unit-test { t } [ [ "hi" t 0.5 ] [ ] all? ] unit-test { [ 1 2 3 ] } [ [ 1 4 2 5 3 6 ] [ 4 < ] filter ] unit-test { { 4 2 6 } } [ { 1 4 2 5 3 6 } [ 2 mod 0 = ] filter ] unit-test { [ 3 ] } [ [ 1 2 3 ] 2 [ swap < ] curry filter ] unit-test { V{ 1 2 3 } } [ V{ 1 4 2 5 3 6 } clone [ 4 < ] filter! ] unit-test { V{ 4 2 6 } } [ V{ 1 4 2 5 3 6 } clone [ 2 mod 0 = ] filter! ] unit-test { V{ 3 } } [ V{ 1 2 3 } clone 2 [ swap < ] curry filter! ] unit-test { 4 V{ 1 2 3 } } [ 4 V{ 1 4 2 5 3 6 } [ dupd > ] filter! ] unit-test { "hello world how are you" } [ { "hello" "world" "how" "are" "you" } " " join ] unit-test { "hello world how are you" } [ { "hello" "world" "how" "are" "you" } " " "" join-as ] unit-test { "" } [ { } "" join ] unit-test { "" } [ { } "" "" join-as ] unit-test { { } } [ { } flip ] unit-test { { "b" "e" } } [ 1 { { "a" "b" "c" } { "d" "e" "f" } } flip nth ] unit-test { { { 1 4 } { 2 5 } { 3 6 } } } [ { { 1 2 3 } { 4 5 6 } } flip ] unit-test { [ 2 3 4 ] } [ [ 1 2 3 ] 1 [ + ] curry map ] unit-test { 1 } [ 0 [ 1 2 ] nth ] unit-test { 2 } [ 1 [ 1 2 ] nth ] unit-test { [ ] } [ [ ] [ ] append ] unit-test { [ 1 ] } [ [ 1 ] [ ] append ] unit-test { [ 2 ] } [ [ ] [ 2 ] append ] unit-test { [ 1 2 3 4 ] } [ [ 1 2 3 ] [ 4 ] append ] unit-test { [ 1 2 3 4 ] } [ [ 1 2 3 ] { 4 } append ] unit-test [ "a" -1 append ] must-fail [ -1 "a" append ] must-fail { t } [ B{ 0 } { 1 } append byte-array? ] unit-test { t } [ B{ 0 } { 1 } prepend byte-array? ] unit-test { "0123456789" } [ 58 [ 48 < ] "" reject-as ] unit-test { [ ] } [ 1 [ ] remove ] unit-test { [ ] } [ 1 [ 1 ] remove ] unit-test { [ 3 1 1 ] } [ 2 [ 3 2 1 2 1 ] remove ] unit-test { [ ] } [ [ ] reverse ] unit-test { [ 1 ] } [ [ 1 ] reverse ] unit-test { [ 3 2 1 ] } [ [ 1 2 3 ] reverse ] unit-test { f } [ f 0 head ] unit-test { [ ] } [ [ 1 ] 0 head ] unit-test { [ 1 2 3 ] } [ [ 1 2 3 4 ] 3 head ] unit-test { [ ] } [ [ 1 2 3 ] 3 tail ] unit-test { [ 3 ] } [ [ 1 2 3 ] 2 tail ] unit-test { "blah" } [ "blahxx" 2 head* ] unit-test { "xx" } [ "blahxx" 2 tail* ] unit-test { t } [ "xxfoo" 2 head-slice "xxbar" 2 head-slice = ] unit-test { t } [ "xxfoo" 2 head-slice "xxbar" 2 head-slice [ hashcode ] same? ] unit-test { t } [ "xxfoo" 2 head-slice SBUF" barxx" 2 tail-slice* = ] unit-test { t } [ "xxfoo" 2 head-slice SBUF" barxx" 2 tail-slice* [ hashcode ] same? ] unit-test { t } [ [ 1 2 3 ] [ 1 2 3 ] sequence= ] unit-test { t } [ [ 1 2 3 ] { 1 2 3 } sequence= ] unit-test { t } [ { 1 2 3 } [ 1 2 3 ] sequence= ] unit-test { f } [ [ ] [ 1 2 3 ] sequence= ] unit-test { { 1 3 2 4 } } [ { 1 2 3 4 } clone 1 2 pick exchange ] unit-test { { "" "a" "aa" "aaa" } } [ 4 [ CHAR: a ] map-integers ] unit-test { V{ 1 3 5 7 9 } } [ 10 >vector [ even? ] reject! ] unit-test { V{ } } [ "f" V{ } clone remove! ] unit-test { V{ } } [ "f" V{ "f" } clone remove! ] unit-test { V{ } } [ "f" V{ "f" "f" } clone remove! ] unit-test { V{ "x" } } [ "f" V{ "f" "x" "f" } clone remove! ] unit-test { V{ "y" "x" } } [ "f" V{ "y" "f" "x" "f" } clone remove! ] unit-test { V{ 0 1 4 5 } } [ 6 >vector 2 4 pick delete-slice ] unit-test [ 6 >vector 2 8 pick delete-slice ] must-fail { V{ } } [ 6 >vector 0 6 pick delete-slice ] unit-test { { 1 2 "a" "b" 5 6 7 } } [ { "a" "b" } 2 4 { 1 2 3 4 5 6 7 } replace-slice ] unit-test { { 1 2 "a" "b" 6 7 } } [ { "a" "b" } 2 5 { 1 2 3 4 5 6 7 } replace-slice ] unit-test { { 1 2 "a" "b" 4 5 6 7 } } [ { "a" "b" } 2 3 { 1 2 3 4 5 6 7 } replace-slice ] unit-test { { 1 2 3 4 5 6 7 "a" "b" } } [ { "a" "b" } 7 7 { 1 2 3 4 5 6 7 } replace-slice ] unit-test { { "a" 3 } } [ { "a" } 0 2 { 1 2 3 } replace-slice ] unit-test { { 1 4 9 } } [ { 1 2 3 } clone [ sq ] map! ] unit-test { 5 } [ 1 >bignum { 1 5 7 } nth-unsafe ] unit-test { 5 } [ 1 >bignum { 1 5 7 } nth-unsafe ] unit-test { 5 } [ 1 >bignum "\u000001\u000005\u000007" nth-unsafe ] unit-test { SBUF" before&after" } [ "&" 6 11 SBUF" before and after" replace-slice ] unit-test { 3 "a" } [ { "a" "b" "c" "a" "d" } [ "a" = ] find-last ] unit-test { f f } [ 100 { 1 2 3 } [ 1 = ] find-from ] unit-test { f f } [ 100 { 1 2 3 } [ 1 = ] find-last-from ] unit-test { f f } [ -1 { 1 2 3 } [ 1 = ] find-from ] unit-test { 0 } [ { "a" "b" "c" } { "A" "B" "C" } mismatch ] unit-test { 1 } [ { "a" "b" "c" } { "a" "B" "C" } mismatch ] unit-test { f } [ { "a" "b" "c" } { "a" "b" "c" } mismatch ] unit-test { V{ } V{ } } [ { "a" "b" } { "a" "b" } drop-prefix [ >vector ] bi@ ] unit-test { V{ "C" } V{ "c" } } [ { "a" "b" "C" } { "a" "b" "c" } drop-prefix [ >vector ] bi@ ] unit-test [ -1 1 "abc" ] must-fail { V{ "a" "b" } V{ } } [ { "X" "a" "b" } { "X" } drop-prefix [ >vector ] bi@ ] unit-test [ 0.5 { 1 2 3 } nth ] [ no-method? ] must-fail-with [ 0.5 "asdfasdf" nth ] [ no-method? ] must-fail-with ! Pathological case { "ihbye" } [ "hi" "bye" append ] unit-test { t } [ "hi" SBUF" hi" = ] unit-test { t } [ "hi" SBUF" hi" = ] unit-test { t } [ "hi" SBUF" hi" [ hashcode ] same? ] unit-test [ -10 "hi" "bye" copy ] must-fail [ 10 "hi" "bye" copy ] must-fail { V{ 1 2 3 5 6 } } [ 3 V{ 1 2 3 4 5 6 } clone remove-nth! ] unit-test ! erg's random tester found this one { SBUF" 12341234" } [ 9 dup "1234" swap push-all dup dup swap push-all ] unit-test { f } [ f V{ } like f V{ } like eq? ] unit-test { V{ f f f } } [ 3 V{ } new-sequence ] unit-test { SBUF" \0\0\0" } [ 3 SBUF" " new-sequence ] unit-test { 0 } [ f length ] unit-test [ f first ] must-fail { 3 } [ 3 10 nth ] unit-test { 3 } [ 3 10 nth-unsafe ] unit-test [ -3 10 nth ] must-fail [ 11 10 nth ] must-fail { f } [ f ?first ] unit-test { f } [ { } ?first ] unit-test { 0 } [ 10 ?first ] unit-test { f } [ f ?last ] unit-test { f } [ { } ?last ] unit-test { 9 } [ 10 ?last ] unit-test [ f last ] [ bounds-error? ] must-fail-with { 1 } [ { 1 } last ] unit-test { 2 } [ { 1 2 } last ] unit-test { 3 } [ { 1 2 3 } last ] unit-test [ f last2 ] [ bounds-error? ] must-fail-with [ { 1 } last2 ] [ bounds-error? ] must-fail-with { 1 2 } [ { 1 2 } last2 ] unit-test { 2 3 } [ { 1 2 3 } last2 ] unit-test { 3 4 } [ { 1 2 3 4 } last2 ] unit-test [ -1/0. 0 remove-nth! ] must-fail { "" } [ "" [ CHAR: \s = ] trim ] unit-test { "" } [ "" [ CHAR: \s = ] trim-head ] unit-test { "" } [ "" [ CHAR: \s = ] trim-tail ] unit-test { "" } [ " " [ CHAR: \s = ] trim-head ] unit-test { "" } [ " " [ CHAR: \s = ] trim-tail ] unit-test { "asdf" } [ " asdf " [ CHAR: \s = ] trim ] unit-test { "asdf " } [ " asdf " [ CHAR: \s = ] trim-head ] unit-test { " asdf" } [ " asdf " [ CHAR: \s = ] trim-tail ] unit-test { 328350 } [ 100 [ sq ] map-sum ] unit-test { 5 } [ { 1 f 3 f 5 f 7 f 9 f } [ ] count ] unit-test { 50 } [ 100 [ even? ] count ] unit-test { 50 } [ 100 [ odd? ] count ] unit-test { { "b" "d" } } [ { 1 3 } { "a" "b" "c" "d" } nths ] unit-test { { "a" "b" "c" "d" } } [ { 0 1 2 3 } { "a" "b" "c" "d" } nths ] unit-test { { "d" "c" "b" "a" } } [ { 3 2 1 0 } { "a" "b" "c" "d" } nths ] unit-test { { "d" "a" "b" "c" } } [ { 3 0 1 2 } { "a" "b" "c" "d" } nths ] unit-test { "dac" } [ { 3 0 2 } "abcd" nths ] unit-test TUPLE: bogus-hashcode ; M: bogus-hashcode hashcode* 2drop 0 >bignum ; { 0 } [ { T{ bogus-hashcode } } hashcode ] unit-test { { 2 4 6 } { 1 3 5 7 } } [ { 1 2 3 4 5 6 7 } [ even? ] partition ] unit-test { { 1 3 7 } } [ 2 { 1 3 5 7 } remove-nth ] unit-test { { 1 3 "X" 5 7 } } [ "X" 2 { 1 3 5 7 } insert-nth ] unit-test { V{ 0 2 } } [ "a" { "a" "b" "a" } indices ] unit-test { "a,b" } [ "a" "b" "," glue ] unit-test { "(abc)" } [ "abc" "(" ")" surround ] unit-test { "HELLO" } [ "HELLO" { -1 -1 -1 -1 -1 } { 2 2 2 2 2 2 } [ * 2 + + ] 3map ] unit-test { 3 1 } [ [ 3array ] 3map ] must-infer-as { 3 0 } [ [ 3drop ] 3each ] must-infer-as { V{ 0 3 } } [ "A" { "A" "B" "C" "A" "D" } indices ] unit-test [ "asdf" ] must-fail [ -1 ] must-fail { T{ iota { n 10 } } } [ 10 ] unit-test { 0 } [ 10 first ] unit-test { 0 } [ 0 sum ] unit-test { 0 } [ 1 sum ] unit-test { 10 } [ 5 sum ] unit-test { 15 } [ 6 sum ] unit-test { "hi" 3 } [ { 1 2 3 4 5 6 7 8 } [ H{ { 3 "hi" } } at ] map-find ] unit-test { f f } [ { 1 2 3 4 5 6 7 8 } [ H{ { 11 "hi" } } at ] map-find ] unit-test { { "a" 1 "b" 1 "c" } } [ 1 { "a" "b" "c" } [ [ dup , ] [ , ] interleave drop ] { } make ] unit-test { t } [ 0 array-capacity? ] unit-test { f } [ -1 array-capacity? ] unit-test { +lt+ } [ { 0 0 0 } { 1 1 1 } <=> ] unit-test { +lt+ } [ { 0 0 0 } { 0 1 1 } <=> ] unit-test { +lt+ } [ { 0 0 0 } { 0 0 0 0 } <=> ] unit-test { +gt+ } [ { 1 1 1 } { 0 0 0 } <=> ] unit-test { +gt+ } [ { 0 1 1 } { 0 0 0 } <=> ] unit-test { +gt+ } [ { 0 0 0 0 } { 0 0 0 } <=> ] unit-test { +eq+ } [ { } { } <=> ] unit-test { +eq+ } [ { 1 2 3 } { 1 2 3 } <=> ] unit-test { { { { 1 "a" } { 1 "b" } } { { 2 "a" } { 2 "b" } } } } [ { 1 2 } { "a" "b" } cartesian-product ] unit-test { 2 4 } [ { 1 2 3 } { 4 5 6 } [ [ even? ] both? ] cartesian-find ] unit-test { f f } [ { 1 2 3 } { 4 5 6 } [ [ 10 > ] both? ] cartesian-find ] unit-test [ { } [ string>digits sum ] [ + ] map-reduce ] must-infer [ { } [ ] [ + ] map-reduce ] must-fail { 4 } [ { 1 1 } [ 1 + ] [ + ] map-reduce ] unit-test { 2 18 } [ 2 { 3 3 3 } [ dupd * ] [ + ] map-reduce ] unit-test [ { } { } [ [ string>digits product ] bi@ + ] [ + ] 2map-reduce ] must-infer [ { } { } [ + ] [ + ] 2map-reduce ] must-fail { 24 } [ { 1 2 } { 3 4 } [ + ] [ * ] 2map-reduce ] unit-test { 2 96 } [ 2 { 3 3 3 3 } { 4 4 4 4 } [ [ dup ] 2dip * * ] [ + ] 2map-reduce ] unit-test { 4 } [ 5 maximum ] unit-test { 0 } [ 5 minimum ] unit-test { 4 } [ 5 [ ] maximum-by ] unit-test { 0 } [ 5 [ ] minimum-by ] unit-test { "bar" } [ { "bar" "baz" "qux" } [ length ] maximum-by ] unit-test { "bar" } [ { "bar" "baz" "qux" } [ length ] minimum-by ] unit-test { { "foo" } } [ { { "foo" } { "bar" } } [ first ] maximum-by ] unit-test { { "bar" } } [ { { "foo" } { "bar" } } [ first ] minimum-by ] unit-test { -2 1 } [ -2 { 1 2 3 } [ over ^ ] maximum-by ] unit-test { -2 3 } [ -2 { 1 2 3 } [ over ^ ] minimum-by ] unit-test { { 0 0 255 } } [ { { 0 0 0 } { 95 255 95 } { 215 95 95 } { 95 135 255 } { 135 95 135 } { 135 255 255 } { 0 0 255 } { 0 95 95 } { 0 255 215 } { 135 0 95 } { 255 0 175 } } [ { 0 0 255 } distance ] minimum-by ] unit-test [ -1 0 ] must-fail { { } } [ 0 0 >array ] unit-test { { 0 } } [ 1 0 >array ] unit-test { { 0 0 0 } } [ 3 0 >array ] unit-test { "ABCD" } [ "AAAA" [ + ] map-index ] unit-test { { 11 23 35 } } [ { 11 22 33 } [ + ] map-index ] unit-test { V{ 11 23 35 } } [ { 11 22 33 } [ + ] V{ } map-index-as ] unit-test { B{ 11 23 35 } } [ { 11 22 33 } [ + ] B{ } map-index-as ] unit-test { BV{ 11 23 35 } } [ { 11 22 33 } [ + ] BV{ } map-index-as ] unit-test { t } [ { } { 99 88 } [ <= ] 2all? ] unit-test { f } [ { } { 99 88 } [ <= ] 2any? ] unit-test { t } [ { 2 4 5 8 } { 2 4 6 8 } [ < ] 2any? ] unit-test { f } [ { 2 4 6 8 } { 2 4 6 8 } [ < ] 2any? ] unit-test { "ollo" } [ "ll" "o" 1surround ] unit-test { "ollo" } [ { CHAR: l CHAR: l } "o" 1surround ] unit-test { { CHAR: o CHAR: l CHAR: l CHAR: o } } [ { CHAR: l CHAR: l } "o" { } 1surround-as ] unit-test { "ollo" } [ { CHAR: l CHAR: l } "o" "" 1surround-as ] unit-test