Skip to content

Commit

Permalink
[CssSelector] refactored some tests to use @dataProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Apr 1, 2010
1 parent 14ea0da commit 5b941f5
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 40 deletions.
48 changes: 28 additions & 20 deletions tests/Symfony/Tests/Components/CssSelector/ParserTest.php
Expand Up @@ -24,30 +24,19 @@ public function testCssToXpath()
$this->assertEquals('descendant-or-self::foo:h1', Parser::cssToXpath('foo|h1'));
}

public function testParse()
/**
* @dataProvider getCssSelectors
*/
public function testParse($css, $xpath)
{
$parser = new Parser();

$tests = array(
'h1' => "h1",
'foo|h1' => "foo:h1",
'h1, h2, h3' => "h1 | h2 | h3",
'h1:nth-child(3n+1)' => "*/*[name() = 'h1' and ((position() -1) mod 3 = 0 and position() >= 1)]",
'h1 > p' => "h1/p",
'h1#foo' => "h1[@id = 'foo']",
'h1.foo' => "h1[contains(concat(' ', normalize-space(@class), ' '), ' foo ')]",
'h1[class*="foo bar"]' => "h1[contains(@class, 'foo bar')]",
'h1[foo|class*="foo bar"]' => "h1[contains(@foo:class, 'foo bar')]",
'h1[class]' => "h1[@class]",
'h1 .foo' => "h1/descendant::*[contains(concat(' ', normalize-space(@class), ' '), ' foo ')]",
'h1 #foo' => "h1/descendant::*[@id = 'foo']",
'h1 [class*=foo]' => "h1/descendant::*[contains(@class, 'foo')]",
);
$this->assertEquals($xpath, (string) $parser->parse($css)->toXpath(), '->parse() parses an input string and returns a node');
}

foreach ($tests as $selector => $xpath)
{
$this->assertEquals($xpath, (string) $parser->parse($selector)->toXpath(), '->parse() parses an input string and returns a node');
}
public function testParseExceptions()
{
$parser = new Parser();

try
{
Expand All @@ -59,4 +48,23 @@ public function testParse()
$this->assertEquals("Expected symbol, got '' at h1: -> ", $e->getMessage(), '->parse() throws an Exception if the css selector is not valid');
}
}

public function getCssSelectors()
{
return array(
array('h1', "h1"),
array('foo|h1', "foo:h1"),
array('h1, h2, h3', "h1 | h2 | h3"),
array('h1:nth-child(3n+1)', "*/*[name() = 'h1' and ((position() -1) mod 3 = 0 and position() >= 1)]"),
array('h1 > p', "h1/p"),
array('h1#foo', "h1[@id = 'foo']"),
array('h1.foo', "h1[contains(concat(' ', normalize-space(@class), ' '), ' foo ')]"),
array('h1[class*="foo bar"]', "h1[contains(@class, 'foo bar')]"),
array('h1[foo|class*="foo bar"]', "h1[contains(@foo:class, 'foo bar')]"),
array('h1[class]', "h1[@class]"),
array('h1 .foo', "h1/descendant::*[contains(concat(' ', normalize-space(@class), ' '), ' foo ')]"),
array('h1 #foo', "h1/descendant::*[@id = 'foo']"),
array('h1 [class*=foo]', "h1/descendant::*[contains(@class, 'foo')]"),
);
}
}
51 changes: 31 additions & 20 deletions tests/Symfony/Tests/Components/CssSelector/TokenizerTest.php
Expand Up @@ -15,29 +15,40 @@

class TokenizerTest extends \PHPUnit_Framework_TestCase
{
public function testTokenize()
protected $tokenizer;

public function setUp()
{
$tokenizer = new Tokenizer();

$tests = array(
'h1',
'h1:nth-child(3n+1)',
'h1 > p',
'h1#foo',
'h1.foo',
'h1[class*=foo]',
'h1 .foo',
'h1 #foo',
'h1 [class*=foo]',
);
$this->tokenizer = new Tokenizer();
}

foreach ($tests as $test)
{
$this->assertEquals($test, $this->tokensToString($tokenizer->tokenize($test)), '->tokenize() lexes an input string and returns an array of tokens');
}
/**
* @dataProvider getCssSelectors
*/
public function testTokenize($css)
{
$this->assertEquals($css, $this->tokensToString($this->tokenizer->tokenize($css)), '->tokenize() lexes an input string and returns an array of tokens');
}

public function testTokenizeWithQuotedStrings()
{
$this->assertEquals('foo[class=foo bar ]', $this->tokensToString($this->tokenizer->tokenize('foo[class="foo bar"]')), '->tokenize() lexes an input string and returns an array of tokens');
$this->assertEquals("foo[class=foo Abar ]", $this->tokensToString($this->tokenizer->tokenize('foo[class="foo \\65 bar"]')), '->tokenize() lexes an input string and returns an array of tokens');
}

$this->assertEquals('foo[class=foo bar ]', $this->tokensToString($tokenizer->tokenize('foo[class="foo bar"]')), '->tokenize() lexes an input string and returns an array of tokens');
$this->assertEquals("foo[class=foo Abar ]", $this->tokensToString($tokenizer->tokenize('foo[class="foo \\65 bar"]')), '->tokenize() lexes an input string and returns an array of tokens');
public function getCssSelectors()
{
return array(
array('h1'),
array('h1:nth-child(3n+1)'),
array('h1 > p'),
array('h1#foo'),
array('h1.foo'),
array('h1[class*=foo]'),
array('h1 .foo'),
array('h1 #foo'),
array('h1 [class*=foo]'),
);
}

protected function tokensToString($tokens)
Expand Down

0 comments on commit 5b941f5

Please sign in to comment.