Total Complexity | 51 |
Total Lines | 360 |
Duplicated Lines | 0 % |
Changes | 19 | ||
Bugs | 3 | Features | 2 |
Complex classes like FeatureContext often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use FeatureContext, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
45 | class FeatureContext implements Context |
||
46 | { |
||
47 | protected $engine; |
||
48 | |||
49 | /** @var Customer */ |
||
50 | protected $customer; |
||
51 | /** |
||
52 | * @var \hiqdev\php\billing\price\PriceInterface|\hiqdev\php\billing\charge\FormulaChargeModifierTrait |
||
|
|||
53 | * |
||
54 | * TODO: FormulaChargeModifierTrait::setFormula() must be moved to interface |
||
55 | */ |
||
56 | protected $price; |
||
57 | |||
58 | /** @var string */ |
||
59 | protected $formula; |
||
60 | |||
61 | /** |
||
62 | * @var \hiqdev\php\billing\action\ActionInterface|\hiqdev\php\billing\action\AbstractAction |
||
63 | */ |
||
64 | protected $action; |
||
65 | /** |
||
66 | * @var ChargeInterface[] |
||
67 | */ |
||
68 | protected $charges; |
||
69 | |||
70 | /** @var \Money\MoneyParser */ |
||
71 | protected $moneyParser; |
||
72 | |||
73 | /** @var string */ |
||
74 | protected $expectedError; |
||
75 | |||
76 | /** |
||
77 | * Initializes context. |
||
78 | */ |
||
79 | public function __construct() |
||
80 | { |
||
81 | error_reporting(E_ALL & ~E_DEPRECATED); |
||
82 | date_default_timezone_set('UTC'); |
||
83 | $this->customer = new Customer(null, 'somebody'); |
||
84 | $this->moneyParser = new DecimalMoneyParser(new ISOCurrencies()); |
||
85 | $this->plan = new Plan(null, 'plan', $this->customer); |
||
86 | $this->sale = new Sale(null, Target::any(), $this->customer, $this->plan, new DateTimeImmutable('2000-01-01')); |
||
87 | $this->billing = SimpleBilling::fromSale($this->sale); |
||
88 | } |
||
89 | |||
90 | /** |
||
91 | * @Given /(\S+) (\S+) price is ([0-9.]+) (\w+) per (\w+)(?: includes ([\d.]+))?/ |
||
92 | */ |
||
93 | public function priceIs($target, $type, $sum, $currency, $unit, $quantity = 0) |
||
94 | { |
||
95 | $type = new Type(Type::ANY, $type); |
||
96 | $target = new Target(Target::ANY, $target); |
||
97 | $quantity = Quantity::create($unit, $quantity); |
||
98 | $sum = $this->moneyParser->parse($sum, new Currency($currency)); |
||
99 | $this->setPrice(new SinglePrice(null, $type, $target, null, $quantity, $sum)); |
||
100 | } |
||
101 | |||
102 | /** |
||
103 | * @Given /(\S+) progressive price for (\S+) is +(\S+) (\S+) per (\S+) (\S+) (\S+) (\S+)$/ |
||
104 | */ |
||
105 | public function progressivePrice($target, $type, $price, $currency, $unit, $sign, $quantity, $perUnit): void |
||
130 | ] |
||
131 | ); |
||
132 | } |
||
133 | } |
||
134 | |||
135 | /** |
||
136 | * @Given /^create progressive price/ |
||
137 | */ |
||
138 | public function createProgressivePrices() |
||
139 | { |
||
140 | foreach ($this->progressivePrice as $type => $price) { |
||
141 | $type = new Type(Type::ANY, $type); |
||
142 | $target = new Target(Target::ANY, $price['target']); |
||
143 | $quantity = Quantity::create(Unit::create($price['unit']), 1); |
||
144 | $money = PriceHelper::buildMoney($price['price'], $price['currency']); |
||
145 | $this->setPrice(new ProgressivePrice(null, $type, $target, $quantity, $money, $price['thresholds'])); |
||
146 | } |
||
147 | } |
||
148 | |||
149 | /** |
||
150 | * @Given /sale close time is ([0-9.-]+)/ |
||
151 | */ |
||
152 | public function setActionCloseTime($closeTime): void |
||
153 | { |
||
154 | $this->sale->close(new DateTimeImmutable($closeTime)); |
||
155 | } |
||
156 | |||
157 | private function setPrice($price) |
||
158 | { |
||
159 | $this->price = $price; |
||
160 | $ref = new \ReflectionClass($this->plan); |
||
161 | $prop = $ref->getProperty('prices'); |
||
162 | $prop->setAccessible(true); |
||
163 | $prop->setValue($this->plan, [$price]); |
||
164 | } |
||
165 | |||
166 | /** |
||
167 | * @Given /action is (\S+) ([\w_,]+)(?: ([0-9.]+) (\S+))?(?: in (.+))?/ |
||
168 | */ |
||
169 | public function actionIs(string $target, string $type, float $amount, string $unit, ?string $date = null): void |
||
170 | { |
||
171 | $type = new Type(Type::ANY, $type); |
||
172 | $target = new Target(Target::ANY, $target); |
||
173 | $time = new DateTimeImmutable($date); |
||
174 | if ($this->sale->getCloseTime() instanceof DateTimeImmutable) { |
||
175 | $amount = $amount * $this->getFractionOfMonth( |
||
176 | $time, $time, $this->sale->getCloseTime() |
||
177 | ); |
||
178 | } |
||
179 | $quantity = Quantity::create($unit, $amount); |
||
180 | |||
181 | $this->action = new Action(null, $type, $target, $quantity, $this->customer, $time); |
||
182 | } |
||
183 | |||
184 | private function getFractionOfMonth(DateTimeImmutable $month, DateTimeImmutable $startTime, DateTimeImmutable $endTime): float |
||
185 | { |
||
186 | // SQL function: days2quantity() |
||
187 | |||
188 | $month = $month->modify('first day of this month 00:00'); |
||
189 | if ($startTime < $month) { |
||
190 | $startTime = $month; |
||
191 | } |
||
192 | if ($endTime > $month->modify('first day of next month 00:00')) { |
||
193 | $endTime = $month->modify('first day of next month 00:00'); |
||
194 | } |
||
195 | |||
196 | $secondsInMonth = $month->format('t') * 24 * 60 * 60; |
||
197 | |||
198 | return ($endTime->getTimestamp() - $startTime->getTimestamp()) / $secondsInMonth; |
||
199 | } |
||
200 | |||
201 | /** |
||
202 | * @Given /formula is (.+)/ |
||
203 | */ |
||
204 | public function formulaIs(string $formula): void |
||
205 | { |
||
206 | $this->formula = $formula; |
||
207 | } |
||
208 | |||
209 | /** |
||
210 | * @Given /formula continues (.+)/ |
||
211 | */ |
||
212 | public function formulaContinues(string $formula): void |
||
213 | { |
||
214 | $this->formula .= "\n" . $formula; |
||
215 | } |
||
216 | |||
217 | protected function getFormulaEngine() |
||
218 | { |
||
219 | if ($this->engine === null) { |
||
220 | $this->engine = new FormulaEngine(new ArrayCachePool()); |
||
221 | } |
||
222 | |||
223 | return $this->engine; |
||
224 | } |
||
225 | |||
226 | /** |
||
227 | * @When /action date is (.+)/ |
||
228 | * @throws Exception |
||
229 | */ |
||
230 | public function actionDateIs(string $date): void |
||
231 | { |
||
232 | $this->action->setTime(new DateTimeImmutable($date)); |
||
233 | } |
||
234 | |||
235 | /** |
||
236 | * @Given /^client rejected service at (.+)$/ |
||
237 | */ |
||
238 | public function actionCloseDateIs(string $close_date): void |
||
239 | { |
||
240 | $this->sale->close(new DateTimeImmutable($close_date)); |
||
241 | } |
||
242 | |||
243 | /** |
||
244 | * @Then /^error is$/m |
||
245 | */ |
||
246 | public function multilineErrorIs(\Behat\Gherkin\Node\PyStringNode $value) |
||
247 | { |
||
248 | $this->expectedError = $value->getRaw(); |
||
249 | } |
||
250 | |||
251 | /** |
||
252 | * @Then /^error is (.+)$/ |
||
253 | * |
||
254 | * @param string $error |
||
255 | */ |
||
256 | public function errorIs($error): void |
||
257 | { |
||
258 | $this->expectedError = $error; |
||
259 | } |
||
260 | |||
261 | /** |
||
262 | * @Then /^(\w+) charge is ?(?: with ?)?$/ |
||
263 | */ |
||
264 | public function emptyCharge(string $numeral): void |
||
267 | } |
||
268 | |||
269 | /** |
||
270 | * @Then /^(\w+) charge is (\S+) +(-?[0-9.]+) ([A-Z]{3})(?: for ([\d.]+)? (\w+)?)?(?: with (.+)?)?$/ |
||
271 | */ |
||
272 | public function chargeWithSum($numeral, $type = null, $sum = null, $currency = null, $qty = null, $unit = null, $events = null): void |
||
273 | { |
||
274 | $this->chargeIs($numeral, $type, $sum, $currency, null, $qty, $unit, $events); |
||
275 | } |
||
276 | |||
277 | /** |
||
278 | * @Then /^(\w+) charge is (\S+) +(-?[0-9.]+) ([A-Z]{3}) reason ([\w]+)(?: with (.+)?)?$/ |
||
279 | */ |
||
280 | public function chargeWithReason($numeral, $type = null, $sum = null, $currency = null, $reason = null, $events = null): void |
||
281 | { |
||
282 | $this->chargeIs($numeral, $type, $sum, $currency, $reason, null, null, $events); |
||
283 | } |
||
284 | |||
285 | public function chargeIs($numeral, $type = null, $sum = null, $currency = null, $reason = null, $qty = null, $unit = null, $events = null): void |
||
286 | { |
||
287 | $no = $this->ensureNo($numeral); |
||
288 | if ($no === 0) { |
||
289 | $this->calculatePrice(); |
||
290 | } |
||
291 | $this->assertCharge($this->charges[$no] ?? null, $type, $sum, $currency, $reason, $qty, $unit, $events); |
||
292 | } |
||
293 | |||
294 | /** |
||
295 | * @When /^calculating charges$/ |
||
296 | */ |
||
297 | public function calculatePrice(): void |
||
298 | { |
||
299 | $this->expectError(function () { |
||
300 | if ($this->formula !== null) { |
||
301 | $this->price->setModifier($this->getFormulaEngine()->build($this->formula)); |
||
302 | } |
||
303 | $this->charges = $this->billing->calculateCharges($this->action); |
||
304 | }); |
||
305 | } |
||
306 | |||
307 | public function expectError(Closure $closure): void |
||
308 | { |
||
309 | try { |
||
310 | call_user_func($closure); |
||
311 | } catch (Exception $e) { |
||
312 | if ($this->isExpectedError($e)) { |
||
313 | $this->expectedError = null; |
||
314 | } else { |
||
315 | throw $e; |
||
316 | } |
||
317 | } |
||
318 | if ($this->expectedError) { |
||
319 | throw new Exception('failed receive expected exception'); |
||
320 | } |
||
321 | } |
||
322 | |||
323 | protected function isExpectedError(Exception $e): bool |
||
324 | { |
||
325 | return str_starts_with($e->getMessage(), $this->expectedError); |
||
326 | } |
||
327 | |||
328 | /** |
||
329 | * @param ChargeInterface|Charge|null $charge |
||
330 | * @param string|null $type |
||
331 | * @param string|null $sum |
||
332 | * @param string|null $currency |
||
333 | * @param string|null $reason |
||
334 | * @param string|null $qty |
||
335 | * @param string|null $unit |
||
336 | * @param string|null $events |
||
337 | */ |
||
338 | public function assertCharge($charge, $type, $sum, $currency, $reason, $qty, $unit, $events): void |
||
339 | { |
||
340 | if (empty($type) && empty($sum) && empty($currency)) { |
||
341 | is_null($charge) || Assert::assertSame('0', $charge->getSum()->getAmount()); |
||
342 | return; |
||
343 | } |
||
344 | Assert::assertInstanceOf(Charge::class, $charge); |
||
345 | Assert::assertSame($type, $this->normalizeType($charge->getType()->getName()), sprintf( |
||
346 | 'Charge type %s does not match expected %s', $type, $this->normalizeType($charge->getType()->getName()) |
||
347 | )); |
||
348 | $money = $this->moneyParser->parse($sum, new Currency($currency)); |
||
349 | Assert::assertTrue($money->equals($charge->getSum()), sprintf( |
||
350 | 'Charge sum %s does not match expected %s', $charge->getSum()->getAmount(), $money->getAmount() |
||
351 | )); |
||
352 | if ($reason !== null) { |
||
353 | Assert::assertSame($reason, $charge->getComment(), |
||
354 | sprintf('Charge comment %s does not match expected %s', $charge->getComment(), $reason) |
||
355 | ); |
||
356 | } |
||
357 | if ($qty !== null && $unit !== null) { |
||
358 | Assert::assertEqualsWithDelta($qty, $charge->getUsage()->getQuantity(), 1e-7, |
||
359 | sprintf('Charge quantity "%s" does not match expected "%s"', $charge->getUsage()->getQuantity(), $qty) |
||
360 | ); |
||
361 | Assert::assertSame($unit, $charge->getUsage()->getUnit()->getName(), |
||
362 | sprintf('Charge unit "%s" does not match expected "%s"', $charge->getUsage()->getUnit()->getName(), $unit) |
||
363 | ); |
||
364 | } |
||
365 | if ($events !== null) { |
||
366 | $storedEvents = $charge->releaseEvents(); |
||
367 | foreach (array_map('trim', explode(',', $events)) as $eventClass) { |
||
368 | foreach ($storedEvents as $storedEvent) { |
||
369 | $eventReflection = new \ReflectionObject($storedEvent); |
||
370 | if ($eventReflection->getShortName() === $eventClass) { |
||
371 | continue 2; |
||
372 | } |
||
373 | } |
||
374 | |||
375 | Assert::fail(sprintf('Event of class %s is not present is charge', $eventClass)); |
||
376 | } |
||
377 | } else { |
||
378 | Assert::assertEmpty($charge->releaseEvents(), 'Failed asserting that charge does not have events'); |
||
379 | } |
||
380 | } |
||
381 | |||
382 | private function normalizeType($string): string |
||
393 | } |
||
394 | } |
||
395 | |||
396 | private function ensureNo(string $numeral): int |
||
397 | { |
||
398 | $formatter = new NumberFormatter('en_EN', NumberFormatter::SPELLOUT); |
||
399 | $result = $formatter->parse($numeral); |
||
400 | if ($result === false) { |
||
401 | throw new Exception("Wrong numeral '$numeral'"); |
||
402 | } |
||
403 | |||
404 | return --$result; |
||
405 | } |
||
406 | } |
||
407 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths