Sindbad~EG File Manager
<?php
namespace Html2Text;
class BlockquoteTest extends \PHPUnit_Framework_TestCase
{
public function blockquoteDataProvider()
{
return array(
'Basic blockquote' => array(
'html' => <<<EOT
<p>Before</p>
<blockquote>
Foo bar baz
HTML symbols &
</blockquote>
<p>After</p>
EOT
,
'expected' => <<<EOT
Before
> Foo bar baz HTML symbols &
After
EOT
,
),
'Multiple blockquotes in text' => array(
'html' => <<<EOF
<p>Highlights from today’s <strong>Newlyhired Game</strong>:</p><blockquote><p><strong>Sean:</strong> What came first, Blake’s first <em>Chief Architect position</em> or Blake’s first <em>girlfriend</em>?</p> </blockquote> <blockquote> <p><strong>Sean:</strong> Devin, Bryan spent almost five years of his life slaving away for this vampire squid wrapped around the face of humanity…<br/><strong>Devin:</strong> Goldman Sachs?<br/><strong>Sean:</strong> Correct!</p> </blockquote> <blockquote> <p><strong>Sean:</strong> What was the name of the girl Zhu took to prom three months ago?<br/><strong>John:</strong> What?<br/><strong>Derek (from the audience):</strong> Destiny!<br/><strong>Zhu:</strong> Her name is Jolene. She’s nice. I like her.</p></blockquote><p>I think the audience is winning. - Derek</p>
EOF
,
'expected' => <<<EOF
Highlights from today’s NEWLYHIRED GAME:
> SEAN: What came first, Blake’s first _Chief Architect position_ or
> Blake’s first _girlfriend_?
> SEAN: Devin, Bryan spent almost five years of his life slaving away
> for this vampire squid wrapped around the face of humanity…
> DEVIN: Goldman Sachs?
> SEAN: Correct!
> SEAN: What was the name of the girl Zhu took to prom three months
> ago?
> JOHN: What?
> DEREK (FROM THE AUDIENCE): Destiny!
> ZHU: Her name is Jolene. She’s nice. I like her.
I think the audience is winning. - Derek
EOF
),
'Multibyte strings before blockquote' => array(
'html' => <<<EOF
“Hello”
<blockquote>goodbye</blockquote>
EOF
,
'expected' => <<<EOF
“Hello”
> goodbye
EOF
)
);
}
/**
* @dataProvider blockquoteDataProvider
*/
public function testBlockquote($html, $expected) {
$html2text = new Html2Text($html);
$this->assertEquals($expected, $html2text->getText());
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists