Completed
Push — develop ( fe8c75...3bcd98 )
by Tom
02:26
created

GetClassifierCommandTest::testCommand()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 24
Code Lines 16

Duplication

Lines 24
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 24
loc 24
rs 8.9713
cc 1
eloc 16
nc 1
nop 0
1
<?php
2
3
namespace Bobbyshaw\WatsonVisualRecognition\Tests\Commands;
4
5
use Bobbyshaw\WatsonVisualRecognition\Client;
6
use Bobbyshaw\WatsonVisualRecognition\Commands\GetClassifierCommand;
7
use Bobbyshaw\WatsonVisualRecognition\Tests\Base;
8
use Symfony\Component\Console\Input\ArrayInput;
9
use Symfony\Component\Console\Output\BufferedOutput;
10
11
class GetClassifierCommandTest extends Base
12
{
13
    /**
14
     * Test that the command outputs a table of classifiers
15
     */
16 View Code Duplication
    public function testCommand()
1 ignored issue
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
17
    {
18
        $container = [];
19
        $response = $this->getMockHttpResponse('GetClassifierSuccess.txt');
20
        $httpClient = $this->getMockHttpClientWithHistoryAndResponses($container, [$response]);
21
22
        $arguments = [
23
            'username' => 'test',
24
            'password' => 'test',
25
            'classifier_id' => 'Magenta',
26
            '--version-date' => '2016-01-01',
27
        ];
28
        $input = new ArrayInput($arguments);
29
        $output = new BufferedOutput();
30
31
        $command = new GetClassifierCommand(null, new Client($httpClient));
32
        $command->run($input, $output);
33
34
        $this->assertEquals('classifier:get', $command->getName());
35
36
        $correctOutput = file_get_contents('Tests/Mock/Commands/ClassifierSuccess.txt');
37
38
        $this->assertEquals($correctOutput, $output->fetch());
39
    }
40
}
41