Completed
Push — master ( 27649e...ef3cb7 )
by Dmitry
02:55
created

Test::__construct()   B

Complexity

Conditions 8
Paths 18

Size

Total Lines 42

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 43.4686

Importance

Changes 0
Metric Value
dl 0
loc 42
ccs 5
cts 28
cp 0.1786
rs 8.0035
c 0
b 0
f 0
cc 8
nc 18
nop 0
crap 43.4686
1
<?php
2
3
namespace Basis;
4
5
use Basis\Converter;
6
use Basis\Service;
7
use PHPUnit\Framework\TestCase;
8
use ReflectionProperty;
9
use Tarantool\Mapper\Mapper;
10
use Tarantool\Mapper\Pool;
11
12
abstract class Test extends TestCase
13
{
14
    use Toolkit;
15
16
    public $params = [];
17
    public $disableRemote = true;
18
19
    public $mocks = [];
20
    public $data = [];
21
22 2
    public function __construct()
23
    {
24
        parent::__construct();
25
26
        $this->app = new Test\Application($this);
27
28
        foreach ($this->mocks as [$method, $params, $result]) {
29
            $this->mock($method, $params)->willReturn($result);
0 ignored issues
show
Bug introduced by
The variable $method does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
Bug introduced by
The variable $params does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
Bug introduced by
The variable $result does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
30
        }
31
32
        $serviceData = [];
33
        foreach ($this->data as $space => $data) {
34
            [$service, $space] = explode('.', $space);
0 ignored issues
show
Bug introduced by
The variable $service seems only to be defined at a later point. Did you maybe move this code here without moving the variable definition?

This error can happen if you refactor code and forget to move the variable initialization.

Let’s take a look at a simple example:

function someFunction() {
    $x = 5;
    echo $x;
}

The above code is perfectly fine. Now imagine that we re-order the statements:

function someFunction() {
    echo $x;
    $x = 5;
}

In that case, $x would be read before it is initialized. This was a very basic example, however the principle is the same for the found issue.

Loading history...
35
            if (!array_key_exists($service, $serviceData)) {
0 ignored issues
show
Bug introduced by
The variable $service seems only to be defined at a later point. Did you maybe move this code here without moving the variable definition?

This error can happen if you refactor code and forget to move the variable initialization.

Let’s take a look at a simple example:

function someFunction() {
    $x = 5;
    echo $x;
}

The above code is perfectly fine. Now imagine that we re-order the statements:

function someFunction() {
    echo $x;
    $x = 5;
}

In that case, $x would be read before it is initialized. This was a very basic example, however the principle is the same for the found issue.

Loading history...
36
                $serviceData[$service] = [];
0 ignored issues
show
Bug introduced by
The variable $service seems only to be defined at a later point. Did you maybe move this code here without moving the variable definition?

This error can happen if you refactor code and forget to move the variable initialization.

Let’s take a look at a simple example:

function someFunction() {
    $x = 5;
    echo $x;
}

The above code is perfectly fine. Now imagine that we re-order the statements:

function someFunction() {
    echo $x;
    $x = 5;
}

In that case, $x would be read before it is initialized. This was a very basic example, however the principle is the same for the found issue.

Loading history...
37
            }
38
            $serviceData[$service][$space] = $data;
0 ignored issues
show
Bug introduced by
The variable $service seems only to be defined at a later point. Did you maybe move this code here without moving the variable definition?

This error can happen if you refactor code and forget to move the variable initialization.

Let’s take a look at a simple example:

function someFunction() {
    $x = 5;
    echo $x;
}

The above code is perfectly fine. Now imagine that we re-order the statements:

function someFunction() {
    echo $x;
    $x = 5;
}

In that case, $x would be read before it is initialized. This was a very basic example, however the principle is the same for the found issue.

Loading history...
39
        }
40
41
        $pool = $this->app->get(Pool::class);
42
        $property = new ReflectionProperty(Pool::class, 'resolvers');
43
        $property->setAccessible(true);
44
        $property->setValue($pool, []);
45
46
        $service = $this->app->get(Service::class)->getName();
47
        $pool->register($service, function() {
48
            return $this->app->get(Mapper::class);
49
        });
50
51 2
        $pool->registerResolver(function($service) use ($serviceData) {
52 2
            if (array_key_exists($service, $serviceData)) {
53 1
                return new Test\Mapper($this, $service);
54
            }
55 2
        });
56
57
        foreach ($this->data ?: [] as $space => $rows) {
58
            $this->data[$space] = [];
59
            foreach ($rows as $row) {
60
                $pool->getRepository($space)->create($row)->save();
61
            }
62
        }
63
    }
64
65 48
    public function setup()
66
    {
67 48
        $this->dispatch('tarantool.migrate');
68 48
    }
69
70 48
    public function tearDown()
71
    {
72 48
        $this->dispatch('tarantool.clear');
73 48
    }
74
75
    public $mockInstances = [];
76
77 5
    public function mock(string $job, array $params = [])
78
    {
79 5
        if (!array_key_exists($job, $this->mockInstances)) {
80 4
            $this->mockInstances[$job] = [];
81
        }
82
83 5
        $mock = new Test\Mock($this->get(Converter::class), $this, $params);
84
85 5
        $this->mockInstances[$job][] = $mock;
86
87 5
        return $mock;
88
    }
89
}
90