FunctionNodeTest.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\CssSelector\Tests\Node;
  11. use Symfony\Component\CssSelector\Node\ElementNode;
  12. use Symfony\Component\CssSelector\Node\FunctionNode;
  13. use Symfony\Component\CssSelector\Parser\Token;
  14. class FunctionNodeTest extends AbstractNodeTest
  15. {
  16. public function getToStringConversionTestData()
  17. {
  18. return array(
  19. array(new FunctionNode(new ElementNode(), 'function'), 'Function[Element[*]:function()]'),
  20. array(new FunctionNode(new ElementNode(), 'function', array(
  21. new Token(Token::TYPE_IDENTIFIER, 'value', 0),
  22. )), "Function[Element[*]:function(['value'])]"),
  23. array(new FunctionNode(new ElementNode(), 'function', array(
  24. new Token(Token::TYPE_STRING, 'value1', 0),
  25. new Token(Token::TYPE_NUMBER, 'value2', 0),
  26. )), "Function[Element[*]:function(['value1', 'value2'])]"),
  27. );
  28. }
  29. public function getSpecificityValueTestData()
  30. {
  31. return array(
  32. array(new FunctionNode(new ElementNode(), 'function'), 10),
  33. array(new FunctionNode(new ElementNode(), 'function', array(
  34. new Token(Token::TYPE_IDENTIFIER, 'value', 0),
  35. )), 10),
  36. array(new FunctionNode(new ElementNode(), 'function', array(
  37. new Token(Token::TYPE_STRING, 'value1', 0),
  38. new Token(Token::TYPE_NUMBER, 'value2', 0),
  39. )), 10),
  40. );
  41. }
  42. }