WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
sabberworm
/
php-css-parser
/
tests
/
Sabberworm
/
CSS
/
Name
Action
..
OutputFormatTest.php
Edit
ParserTest.php
Edit
RuleSet
Editing: ParserTest.php
<?php namespace Sabberworm\CSS; use Sabberworm\CSS\Value\Size; use Sabberworm\CSS\Property\Selector; use Sabberworm\CSS\RuleSet\DeclarationBlock; use Sabberworm\CSS\Property\AtRule; class ParserTest extends \PHPUnit_Framework_TestCase { function testFiles() { $sDirectory = dirname(__FILE__) . '/../../files'; if ($rHandle = opendir($sDirectory)) { /* This is the correct way to loop over the directory. */ while (false !== ($sFileName = readdir($rHandle))) { if (strpos($sFileName, '.') === 0) { continue; } if (strrpos($sFileName, '.css') !== strlen($sFileName) - strlen('.css')) { continue; } if (strpos($sFileName, '-') === 0) { //Either a file which SHOULD fail (at least in strict mode) or a future test of a as-of-now missing feature continue; } $oParser = new Parser(file_get_contents($sDirectory . DIRECTORY_SEPARATOR . $sFileName)); try { $this->assertNotEquals('', $oParser->parse()->render()); } catch (\Exception $e) { $this->fail($e); } } closedir($rHandle); } } /** * @depends testFiles */ function testColorParsing() { $oDoc = $this->parsedStructureForFile('colortest'); foreach ($oDoc->getAllRuleSets() as $oRuleSet) { if (!$oRuleSet instanceof DeclarationBlock) { continue; } $sSelector = $oRuleSet->getSelectors(); $sSelector = $sSelector[0]->getSelector(); if ($sSelector === '#mine') { $aColorRule = $oRuleSet->getRules('color'); $oColor = $aColorRule[0]->getValue(); $this->assertSame('red', $oColor); $aColorRule = $oRuleSet->getRules('background-'); $oColor = $aColorRule[0]->getValue(); $this->assertEquals(array('r' => new Size(35.0, null, true), 'g' => new Size(35.0, null, true), 'b' => new Size(35.0, null, true)), $oColor->getColor()); $aColorRule = $oRuleSet->getRules('border-color'); $oColor = $aColorRule[0]->getValue(); $this->assertEquals(array('r' => new Size(10.0, null, true), 'g' => new Size(100.0, null, true), 'b' => new Size(230.0, null, true)), $oColor->getColor()); $oColor = $aColorRule[1]->getValue(); $this->assertEquals(array('r' => new Size(10.0, null, true), 'g' => new Size(100.0, null, true), 'b' => new Size(231.0, null, true), 'a' => new Size("0000.3", null, true)), $oColor->getColor()); $aColorRule = $oRuleSet->getRules('outline-color'); $oColor = $aColorRule[0]->getValue(); $this->assertEquals(array('r' => new Size(34.0, null, true), 'g' => new Size(34.0, null, true), 'b' => new Size(34.0, null, true)), $oColor->getColor()); } else if($sSelector === '#yours') { $aColorRule = $oRuleSet->getRules('background-color'); $oColor = $aColorRule[0]->getValue(); $this->assertEquals(array('h' => new Size(220.0, null, true), 's' => new Size(10.0, '%', true), 'l' => new Size(220.0, '%', true)), $oColor->getColor()); $oColor = $aColorRule[1]->getValue(); $this->assertEquals(array('h' => new Size(220.0, null, true), 's' => new Size(10.0, '%', true), 'l' => new Size(220.0, '%', true), 'a' => new Size(0000.3, null, true)), $oColor->getColor()); } } foreach ($oDoc->getAllValues('color') as $sColor) { $this->assertSame('red', $sColor); } $this->assertSame('#mine {color: red;border-color: #0a64e6;border-color: rgba(10,100,231,.3);outline-color: #222;background-color: #232323;} #yours {background-color: hsl(220,10%,220%);background-color: hsla(220,10%,220%,.3);}', $oDoc->render()); } function testUnicodeParsing() { $oDoc = $this->parsedStructureForFile('unicode'); foreach ($oDoc->getAllDeclarationBlocks() as $oRuleSet) { $sSelector = $oRuleSet->getSelectors(); $sSelector = $sSelector[0]->getSelector(); if (substr($sSelector, 0, strlen('.test-')) !== '.test-') { continue; } $aContentRules = $oRuleSet->getRules('content'); $aContents = $aContentRules[0]->getValues(); $sString = $aContents[0][0]->__toString(); if ($sSelector == '.test-1') { $this->assertSame('" "', $sString); } if ($sSelector == '.test-2') { $this->assertSame('"é"', $sString); } if ($sSelector == '.test-3') { $this->assertSame('" "', $sString); } if ($sSelector == '.test-4') { $this->assertSame('"𝄞"', $sString); } if ($sSelector == '.test-5') { $this->assertSame('"水"', $sString); } if ($sSelector == '.test-6') { $this->assertSame('"¥"', $sString); } if ($sSelector == '.test-7') { $this->assertSame('"\A"', $sString); } if ($sSelector == '.test-8') { $this->assertSame('"\"\""', $sString); } if ($sSelector == '.test-9') { $this->assertSame('"\"\\\'"', $sString); } if ($sSelector == '.test-10') { $this->assertSame('"\\\'\\\\"', $sString); } if ($sSelector == '.test-11') { $this->assertSame('"test"', $sString); } } } function testSpecificity() { $oDoc = $this->parsedStructureForFile('specificity'); $oDeclarationBlock = $oDoc->getAllDeclarationBlocks(); $oDeclarationBlock = $oDeclarationBlock[0]; $aSelectors = $oDeclarationBlock->getSelectors(); foreach ($aSelectors as $oSelector) { switch ($oSelector->getSelector()) { case "#test .help": $this->assertSame(110, $oSelector->getSpecificity()); break; case "#file": $this->assertSame(100, $oSelector->getSpecificity()); break; case ".help:hover": $this->assertSame(20, $oSelector->getSpecificity()); break; case "ol li::before": $this->assertSame(3, $oSelector->getSpecificity()); break; case "li.green": $this->assertSame(11, $oSelector->getSpecificity()); break; default: $this->fail("specificity: untested selector " . $oSelector->getSelector()); } } $this->assertEquals(array(new Selector('#test .help', true)), $oDoc->getSelectorsBySpecificity('> 100')); } function testManipulation() { $oDoc = $this->parsedStructureForFile('atrules'); $this->assertSame('@charset "utf-8"; @font-face {font-family: "CrassRoots";src: url("../media/cr.ttf");} html, body {font-size: -.6em;} @keyframes mymove {from {top: 0px;} to {top: 200px;}} @-moz-keyframes some-move {from {top: 0px;} to {top: 200px;}} @supports ( (perspective: 10px) or (-moz-perspective: 10px) or (-webkit-perspective: 10px) or (-ms-perspective: 10px) or (-o-perspective: 10px) ) {body {font-family: "Helvetica";}} @page :pseudo-class {margin: 2in;} @-moz-document url(http://www.w3.org/), url-prefix(http://www.w3.org/Style/), domain(mozilla.org), regexp("https:.*") {body {color: purple;background: yellow;}} @media screen and (orientation: landscape) {@-ms-viewport {width: 1024px;height: 768px;}} @region-style #intro {p {color: blue;}}', $oDoc->render()); foreach ($oDoc->getAllDeclarationBlocks() as $oBlock) { foreach ($oBlock->getSelectors() as $oSelector) { //Loop over all selector parts (the comma-separated strings in a selector) and prepend the id $oSelector->setSelector('#my_id ' . $oSelector->getSelector()); } } $this->assertSame('@charset "utf-8"; @font-face {font-family: "CrassRoots";src: url("../media/cr.ttf");} #my_id html, #my_id body {font-size: -.6em;} @keyframes mymove {from {top: 0px;} to {top: 200px;}} @-moz-keyframes some-move {from {top: 0px;} to {top: 200px;}} @supports ( (perspective: 10px) or (-moz-perspective: 10px) or (-webkit-perspective: 10px) or (-ms-perspective: 10px) or (-o-perspective: 10px) ) {#my_id body {font-family: "Helvetica";}} @page :pseudo-class {margin: 2in;} @-moz-document url(http://www.w3.org/), url-prefix(http://www.w3.org/Style/), domain(mozilla.org), regexp("https:.*") {#my_id body {color: purple;background: yellow;}} @media screen and (orientation: landscape) {@-ms-viewport {width: 1024px;height: 768px;}} @region-style #intro {#my_id p {color: blue;}}', $oDoc->render()); $oDoc = $this->parsedStructureForFile('values'); $this->assertSame('#header {margin: 10px 2em 1cm 2%;font-family: Verdana,Helvetica,"Gill Sans",sans-serif;font-size: 10px;color: red !important;background-color: green;background-color: rgba(0,128,0,.7);frequency: 30Hz;} body {color: green;font: 75% "Lucida Grande","Trebuchet MS",Verdana,sans-serif;}', $oDoc->render()); foreach ($oDoc->getAllRuleSets() as $oRuleSet) { $oRuleSet->removeRule('font-'); } $this->assertSame('#header {margin: 10px 2em 1cm 2%;color: red !important;background-color: green;background-color: rgba(0,128,0,.7);frequency: 30Hz;} body {color: green;}', $oDoc->render()); foreach ($oDoc->getAllRuleSets() as $oRuleSet) { $oRuleSet->removeRule('background-'); } $this->assertSame('#header {margin: 10px 2em 1cm 2%;color: red !important;frequency: 30Hz;} body {color: green;}', $oDoc->render()); } function testRuleGetters() { $oDoc = $this->parsedStructureForFile('values'); $aBlocks = $oDoc->getAllDeclarationBlocks(); $oHeaderBlock = $aBlocks[0]; $oBodyBlock = $aBlocks[1]; $aHeaderRules = $oHeaderBlock->getRules('background-'); $this->assertSame(2, count($aHeaderRules)); $this->assertSame('background-color', $aHeaderRules[0]->getRule()); $this->assertSame('background-color', $aHeaderRules[1]->getRule()); $aHeaderRules = $oHeaderBlock->getRulesAssoc('background-'); $this->assertSame(1, count($aHeaderRules)); $this->assertSame(true, $aHeaderRules['background-color']->getValue() instanceof \Sabberworm\CSS\Value\Color); $this->assertSame('rgba', $aHeaderRules['background-color']->getValue()->getColorDescription()); $oHeaderBlock->removeRule($aHeaderRules['background-color']); $aHeaderRules = $oHeaderBlock->getRules('background-'); $this->assertSame(1, count($aHeaderRules)); $this->assertSame('green', $aHeaderRules[0]->getValue()); } function testSlashedValues() { $oDoc = $this->parsedStructureForFile('slashed'); $this->assertSame('.test {font: 12px/1.5 Verdana,Arial,sans-serif;border-radius: 5px 10px 5px 10px/10px 5px 10px 5px;}', $oDoc->render()); foreach ($oDoc->getAllValues(null) as $mValue) { if ($mValue instanceof Size && $mValue->isSize() && !$mValue->isRelative()) { $mValue->setSize($mValue->getSize() * 3); } } foreach ($oDoc->getAllDeclarationBlocks() as $oBlock) { $oRule = $oBlock->getRules('font'); $oRule = $oRule[0]; $oSpaceList = $oRule->getValue(); $this->assertEquals(' ', $oSpaceList->getListSeparator()); $oSlashList = $oSpaceList->getListComponents(); $oCommaList = $oSlashList[1]; $oSlashList = $oSlashList[0]; $this->assertEquals(',', $oCommaList->getListSeparator()); $this->assertEquals('/', $oSlashList->getListSeparator()); $oRule = $oBlock->getRules('border-radius'); $oRule = $oRule[0]; $oSlashList = $oRule->getValue(); $this->assertEquals('/', $oSlashList->getListSeparator()); $oSpaceList1 = $oSlashList->getListComponents(); $oSpaceList2 = $oSpaceList1[1]; $oSpaceList1 = $oSpaceList1[0]; $this->assertEquals(' ', $oSpaceList1->getListSeparator()); $this->assertEquals(' ', $oSpaceList2->getListSeparator()); } $this->assertSame('.test {font: 36px/1.5 Verdana,Arial,sans-serif;border-radius: 15px 30px 15px 30px/30px 15px 30px 15px;}', $oDoc->render()); } function testFunctionSyntax() { $oDoc = $this->parsedStructureForFile('functions'); $sExpected = 'div.main {background-image: linear-gradient(#000,#fff);} .collapser::before, .collapser::-moz-before, .collapser::-webkit-before {content: "»";font-size: 1.2em;margin-right: .2em;-moz-transition-property: -moz-transform;-moz-transition-duration: .2s;-moz-transform-origin: center 60%;} .collapser.expanded::before, .collapser.expanded::-moz-before, .collapser.expanded::-webkit-before {-moz-transform: rotate(90deg);} .collapser + * {height: 0;overflow: hidden;-moz-transition-property: height;-moz-transition-duration: .3s;} .collapser.expanded + * {height: auto;}'; $this->assertSame($sExpected, $oDoc->render()); foreach ($oDoc->getAllValues(null, true) as $mValue) { if ($mValue instanceof Size && $mValue->isSize()) { $mValue->setSize($mValue->getSize() * 3); } } $sExpected = str_replace(array('1.2em', '.2em', '60%'), array('3.6em', '.6em', '180%'), $sExpected); $this->assertSame($sExpected, $oDoc->render()); foreach ($oDoc->getAllValues(null, true) as $mValue) { if ($mValue instanceof Size && !$mValue->isRelative() && !$mValue->isColorComponent()) { $mValue->setSize($mValue->getSize() * 2); } } $sExpected = str_replace(array('.2s', '.3s', '90deg'), array('.4s', '.6s', '180deg'), $sExpected); $this->assertSame($sExpected, $oDoc->render()); } function testExpandShorthands() { $oDoc = $this->parsedStructureForFile('expand-shorthands'); $sExpected = 'body {font: italic 500 14px/1.618 "Trebuchet MS",Georgia,serif;border: 2px solid #f0f;background: #ccc url("/images/foo.png") no-repeat left top;margin: 1em !important;padding: 2px 6px 3px;}'; $this->assertSame($sExpected, $oDoc->render()); $oDoc->expandShorthands(); $sExpected = 'body {margin-top: 1em !important;margin-right: 1em !important;margin-bottom: 1em !important;margin-left: 1em !important;padding-top: 2px;padding-right: 6px;padding-bottom: 3px;padding-left: 6px;border-top-color: #f0f;border-right-color: #f0f;border-bottom-color: #f0f;border-left-color: #f0f;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;border-top-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-width: 2px;font-style: italic;font-variant: normal;font-weight: 500;font-size: 14px;line-height: 1.618;font-family: "Trebuchet MS",Georgia,serif;background-color: #ccc;background-image: url("/images/foo.png");background-repeat: no-repeat;background-attachment: scroll;background-position: left top;}'; $this->assertSame($sExpected, $oDoc->render()); } function testCreateShorthands() { $oDoc = $this->parsedStructureForFile('create-shorthands'); $sExpected = 'body {font-size: 2em;font-family: Helvetica,Arial,sans-serif;font-weight: bold;border-width: 2px;border-color: #999;border-style: dotted;background-color: #fff;background-image: url("foobar.png");background-repeat: repeat-y;margin-top: 2px;margin-right: 3px;margin-bottom: 4px;margin-left: 5px;}'; $this->assertSame($sExpected, $oDoc->render()); $oDoc->createShorthands(); $sExpected = 'body {background: #fff url("foobar.png") repeat-y;margin: 2px 5px 4px 3px;border: 2px dotted #999;font: bold 2em Helvetica,Arial,sans-serif;}'; $this->assertSame($sExpected, $oDoc->render()); } function testNamespaces() { $oDoc = $this->parsedStructureForFile('namespaces'); $sExpected = '@namespace toto "http://toto.example.org"; @namespace "http://example.com/foo"; @namespace foo url("http://www.example.com/"); @namespace foo url("http://www.example.com/"); foo|test {gaga: 1;} |test {gaga: 2;}'; $this->assertSame($sExpected, $oDoc->render()); } function testInnerColors() { $oDoc = $this->parsedStructureForFile('inner-color'); $sExpected = 'test {background: -webkit-gradient(linear,0 0,0 bottom,from(#006cad),to(hsl(202,100%,49%)));}'; $this->assertSame($sExpected, $oDoc->render()); } function testPrefixedGradient() { $oDoc = $this->parsedStructureForFile('webkit'); $sExpected = '.test {background: -webkit-linear-gradient(top right,white,black);}'; $this->assertSame($sExpected, $oDoc->render()); } function testListValueRemoval() { $oDoc = $this->parsedStructureForFile('atrules'); foreach ($oDoc->getContents() as $oItem) { if ($oItem instanceof AtRule) { $oDoc->remove($oItem); continue; } } $this->assertSame('html, body {font-size: -.6em;}', $oDoc->render()); $oDoc = $this->parsedStructureForFile('nested'); foreach ($oDoc->getAllDeclarationBlocks() as $oBlock) { $oDoc->removeDeclarationBlockBySelector($oBlock, false); break; } $this->assertSame('html {some-other: -test(val1);} @media screen {html {some: -test(val2);}} #unrelated {other: yes;}', $oDoc->render()); $oDoc = $this->parsedStructureForFile('nested'); foreach ($oDoc->getAllDeclarationBlocks() as $oBlock) { $oDoc->removeDeclarationBlockBySelector($oBlock, true); break; } $this->assertSame('@media screen {html {some: -test(val2);}} #unrelated {other: yes;}', $oDoc->render()); } /** * @expectedException Sabberworm\CSS\Parsing\OutputException */ function testSelectorRemoval() { $oDoc = $this->parsedStructureForFile('1readme'); $aBlocks = $oDoc->getAllDeclarationBlocks(); $oBlock1 = $aBlocks[0]; $this->assertSame(true, $oBlock1->removeSelector('html')); $sExpected = '@charset "utf-8"; @font-face {font-family: "CrassRoots";src: url("../media/cr.ttf");} body {font-size: 1.6em;}'; $this->assertSame($sExpected, $oDoc->render()); $this->assertSame(false, $oBlock1->removeSelector('html')); $this->assertSame(true, $oBlock1->removeSelector('body')); // This tries to output a declaration block without a selector and throws. $oDoc->render(); } function testComments() { $oDoc = $this->parsedStructureForFile('comments'); $sExpected = '@import url("some/url.css") screen; .foo, #bar {background-color: #000;} @media screen {#foo.bar {position: absolute;}}'; $this->assertSame($sExpected, $oDoc->render()); } function parsedStructureForFile($sFileName) { $sFile = dirname(__FILE__) . '/../../files' . DIRECTORY_SEPARATOR . "$sFileName.css"; $oParser = new Parser(file_get_contents($sFile)); return $oParser->parse(); } }