summaryrefslogtreecommitdiff
path: root/plugins/managesieve/tests/Tokenizer.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/managesieve/tests/Tokenizer.php')
-rw-r--r--plugins/managesieve/tests/Tokenizer.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/plugins/managesieve/tests/Tokenizer.php b/plugins/managesieve/tests/Tokenizer.php
deleted file mode 100644
index f50ed75b7..000000000
--- a/plugins/managesieve/tests/Tokenizer.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-class Tokenizer extends PHPUnit_Framework_TestCase
-{
-
- function setUp()
- {
- include_once __DIR__ . '/../lib/Roundcube/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));
- }
-}