Completed
Push — master ( 115023...f3ae79 )
by Daniel
02:10
created

testLocationsAsStateNameSetsShortStateOnJob()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 6

Duplication

Lines 9
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 9
loc 9
rs 9.6666
cc 1
eloc 6
nc 1
nop 2
1
<?php
2
3
namespace Jobles\Tests\Careerjet\Builder;
4
5
use Jobles\Careerjet\Builder\JobWithBrazilianLocationsBuilder;
6
use Jobles\Core\Job\Job;
7
8
class JobWithBrazilianLocationsBuilderTest extends \PHPUnit_Framework_TestCase
9
{
10
    /**
11
     * @var \stdClass
12
     */
13
    private $apiJob;
14
15
    /**
16
     * @var Job
17
     */
18
    private $job;
19
20
    public function setUp()
21
    {
22
        $this->apiJob = new \stdClass;
23
        $this->job = new Job;
24
        $this->job->setCountry('Brazil');
25
    }
26
27
    public function testFromApiThrowsCareerjetExceptionWhenLocationIsNotPresent()
28
    {
29
        $this->expectException(\Jobles\Careerjet\Exception\CareerjetException::class);
30
        $this->expectExceptionMessage('Invalid API job');
31
32
        JobWithBrazilianLocationsBuilder::fromApi(new \stdClass, new Job);
33
    }
34
35 View Code Duplication
    public function testLocationIsBrasil()
0 ignored issues
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...
36
    {
37
        $this->apiJob->locations = 'Brasil';
38
        $this->job = JobWithBrazilianLocationsBuilder::fromApi($this->apiJob, $this->job);
39
40
        $this->assertNull($this->job->getState());
41
        $this->assertNull($this->job->getCity());
42
        $this->assertEquals('Brazil', $this->job->getCountry());
43
    }
44
45
    /**
46
     * @dataProvider statesDataProvider
47
     * @param $stateName
48
     * @param $shortState
49
     * @throws \Jobles\Careerjet\Exception\CareerjetException
50
     */
51 View Code Duplication
    public function testLocationsAsStateNameSetsShortStateOnJob($stateName, $shortState)
0 ignored issues
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...
52
    {
53
        $this->apiJob->locations = $stateName;
54
        $this->job = JobWithBrazilianLocationsBuilder::fromApi($this->apiJob, $this->job);
55
56
        $this->assertEquals($shortState, $this->job->getState());
57
        $this->assertNull($this->job->getCity());
58
        $this->assertEquals('Brazil', $this->job->getCountry());
59
    }
60
61
    public function statesDataProvider()
62
    {
63
        return [
64
            ['Acre', 'AC'],
65
            ['Alagoas', 'AL'],
66
            ['Amapá', 'AP'],
67
            ['Amapa', 'AP'],
68
            ['Amazonas', 'AM'],
69
            ['Bahia', 'BA'],
70
            ['Ceará', 'CE'],
71
            ['Ceara', 'CE'],
72
            ['Distrito-Federal', 'DF'],
73
            ['Distrito Federal', 'DF'],
74
            ['Espírito Santo', 'ES'],
75
            ['Espirito Santo', 'ES'],
76
            ['Goiás', 'GO'],
77
            ['Goias', 'GO'],
78
            ['Maranhão', 'MA'],
79
            ['Maranhao', 'MA'],
80
            ['Mato Grosso', 'MT'],
81
            ['Mato Grosso do Sul', 'MS'],
82
            ['Minas Gerais', 'MG'],
83
            ['Pará', 'PA'],
84
            ['Para', 'PA'],
85
            ['Paraíba', 'PB'],
86
            ['Paraiba', 'PB'],
87
            ['Paraná', 'PR'],
88
            ['Parana', 'PR'],
89
            ['Pernambuco', 'PE'],
90
            ['Piauí', 'PI'],
91
            ['Piaui', 'PI'],
92
            ['Rio de Janeiro', 'RJ'],
93
            ['Rio Grande do Norte', 'RN'],
94
            ['Rio Grande do Sul', 'RS'],
95
            ['Rondônia', 'RO'],
96
            ['Rondonia', 'RO'],
97
            ['Roraima', 'RR'],
98
            ['Santa Catarina', 'SC'],
99
            ['São Paulo', 'SP'],
100
            ['Sao Paulo', 'SP'],
101
            ['Sergipe', 'SE'],
102
            ['Tocantins', 'TO'],
103
        ];
104
    }
105
}
106