Skip to content

Commit b75421a

Browse files
authored
HP-1928: array => string type (#64)
1 parent 1d91fdd commit b75421a

File tree

5 files changed

+14
-24
lines changed

5 files changed

+14
-24
lines changed

src/sale/Sale.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ public function setId($id)
129129
$this->id = $id;
130130
}
131131

132-
public function getData()
132+
public function getData(): ?array
133133
{
134-
return $this->data;
134+
return !empty($this->data) ? $this->data : null;
135135
}
136136

137137
public function jsonSerialize(): array

src/sale/SaleCreationDto.php

+2
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,6 @@ class SaleCreationDto
2828
public $closeTime;
2929

3030
public $data;
31+
32+
public $reason;
3133
}

src/sale/SaleFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class SaleFactory implements SaleFactoryInterface
2323
*/
2424
public function create(SaleCreationDto $dto)
2525
{
26-
$sale = new Sale($dto->id, $dto->target, $dto->customer, $dto->plan, $dto->time);
26+
$sale = new Sale($dto->id, $dto->target, $dto->customer, $dto->plan, $dto->time, $dto->data);
2727

2828
if ($dto->closeTime !== null) {
2929
$sale->close($dto->closeTime);

src/sale/SaleInterface.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ public function getTime();
6262
public function getCloseTime(): ?DateTimeImmutable;
6363

6464
/**
65-
* @return string|array|null
65+
* @return array|null
6666
*/
67-
public function getData();
67+
public function getData(): ?array;
6868

6969
/**
7070
* @param DateTimeImmutable $time

tests/behat/bootstrap/BillingContext.php

+7-19
Original file line numberDiff line numberDiff line change
@@ -188,14 +188,6 @@ public function setConsumption(string $type, int $amount, string $unit, string $
188188
$this->builder->setConsumption($type, $amount, $unit, $target, $time);
189189
}
190190

191-
/**
192-
* @Given /recalculate autotariff for target (\S+)( +at (\S+))?$/
193-
*/
194-
public function recalculateAutoTariff(string $target, string $time = null): void
195-
{
196-
$this->builder->clientSetAutoTariff($target, $time);
197-
}
198-
199191
/**
200192
* @Given /perform billing at (\S+)/
201193
*/
@@ -239,14 +231,14 @@ public function billWithTime($type, $sum, $currency, $quantity, $unit, $target,
239231
'quantity' => "$quantity $unit",
240232
'time' => $time,
241233
]);
242-
Assert::assertSame($type, $bill->getType()->getName(), "Bill type mismatch: expected $type, got {$bill->getType()->getName()}");
243-
Assert::assertSame($target, $bill->getTarget()->getFullName(), "Bill target mismatch: expected $target, got {$bill->getTarget()->getFullName()}");
244-
Assert::assertEquals(bcmul($sum, 100), $bill->getSum()->getAmount(), "Bill sum mismatch: expected $sum, got {$bill->getSum()->getAmount()}");
245-
Assert::assertSame($currency, $bill->getSum()->getCurrency()->getCode(), "Bill currency mismatch: expected $currency, got {$bill->getSum()->getCurrency()->getCode()}");
246-
Assert::assertEquals((float)$quantity, (float)$bill->getQuantity()->getQuantity(), "Bill quantity mismatch: expected $quantity, got {$bill->getQuantity()->getQuantity()}");
247-
Assert::assertEquals(strtolower($unit), strtolower($bill->getQuantity()->getUnit()->getName()), "Bill unit mismatch: expected $unit, got {$bill->getQuantity()->getUnit()->getName()}");
234+
Assert::assertSame($type, $bill->getType()->getName());
235+
Assert::assertSame($target, $bill->getTarget()->getFullName());
236+
Assert::assertEquals(bcmul($sum, 100), $bill->getSum()->getAmount());
237+
Assert::assertSame($currency, $bill->getSum()->getCurrency()->getCode());
238+
Assert::assertEquals((float)$quantity, (float)$bill->getQuantity()->getQuantity());
239+
Assert::assertEquals(strtolower($unit), strtolower($bill->getQuantity()->getUnit()->getName()));
248240
if ($time) {
249-
Assert::assertEquals(new DateTimeImmutable($time), $bill->getTime(), "Bill time mismatch: expected $time, got {$bill->getTime()->format(DATE_ATOM)}");
241+
Assert::assertEquals(new DateTimeImmutable($time), $bill->getTime());
250242
}
251243
}
252244

@@ -345,10 +337,6 @@ protected function prepareTime(string $time = null)
345337
if (strncmp($time, 'pY', 1) === 0) {
346338
return date(substr($time, 1), strtotime('-1 year'));
347339
}
348-
if (str_contains($time, 'pm')) {
349-
$time = str_replace('pm', 'm', $time);
350-
$time = date($time, strtotime('-1 month'));
351-
}
352340
if (strncmp($time, 'Y', 1) === 0) {
353341
return date($time);
354342
}

0 commit comments

Comments
 (0)