test that was opened is flipped to true when carrie first sees the bid
This commit is contained in:
parent
b33c6c909a
commit
6dbb92e7b6
2 changed files with 25 additions and 3 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
namespace Tests\Unit\Bid\UseCases;
|
||||
|
||||
use FreightQuote\Bid\Bid;
|
||||
use FreightQuote\Bid\UseCases\GetBidForCarrier;
|
||||
use FreightQuote\Bid\UseCases\GetBidForCarrierRequest;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
|
@ -10,13 +11,30 @@ use Tests\Fakes\Bid\FakeBidRepository;
|
|||
|
||||
class GetBidForCarrierTest extends TestCase
|
||||
{
|
||||
private FakeBidRepository $bidRepo;
|
||||
private GetBidForCarrier $useCase;
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->bidRepo = new FakeBidRepository();
|
||||
$this->useCase = new GetBidForCarrier($this->bidRepo);
|
||||
}
|
||||
|
||||
public function test_nonexistant_bid_throws_error(): void
|
||||
{
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
$bidId = '12345abcd';
|
||||
$dto = new GetBidForCarrierRequest($bidId);
|
||||
$bidRepo = new FakeBidRepository();
|
||||
$useCase = new GetBidForCarrier($bidRepo);
|
||||
$foundBid = $useCase->execute($dto);
|
||||
$foundBid = $this->useCase->execute($dto);
|
||||
}
|
||||
|
||||
public function test_first_view_flips_opened_flag(): void
|
||||
{
|
||||
$bidId = 'abcd';
|
||||
$this->bidRepo->save(new Bid($bidId, 0, 0, false));
|
||||
$foundBid = $this->useCase->execute(
|
||||
new GetBidForCarrierRequest($bidId)
|
||||
);
|
||||
$this->assertEquals(true, $foundBid->getWasOpened());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue