diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-31 15:06:33 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-31 15:06:33 +0200 |
commit | 4bb0bffefe3d0772f10bfd4acc3e8ccb1193211d (patch) | |
tree | f679baf49aaefbf21fd097b85329758762a76af7 /plugins/managesieve/tests/Tokenizer.php | |
parent | afa0b1df58d93059686f00017a111185e5ee2674 (diff) |
Convert managesieve test scripts to PHPUnit, add them to the suite
Diffstat (limited to 'plugins/managesieve/tests/Tokenizer.php')
-rw-r--r-- | plugins/managesieve/tests/Tokenizer.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/plugins/managesieve/tests/Tokenizer.php b/plugins/managesieve/tests/Tokenizer.php new file mode 100644 index 000000000..8c0bced23 --- /dev/null +++ b/plugins/managesieve/tests/Tokenizer.php @@ -0,0 +1,33 @@ +<?php + +class Tokenizer extends PHPUnit_Framework_TestCase +{ + + function setUp() + { + include_once dirname(__FILE__) . '/../lib/rcube_sieve_script.php'; + } + + function data_tokenizer() + { + return array( + array(1, "text: #test\nThis is test ; message;\nMulti line\n.\n;\n", '"This is test ; message;\nMulti line"'), + array(0, '["test1","test2"]', '[["test1","test2"]]'), + array(1, '["test"]', '["test"]'), + array(1, '"te\\"st"', '"te\\"st"'), + array(0, 'test #comment', '["test"]'), + array(0, "text:\ntest\n.\ntext:\ntest\n.\n", '["test","test"]'), + array(1, '"\\a\\\\\\"a"', '"a\\\\\\"a"'), + ); + } + + /** + * @dataProvider data_tokenizer + */ + function test_tokenizer($num, $input, $output) + { + $res = json_encode(rcube_sieve_script::tokenize($input, $num)); + + $this->assertEquals(trim($res), trim($output)); + } +} |