Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.140.254.100
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
symfony /
console /
Tests /
Helper /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractQuestionHelperTest.php
941
B
-rw-r--r--
2018-11-27 09:00
FormatterHelperTest.php
4.31
KB
-rw-r--r--
2018-11-27 09:00
HelperSetTest.php
5.43
KB
-rw-r--r--
2018-11-27 09:00
HelperTest.php
1.46
KB
-rw-r--r--
2018-11-27 09:00
ProcessHelperTest.php
5.54
KB
-rw-r--r--
2018-11-27 09:00
ProgressBarTest.php
31.64
KB
-rw-r--r--
2018-11-27 09:00
ProgressIndicatorTest.php
5.24
KB
-rw-r--r--
2018-11-27 09:00
QuestionHelperTest.php
28.94
KB
-rw-r--r--
2018-11-27 09:00
SymfonyQuestionHelperTest.php
7.94
KB
-rw-r--r--
2018-11-27 09:00
TableStyleTest.php
739
B
-rw-r--r--
2018-11-27 09:00
TableTest.php
42.73
KB
-rw-r--r--
2018-11-27 09:00
Save
Rename
<?php namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase; use Symfony\Component\Console\Helper\ProgressIndicator; use Symfony\Component\Console\Output\StreamOutput; /** * @group time-sensitive */ class ProgressIndicatorTest extends TestCase { public function testDefaultIndicator() { $bar = new ProgressIndicator($output = $this->getOutputStream()); $bar->start('Starting...'); usleep(101000); $bar->advance(); usleep(101000); $bar->advance(); usleep(101000); $bar->advance(); usleep(101000); $bar->advance(); usleep(101000); $bar->advance(); usleep(101000); $bar->setMessage('Advancing...'); $bar->advance(); $bar->finish('Done...'); $bar->start('Starting Again...'); usleep(101000); $bar->advance(); $bar->finish('Done Again...'); rewind($output->getStream()); $this->assertEquals( $this->generateOutput(' - Starting...'). $this->generateOutput(' \\ Starting...'). $this->generateOutput(' | Starting...'). $this->generateOutput(' / Starting...'). $this->generateOutput(' - Starting...'). $this->generateOutput(' \\ Starting...'). $this->generateOutput(' \\ Advancing...'). $this->generateOutput(' | Advancing...'). $this->generateOutput(' | Done...'). PHP_EOL. $this->generateOutput(' - Starting Again...'). $this->generateOutput(' \\ Starting Again...'). $this->generateOutput(' \\ Done Again...'). PHP_EOL, stream_get_contents($output->getStream()) ); } public function testNonDecoratedOutput() { $bar = new ProgressIndicator($output = $this->getOutputStream(false)); $bar->start('Starting...'); $bar->advance(); $bar->advance(); $bar->setMessage('Midway...'); $bar->advance(); $bar->advance(); $bar->finish('Done...'); rewind($output->getStream()); $this->assertEquals( ' Starting...'.PHP_EOL. ' Midway...'.PHP_EOL. ' Done...'.PHP_EOL.PHP_EOL, stream_get_contents($output->getStream()) ); } public function testCustomIndicatorValues() { $bar = new ProgressIndicator($output = $this->getOutputStream(), null, 100, array('a', 'b', 'c')); $bar->start('Starting...'); usleep(101000); $bar->advance(); usleep(101000); $bar->advance(); usleep(101000); $bar->advance(); rewind($output->getStream()); $this->assertEquals( $this->generateOutput(' a Starting...'). $this->generateOutput(' b Starting...'). $this->generateOutput(' c Starting...'). $this->generateOutput(' a Starting...'), stream_get_contents($output->getStream()) ); } /** * @expectedException \InvalidArgumentException * @expectedExceptionMessage Must have at least 2 indicator value characters. */ public function testCannotSetInvalidIndicatorCharacters() { $bar = new ProgressIndicator($this->getOutputStream(), null, 100, array('1')); } /** * @expectedException \LogicException * @expectedExceptionMessage Progress indicator already started. */ public function testCannotStartAlreadyStartedIndicator() { $bar = new ProgressIndicator($this->getOutputStream()); $bar->start('Starting...'); $bar->start('Starting Again.'); } /** * @expectedException \LogicException * @expectedExceptionMessage Progress indicator has not yet been started. */ public function testCannotAdvanceUnstartedIndicator() { $bar = new ProgressIndicator($this->getOutputStream()); $bar->advance(); } /** * @expectedException \LogicException * @expectedExceptionMessage Progress indicator has not yet been started. */ public function testCannotFinishUnstartedIndicator() { $bar = new ProgressIndicator($this->getOutputStream()); $bar->finish('Finished'); } /** * @dataProvider provideFormat */ public function testFormats($format) { $bar = new ProgressIndicator($output = $this->getOutputStream(), $format); $bar->start('Starting...'); $bar->advance(); rewind($output->getStream()); $this->assertNotEmpty(stream_get_contents($output->getStream())); } /** * Provides each defined format. * * @return array */ public function provideFormat() { return array( array('normal'), array('verbose'), array('very_verbose'), array('debug'), ); } protected function getOutputStream($decorated = true, $verbosity = StreamOutput::VERBOSITY_NORMAL) { return new StreamOutput(fopen('php://memory', 'r+', false), $verbosity, $decorated); } protected function generateOutput($expected) { $count = substr_count($expected, "\n"); return "\x0D\x1B[2K".($count ? sprintf("\033[%dA", $count) : '').$expected; } }