Completed
Push — master ( 61852c...9e945f )
by Joschi
05:39
created

AbstractObjectMutator   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 51
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 71.43%

Importance

Changes 2
Bugs 0 Features 2
Metric Value
c 2
b 0
f 2
dl 0
loc 51
ccs 10
cts 14
cp 0.7143
rs 10
wmc 8
lcom 0
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
C __call() 0 23 7
1
<?php
2
3
/**
4
 * apparat-dev
5
 *
6
 * @category    Apparat
7
 * @package     Apparat\Dev
8
 * @subpackage  Apparat\Dev\Infrastructure
9
 * @author      Joschi Kuphal <[email protected]> / @jkphl
10
 * @copyright   Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl
11
 * @license     http://opensource.org/licenses/MIT The MIT License (MIT)
12
 */
13
14
/***********************************************************************************
15
 *  The MIT License (MIT)
16
 *
17
 *  Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl
18
 *
19
 *  Permission is hereby granted, free of charge, to any person obtaining a copy of
20
 *  this software and associated documentation files (the "Software"), to deal in
21
 *  the Software without restriction, including without limitation the rights to
22
 *  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
23
 *  the Software, and to permit persons to whom the Software is furnished to do so,
24
 *  subject to the following conditions:
25
 *
26
 *  The above copyright notice and this permission notice shall be included in all
27
 *  copies or substantial portions of the Software.
28
 *
29
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
31
 *  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
32
 *  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
33
 *  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
34
 *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
 ***********************************************************************************/
36
37
namespace Apparat\Dev\Infrastructure\Mutator;
38
39
use Apparat\Dev\Ports\RuntimeException;
40
use Apparat\Object\Domain\Model\Object\ObjectInterface;
41
use Faker\Generator;
42
43
/**
44
 * Abstract object mutator
45
 *
46
 * @package Apparat\Server
47
 * @subpackage Apparat\Dev\Infrastructure\Mutator
48
 */
49
abstract class AbstractObjectMutator implements ObjectMutatorInterface
50
{
51
    /**
52
     * Fake data generator
53
     *
54
     * @var Generator
55
     */
56
    protected $generator;
57
58
    /**
59
     * Abstract object mutator constructor
60
     *
61
     * @param Generator $generator
62
     */
63 1
    public function __construct(Generator $generator)
64
    {
65 1
        $this->generator = $generator;
66 1
    }
67
68
    /**
69
     * Magic setter for randomization of setter calls
70
     *
71
     * @param string $method Method name
72
     * @param array $arguments Arguments
73
     * @return ObjectInterface Object
74
     * @throws RuntimeException If the randomized setter is invalid
75
     */
76 1
    public function __call($method, array $arguments)
77
    {
78
        // If the randomized setter is invalid
79 1
        $setterMethod = 'set'.substr($method, 9);
80 1
        if (strncmp('setRandom', $method, 9) || !is_callable([$this, $setterMethod])) {
81
            throw new RuntimeException(
82
                sprintf('Invalid randomized setter "%s"', $setterMethod),
83
                RuntimeException::INVALID_RANDOMIZED_SETTER
84
            );
85
        }
86
87
        // If no object is given
88 1
        if (!count($arguments) || !($arguments[0] instanceof ObjectInterface)) {
89
            throw new RuntimeException('Invalid mutator subject', RuntimeException::INVALID_MUTATOR_SUBJECT);
90
        }
91
92
        // If the setter call should be randomized
93 1
        if ((count($arguments) > 1) && (rand(0, 100) > max(0, min(1, floatval($arguments[1]))) * 100)) {
94 1
            return $arguments[0];
95
        }
96
97 1
        return $this->$setterMethod($arguments[0]);
98
    }
99
}