]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/pcre/pcre-tests.factor
Revert "factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring...
[factor.git] / extra / pcre / pcre-tests.factor
index ed1cdffc4971078b217b7c26e976c5714ebc4b18..7ad2997f566eef459a5013688c8a0d6f225cca82 100644 (file)
@@ -4,11 +4,11 @@ system tools.test ;
 QUALIFIED: regexp
 IN: pcre.tests
 
-{ { "Bords" "words" "word" } } [
+[ { "Bords" "words" "word" } ] [
     "Bords, words, word." { ", " ", " "." } split-subseqs
 ] unit-test
 
-{ { { 3 "day" } { 2 "month" } { 1 "year" } } } [
+[ { { 3 "day" } { 2 "month" } { 1 "year" } } ] [
     "(?P<year>\\d{4})-(?P<month>\\d{2})-(?P<day>\\d{2})"
     <compiled-pcre> nametable>>
 ] unit-test
@@ -17,66 +17,66 @@ CONSTANT: iso-date "(?P<year>\\d{4})-(?P<month>\\d{2})-(?P<day>\\d{2})"
 
 ! On windows the erroffset appears to be set to 0 despite there being
 ! nothing wrong with the regexp.
-{ t } [
+[ t ] [
     "foo" (pcre) 3array rest { { f -1 } { f 0 } } member?
 ] unit-test
 
-{ { 1 2 3 } } [
+[ { 1 2 3 } ] [
     iso-date <pcre>
     { "year" "month" "day" } [ pcre_get_stringnumber ] with map
 ] unit-test
 
-{ t } [ "foo" <compiled-pcre> PCRE_UTF8 has-option? ] unit-test
+[ t ] [ "foo" <compiled-pcre> PCRE_UTF8 has-option? ] unit-test
 
 os unix? [ [ 10 ] [ PCRE_CONFIG_NEWLINE pcre-config ] unit-test ] when
 
 ! In this day and age, not supporting utf-8 is broken.
-{ 1 } [ PCRE_CONFIG_UTF8 pcre-config ] unit-test
+[ 1 ] [ PCRE_CONFIG_UTF8 pcre-config ] unit-test
 
-{ 1 } [ PCRE_CONFIG_UNICODE_PROPERTIES pcre-config ] unit-test
+[ 1 ] [ PCRE_CONFIG_UNICODE_PROPERTIES pcre-config ] unit-test
 
 ! Ok if these options throw if the pcre library is to old to support
 ! these configuration parameters.
-{ t } [
+[ t ] [
     [ PCRE_CONFIG_UTF16 pcre-config ] [ what>> ] recover
     { 0 $ PCRE_CONFIG_UTF16 } member?
 ] unit-test
-{ t } [
+[ t ] [
     [ PCRE_CONFIG_UTF32 pcre-config ] [ what>> ] recover
     { 0 $ PCRE_CONFIG_UTF32 } member?
 ] unit-test
 
-{ 33 }
+[ 33 ]
 [
     [ "foo" <pcre> f 33 pcre-fullinfo ] [ what>> ] recover
 ] unit-test
 
 ! Tests for findall
-{
+[
     { { f "1999-01-12" } { "year" "1999" } { "month" "01" } { "day" "12" } }
-} [
+] [
     "1999-01-12" iso-date <compiled-pcre> findall first
 ] unit-test
 
-{ 3 } [
+[ 3 ] [
     "2003-10-09 1999-09-01 1514-10-20" iso-date <compiled-pcre> findall length
 ] unit-test
 
-{ 5 } [ "abcdef" "[a-e]" findall length ] unit-test
+[ 5 ] [ "abcdef" "[a-e]" findall length ] unit-test
 
-{ 3 } [ "foo bar baz" "foo|bar|baz" findall length ] unit-test
+[ 3 ] [ "foo bar baz" "foo|bar|baz" findall length ] unit-test
 
-{ 3 } [ "örjan är åtta" "[åäö]" findall length ] unit-test
+[ 3 ] [ "örjan är åtta" "[åäö]" findall length ] unit-test
 
-{ 3 } [ "ÅÄÖ" "\\p{Lu}" findall length ] unit-test
+[ 3 ] [ "ÅÄÖ" "\\p{Lu}" findall length ] unit-test
 
-{ 3 } [ "foobar" "foo(?=bar)" findall first first second length ] unit-test
+[ 3 ] [ "foobar" "foo(?=bar)" findall first first second length ] unit-test
 
-{ { { { f ", " } } { { f ", " } } { { f "." } } } } [
+[ { { { f ", " } } { { f ", " } } { { f "." } } } ] [
     "Words, words, word." "\\W+" findall
 ] unit-test
 
-{ { ", " ", " "." } } [
+[ { ", " ", " "." } ] [
     "Words, words, word." "\\W+" findall [ first second ] map
 ] unit-test
 
@@ -84,56 +84,56 @@ os unix? [ [ 10 ] [ PCRE_CONFIG_NEWLINE pcre-config ] unit-test ] when
     10000 [ CHAR: a CHAR: z [a,b] random ] "" replicate-as ;
 
 ! Performance
-{ 0 } [ long-string ".{0,15}foobar.{0,10}" findall length ] unit-test
+[ 0 ] [ long-string ".{0,15}foobar.{0,10}" findall length ] unit-test
 
 ! Empty matches, corner case behaviour is copied from pcredemo.c
-{ { { { f "foo" } } { { f "" } } } }
+[ { { { f "foo" } } { { f "" } } } ]
 [ "foo" ".*" findall ] unit-test
 
-{ { { { f "" } } { { f "" } } { { f "" } } } }
+[ { { { f "" } } { { f "" } } { { f "" } } } ]
 [ "foo" "B*" findall ] unit-test
 
 ! Empty matches in strings with multi-byte characters are tricky.
-{ { { { f "" } } { { f "" } } { { f "" } } { { f "" } } } }
+[ { { { f "" } } { { f "" } } { { f "" } } { { f "" } } } ]
 [ "öööö" "x*" findall ] unit-test
 
 ! Tests for matches?
-{ t } [ "örjan" "örjan" matches? ] unit-test
+[ t ] [ "örjan" "örjan" matches? ] unit-test
 
-{ t } [ "abcö" "\\p{Ll}{4}" matches? ] unit-test
+[ t ] [ "abcö" "\\p{Ll}{4}" matches? ] unit-test
 
 ! Dotall mode, off by default
-{ f } [ "." <compiled-pcre> PCRE_DOTALL has-option? ] unit-test
-{ t } [ "(?s)." <compiled-pcre> PCRE_DOTALL has-option? ] unit-test
+[ f ] [ "." <compiled-pcre> PCRE_DOTALL has-option? ] unit-test
+[ t ] [ "(?s)." <compiled-pcre> PCRE_DOTALL has-option? ] unit-test
 
-{ f } [ "\n" "." matches? ] unit-test
-{ t } [ "\n" "(?s)." matches? ] unit-test
+[ f ] [ "\n" "." matches? ] unit-test
+[ t ] [ "\n" "(?s)." matches? ] unit-test
 
 ! Caseless mode, off by default
-{ { f t } } [
+[ { f t } ] [
     { "x" "(?i)x" } [ <compiled-pcre> PCRE_CASELESS has-option? ] map
 ] unit-test
 
 ! Backreferences
-{ { t f } } [
+[ { t f } ] [
     { "response and responsibility" "sense and responsibility" }
     [ "(sens|respons)e and \\1ibility" matches? ] map
 ] unit-test
 
-{ { t t f } } [
+[ { t t f } ] [
     { "rah rah" "RAH RAH" "RAH rah" } [ "((?i)rah)\\s+\\1" matches? ] map
 ] unit-test
 
 ! Splitting
-{ { { "Words" "words" "word" } { "Words" "words" "word" } } } [
+[ { { "Words" "words" "word" } { "Words" "words" "word" } } ] [
     "Words, words, word." { "\\W+" "[,. ]" } [ split ] with map
 ] unit-test
 
 ! Bigger tests
-{ t } [
+[ t ] [
     "http://factorcode.org/" http-get nip
     "href=\"(?P<link>[^\"]+)\"" findall [ "link" of ] map sequence?
 ] unit-test
 
 ! Test that the regexp syntax works.
-{ t } [ "1234abcd" regexp:R[ ^\d+\w+$] matches? ] unit-test
+[ t ] [ "1234abcd" regexp:R[ ^\d+\w+$] matches? ] unit-test