Update to drupal 8.0.0-rc1. For more information, see https://www.drupal.org/node/2582663
This commit is contained in:
parent
eb34d130a8
commit
f32e58e4b1
8476 changed files with 211648 additions and 170042 deletions
44
vendor/symfony/css-selector/Tests/Parser/Shortcut/ClassParserTest.php
vendored
Normal file
44
vendor/symfony/css-selector/Tests/Parser/Shortcut/ClassParserTest.php
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\CssSelector\Tests\Parser\Shortcut;
|
||||
|
||||
use Symfony\Component\CssSelector\Node\SelectorNode;
|
||||
use Symfony\Component\CssSelector\Parser\Shortcut\ClassParser;
|
||||
|
||||
/**
|
||||
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
|
||||
*/
|
||||
class ClassParserTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
/** @dataProvider getParseTestData */
|
||||
public function testParse($source, $representation)
|
||||
{
|
||||
$parser = new ClassParser();
|
||||
$selectors = $parser->parse($source);
|
||||
$this->assertCount(1, $selectors);
|
||||
|
||||
/** @var SelectorNode $selector */
|
||||
$selector = $selectors[0];
|
||||
$this->assertEquals($representation, (string) $selector->getTree());
|
||||
}
|
||||
|
||||
public function getParseTestData()
|
||||
{
|
||||
return array(
|
||||
array('.testclass', 'Class[Element[*].testclass]'),
|
||||
array('testel.testclass', 'Class[Element[testel].testclass]'),
|
||||
array('testns|.testclass', 'Class[Element[testns|*].testclass]'),
|
||||
array('testns|*.testclass', 'Class[Element[testns|*].testclass]'),
|
||||
array('testns|testel.testclass', 'Class[Element[testns|testel].testclass]'),
|
||||
);
|
||||
}
|
||||
}
|
43
vendor/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php
vendored
Normal file
43
vendor/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\CssSelector\Tests\Parser\Shortcut;
|
||||
|
||||
use Symfony\Component\CssSelector\Node\SelectorNode;
|
||||
use Symfony\Component\CssSelector\Parser\Shortcut\ElementParser;
|
||||
|
||||
/**
|
||||
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
|
||||
*/
|
||||
class ElementParserTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
/** @dataProvider getParseTestData */
|
||||
public function testParse($source, $representation)
|
||||
{
|
||||
$parser = new ElementParser();
|
||||
$selectors = $parser->parse($source);
|
||||
$this->assertCount(1, $selectors);
|
||||
|
||||
/** @var SelectorNode $selector */
|
||||
$selector = $selectors[0];
|
||||
$this->assertEquals($representation, (string) $selector->getTree());
|
||||
}
|
||||
|
||||
public function getParseTestData()
|
||||
{
|
||||
return array(
|
||||
array('*', 'Element[*]'),
|
||||
array('testel', 'Element[testel]'),
|
||||
array('testns|*', 'Element[testns|*]'),
|
||||
array('testns|testel', 'Element[testns|testel]'),
|
||||
);
|
||||
}
|
||||
}
|
35
vendor/symfony/css-selector/Tests/Parser/Shortcut/EmptyStringParserTest.php
vendored
Normal file
35
vendor/symfony/css-selector/Tests/Parser/Shortcut/EmptyStringParserTest.php
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\CssSelector\Tests\Parser\Shortcut;
|
||||
|
||||
use Symfony\Component\CssSelector\Node\SelectorNode;
|
||||
use Symfony\Component\CssSelector\Parser\Shortcut\EmptyStringParser;
|
||||
|
||||
/**
|
||||
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
|
||||
*/
|
||||
class EmptyStringParserTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testParse()
|
||||
{
|
||||
$parser = new EmptyStringParser();
|
||||
$selectors = $parser->parse('');
|
||||
$this->assertCount(1, $selectors);
|
||||
|
||||
/** @var SelectorNode $selector */
|
||||
$selector = $selectors[0];
|
||||
$this->assertEquals('Element[*]', (string) $selector->getTree());
|
||||
|
||||
$selectors = $parser->parse('this will produce an empty array');
|
||||
$this->assertCount(0, $selectors);
|
||||
}
|
||||
}
|
44
vendor/symfony/css-selector/Tests/Parser/Shortcut/HashParserTest.php
vendored
Normal file
44
vendor/symfony/css-selector/Tests/Parser/Shortcut/HashParserTest.php
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\CssSelector\Tests\Parser\Shortcut;
|
||||
|
||||
use Symfony\Component\CssSelector\Node\SelectorNode;
|
||||
use Symfony\Component\CssSelector\Parser\Shortcut\HashParser;
|
||||
|
||||
/**
|
||||
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
|
||||
*/
|
||||
class HashParserTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
/** @dataProvider getParseTestData */
|
||||
public function testParse($source, $representation)
|
||||
{
|
||||
$parser = new HashParser();
|
||||
$selectors = $parser->parse($source);
|
||||
$this->assertCount(1, $selectors);
|
||||
|
||||
/** @var SelectorNode $selector */
|
||||
$selector = $selectors[0];
|
||||
$this->assertEquals($representation, (string) $selector->getTree());
|
||||
}
|
||||
|
||||
public function getParseTestData()
|
||||
{
|
||||
return array(
|
||||
array('#testid', 'Hash[Element[*]#testid]'),
|
||||
array('testel#testid', 'Hash[Element[testel]#testid]'),
|
||||
array('testns|#testid', 'Hash[Element[testns|*]#testid]'),
|
||||
array('testns|*#testid', 'Hash[Element[testns|*]#testid]'),
|
||||
array('testns|testel#testid', 'Hash[Element[testns|testel]#testid]'),
|
||||
);
|
||||
}
|
||||
}
|
Reference in a new issue