| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- namespace Tools\Test\TestCase\Shell;
- use Cake\Console\ConsoleIo;
- use Tools\Shell\InflectShell;
- use Tools\TestSuite\ConsoleOutput;
- use Tools\TestSuite\TestCase;
- /**
- */
- class InflectShellTest extends TestCase {
- /**
- * @var \Tools\Shell\InflectShell
- */
- protected $Shell;
- /**
- * @var \Tools\TestSuite\ConsoleOutput
- */
- protected $out;
- /**
- * @var \Tools\TestSuite\ConsoleOutput
- */
- protected $err;
- /**
- * @return void
- */
- public function setUp(): void {
- parent::setUp();
- $this->out = new ConsoleOutput();
- $this->err = new ConsoleOutput();
- $io = new ConsoleIo($this->out, $this->err);
- $this->Shell = $this->getMockBuilder(InflectShell::class)
- ->setMethods(['in', '_stop'])
- ->setConstructorArgs([$io])
- ->getMock();
- }
- /**
- * @return void
- */
- public function tearDown(): void {
- parent::tearDown();
- unset($this->Shell);
- }
- /**
- * @return void
- */
- public function testMain() {
- $this->Shell->expects($this->any())->method('in')
- ->will($this->returnValue('FooBar'));
- $this->Shell->runCommand(['pluralize']);
- $output = $this->out->output();
- $expected = 'FooBars';
- $this->assertStringContainsString($expected, $output);
- $this->Shell->runCommand(['underscore']);
- $output = $this->out->output();
- $expected = 'foo_bar';
- $this->assertStringContainsString($expected, $output);
- $this->Shell->runCommand(['dasherize']);
- $output = $this->out->output();
- $expected = 'foo-bar';
- $this->assertStringContainsString($expected, $output);
- $this->Shell->runCommand(['slug']);
- $output = $this->out->output();
- $expected = 'foo-bar';
- $this->assertStringContainsString($expected, $output);
- $this->Shell->runCommand(['tableize']);
- $output = $this->out->output();
- $expected = 'foo_bar';
- $this->assertStringContainsString($expected, $output);
- }
- /**
- * @return void
- */
- public function testMainAll() {
- $this->Shell->runCommand(['all', 'Foo Bar']);
- $output = $this->out->output();
- $this->assertStringContainsString('Pluralized form', $output);
- $this->assertStringContainsString('Slugged-form', $output);
- }
- }
|