1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace spec\Akeneo\Crowdin\Api; |
4
|
|
|
|
5
|
|
|
use Akeneo\Crowdin\Client; |
6
|
|
|
use GuzzleHttp\Client as HttpClient; |
7
|
|
|
use GuzzleHttp\Psr7\Request; |
8
|
|
|
use GuzzleHttp\Psr7\Response; |
9
|
|
|
use PhpSpec\ObjectBehavior; |
10
|
|
|
use Prophecy\Argument; |
11
|
|
|
|
12
|
|
|
class DownloadSpec extends ObjectBehavior |
13
|
|
|
{ |
14
|
|
|
public function let(Client $client, HttpClient $http) |
15
|
|
|
{ |
16
|
|
|
$client->getHttpClient()->willReturn($http); |
17
|
|
|
$client->getProjectIdentifier()->willReturn('akeneo'); |
18
|
|
|
$client->getProjectApiKey()->willReturn('1234'); |
19
|
|
|
$this->beConstructedWith($client); |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
public function it_should_be_an_api() |
23
|
|
|
{ |
24
|
|
|
$this->shouldBeAnInstanceOf('Akeneo\Crowdin\Api\AbstractApi'); |
25
|
|
|
} |
26
|
|
|
|
27
|
|
|
public function it_has_a_package_with_all_languages() |
28
|
|
|
{ |
29
|
|
|
$this->setPackage('all.zip'); |
30
|
|
|
$this->getPackage()->shouldReturn('all.zip'); |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
public function it_has_a_package_with_one_language() |
34
|
|
|
{ |
35
|
|
|
$this->setPackage('fr.zip'); |
36
|
|
|
$this->getPackage()->shouldReturn('fr.zip'); |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
public function it_has_a_copy_destination() |
40
|
|
|
{ |
41
|
|
|
$this->setCopyDestination('/tmp/'); |
42
|
|
|
$this->getCopyDestination()->shouldReturn('/tmp/'); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
View Code Duplication |
public function it_downloads_all_translations(HttpClient $http, Request $request, Response $response) |
|
|
|
|
46
|
|
|
{ |
47
|
|
|
$this->setCopyDestination('/tmp'); |
48
|
|
|
$this->setPackage('all.zip'); |
49
|
|
|
$http->get('project/akeneo/download/all.zip?key=1234', ["sink" => "/tmp/all.zip"])->willReturn($response); |
50
|
|
|
$response->getBody()->willReturn('bin'); |
51
|
|
|
$this->execute()->shouldBe('bin'); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
View Code Duplication |
public function it_downloads_french_translations(HttpClient $http, Request $request, Response $response) |
|
|
|
|
55
|
|
|
{ |
56
|
|
|
$this->setCopyDestination('/tmp'); |
57
|
|
|
$this->setPackage('fr.zip'); |
58
|
|
|
$http->get('project/akeneo/download/fr.zip?key=1234', ["sink" => "/tmp/fr.zip"])->willReturn($response); |
59
|
|
|
$response->getBody()->willReturn('bin'); |
60
|
|
|
$this->execute()->shouldBe('bin'); |
61
|
|
|
} |
62
|
|
|
} |
63
|
|
|
|
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.