From 7b2935ab546638fc28a6400a2edc3cf34378ac47 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 22 Aug 2008 17:36:22 -0500 Subject: [PATCH] enable some unit tests, moved failing unit tests to bottom --- extra/regexp2/regexp2-tests.factor | 100 +++++++++++++++-------------- 1 file changed, 52 insertions(+), 48 deletions(-) diff --git a/extra/regexp2/regexp2-tests.factor b/extra/regexp2/regexp2-tests.factor index 54626ea165..2bb194f012 100644 --- a/extra/regexp2/regexp2-tests.factor +++ b/extra/regexp2/regexp2-tests.factor @@ -180,58 +180,18 @@ IN: regexp2-tests [ t ] [ "aaaab" "a+ab" matches? ] unit-test [ f ] [ "aaaxb" "a+ab" matches? ] unit-test [ t ] [ "aaacb" "a+cb" matches? ] unit-test -[ f ] [ "aaaab" "a++ab" matches? ] unit-test -[ t ] [ "aaacb" "a++cb" matches? ] unit-test [ 3 ] [ "aaacb" "a*" match-head ] unit-test -[ 1 ] [ "aaacb" "a+?" match-head ] unit-test [ 2 ] [ "aaacb" "aa?" match-head ] unit-test -[ 1 ] [ "aaacb" "aa??" match-head ] unit-test -[ 3 ] [ "aacb" "aa?c" match-head ] unit-test -[ 3 ] [ "aacb" "aa??c" match-head ] unit-test -! [ t ] [ "aaa" "AAA" t matches? ] unit-test -! [ f ] [ "aax" "AAA" t matches? ] unit-test -! [ t ] [ "aaa" "A*" t matches? ] unit-test -! [ f ] [ "aaba" "A*" t matches? ] unit-test -! [ t ] [ "b" "[AB]" t matches? ] unit-test -! [ f ] [ "c" "[AB]" t matches? ] unit-test -! [ t ] [ "c" "[A-Z]" t matches? ] unit-test -! [ f ] [ "3" "[A-Z]" t matches? ] unit-test - -[ ] [ - "(0[lL]?|[1-9]\\d{0,9}(\\d{0,9}[lL])?|0[xX]\\p{XDigit}{1,8}(\\p{XDigit}{0,8}[lL])?|0[0-7]{1,11}([0-7]{0,11}[lL])?|([0-9]+\\.[0-9]*|\\.[0-9]+)([eE][+-]?[0-9]+)?[fFdD]?|[0-9]+([eE][+-]?[0-9]+[fFdD]?|([eE][+-]?[0-9]+)?[fFdD]))" - drop -] unit-test - -[ "{Lower}" ] [ invalid-range? ] must-fail-with - -[ t ] [ "fxxbar" "(?!foo).{3}bar" matches? ] unit-test -[ f ] [ "foobar" "(?!foo).{3}bar" matches? ] unit-test - -! [ 3 ] [ "foobar" "foo(?=bar)" match-head ] unit-test -! [ f ] [ "foobxr" "foo(?=bar)" match-head ] unit-test - -! [ f ] [ "foobxr" "foo\\z" match-head ] unit-test -! [ 3 ] [ "foo" "foo\\z" match-head ] unit-test - -! [ 3 ] [ "foo bar" "foo\\b" match-head ] unit-test -! [ f ] [ "fooxbar" "foo\\b" matches? ] unit-test -! [ t ] [ "foo" "foo\\b" matches? ] unit-test -! [ t ] [ "foo bar" "foo\\b bar" matches? ] unit-test -! [ f ] [ "fooxbar" "foo\\bxbar" matches? ] unit-test -! [ f ] [ "foo" "foo\\bbar" matches? ] unit-test - -! [ f ] [ "foo bar" "foo\\B" matches? ] unit-test -! [ 3 ] [ "fooxbar" "foo\\B" match-head ] unit-test -! [ t ] [ "foo" "foo\\B" matches? ] unit-test -! [ f ] [ "foo bar" "foo\\B bar" matches? ] unit-test -! [ t ] [ "fooxbar" "foo\\Bxbar" matches? ] unit-test -! [ f ] [ "foo" "foo\\Bbar" matches? ] unit-test - -[ t ] [ "s@f" "[a-z.-]@[a-z]" matches? ] unit-test -[ f ] [ "a" "[a-z.-]@[a-z]" matches? ] unit-test -[ t ] [ ".o" "\\.[a-z]" matches? ] unit-test +[ t ] [ "aaa" "AAA" matches? ] unit-test +[ f ] [ "aax" "AAA" matches? ] unit-test +[ t ] [ "aaa" "A*" matches? ] unit-test +[ f ] [ "aaba" "A*" matches? ] unit-test +[ t ] [ "b" "[AB]" matches? ] unit-test +[ f ] [ "c" "[AB]" matches? ] unit-test +[ t ] [ "c" "[A-Z]" matches? ] unit-test +[ f ] [ "3" "[A-Z]" matches? ] unit-test [ t ] [ "a" "(?i)a" matches? ] unit-test [ t ] [ "a" "(?i)a" matches? ] unit-test @@ -253,6 +213,50 @@ IN: regexp2-tests [ t ] [ "abc" "a[bB][cC]" matches? ] unit-test [ t ] [ "adcbe" "a(?r)(bcd)(?-r)e" matches? ] unit-test +[ t ] [ "s@f" "[a-z.-]@[a-z]" matches? ] unit-test +[ f ] [ "a" "[a-z.-]@[a-z]" matches? ] unit-test +[ t ] [ ".o" "\\.[a-z]" matches? ] unit-test + +[ ] [ + "(0[lL]?|[1-9]\\d{0,9}(\\d{0,9}[lL])?|0[xX]\\p{XDigit}{1,8}(\\p{XDigit}{0,8}[lL])?|0[0-7]{1,11}([0-7]{0,11}[lL])?|([0-9]+\\.[0-9]*|\\.[0-9]+)([eE][+-]?[0-9]+)?[fFdD]?|[0-9]+([eE][+-]?[0-9]+[fFdD]?|([eE][+-]?[0-9]+)?[fFdD]))" + drop +] unit-test + + + + +[ "{Lower}" ] [ invalid-range? ] must-fail-with + +[ 1 ] [ "aaacb" "a+?" match-head ] unit-test +[ 1 ] [ "aaacb" "aa??" match-head ] unit-test +[ f ] [ "aaaab" "a++ab" matches? ] unit-test +[ t ] [ "aaacb" "a++cb" matches? ] unit-test +[ 3 ] [ "aacb" "aa?c" match-head ] unit-test +[ 3 ] [ "aacb" "aa??c" match-head ] unit-test + +[ t ] [ "fxxbar" "(?!foo).{3}bar" matches? ] unit-test +[ f ] [ "foobar" "(?!foo).{3}bar" matches? ] unit-test + +[ 3 ] [ "foobar" "foo(?=bar)" match-head ] unit-test +[ f ] [ "foobxr" "foo(?=bar)" match-head ] unit-test + +! [ f ] [ "foobxr" "foo\\z" match-head ] unit-test +! [ 3 ] [ "foo" "foo\\z" match-head ] unit-test + +! [ 3 ] [ "foo bar" "foo\\b" match-head ] unit-test +! [ f ] [ "fooxbar" "foo\\b" matches? ] unit-test +! [ t ] [ "foo" "foo\\b" matches? ] unit-test +! [ t ] [ "foo bar" "foo\\b bar" matches? ] unit-test +! [ f ] [ "fooxbar" "foo\\bxbar" matches? ] unit-test +! [ f ] [ "foo" "foo\\bbar" matches? ] unit-test + +! [ f ] [ "foo bar" "foo\\B" matches? ] unit-test +! [ 3 ] [ "fooxbar" "foo\\B" match-head ] unit-test +! [ t ] [ "foo" "foo\\B" matches? ] unit-test +! [ f ] [ "foo bar" "foo\\B bar" matches? ] unit-test +! [ t ] [ "fooxbar" "foo\\Bxbar" matches? ] unit-test +! [ f ] [ "foo" "foo\\Bbar" matches? ] unit-test + ! Bug in parsing word ! [ t ] [ "a" R' a' matches? ] unit-test