function TokenUnitTestCase::testTokenScan in Token 6
Test the token_scan() function.
File
- ./
token.test, line 244 - Tests for the token module.
Class
Code
function testTokenScan() {
$tests = array(
array(
'text' => 'Test [foo] [[bar]] test.',
'tokens' => array(
'foo',
'bar',
),
),
array(
'text' => 'Test [foo] [] test.',
'tokens' => array(
'foo',
),
),
array(
'text' => 'Test [foo][] test.',
'tokens' => array(
'foo',
),
),
array(
'text' => 'Test [foo][bar] test.',
'tokens' => array(
'foo',
'bar',
),
),
// Test the e-mail token syntax.
array(
'text' => 'Test %foo %%bar test.',
'tokens' => array(
'foo',
'bar',
),
'leading' => '%',
'trailing' => '',
),
array(
'text' => 'Test %foo % test.',
'tokens' => array(
'foo',
),
'leading' => '%',
'trailing' => '',
),
array(
'text' => 'Test %foo% test.',
'tokens' => array(
'foo',
),
'leading' => '%',
'trailing' => '',
),
array(
'text' => 'Test %foo%%bar test.',
'tokens' => array(
'foo',
'bar',
),
'leading' => '%',
'trailing' => '',
),
// Test the rules token syntax.
array(
'text' => 'Test [global:foo] [global:bar] test.',
'tokens' => array(
'foo',
'bar',
),
'leading' => '[global:',
),
array(
'text' => 'Test [node:foo] [node:] test.',
'tokens' => array(
'foo',
),
'leading' => '[node:',
),
array(
'text' => 'Test [node:foo][node:] test.',
'tokens' => array(
'foo',
),
'leading' => '[node:',
),
array(
'text' => 'Test [node:foo][node:bar] test.',
'tokens' => array(
'foo',
'bar',
),
'leading' => '[node:',
),
);
foreach ($tests as $test) {
$test += array(
'leading' => TOKEN_PREFIX,
'trailing' => TOKEN_SUFFIX,
);
$this
->assertEqual(token_scan($test['text'], $test['leading'], $test['trailing']), $test['tokens']);
}
}