fix: skip exporting a deleted card

Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de>
This commit is contained in:
Elizabeth Danzberger
2025-01-24 14:01:34 -05:00
committed by grnd-alt
parent 023ab01e93
commit f7fa419105
2 changed files with 90 additions and 12 deletions

View File

@@ -62,6 +62,7 @@ class UserExport extends Command {
if ($board->getDeletedAt() > 0) { if ($board->getDeletedAt() > 0) {
continue; continue;
} }
$fullBoard = $this->boardMapper->find($board->getId(), true, true); $fullBoard = $this->boardMapper->find($board->getId(), true, true);
$data[$board->getId()] = $fullBoard->jsonSerialize(); $data[$board->getId()] = $fullBoard->jsonSerialize();
$stacks = $this->stackMapper->findAll($board->getId()); $stacks = $this->stackMapper->findAll($board->getId());
@@ -69,13 +70,16 @@ class UserExport extends Command {
$data[$board->getId()]['stacks'][$stack->getId()] = $stack->jsonSerialize(); $data[$board->getId()]['stacks'][$stack->getId()] = $stack->jsonSerialize();
$cards = $this->cardMapper->findAllByStack($stack->getId()); $cards = $this->cardMapper->findAllByStack($stack->getId());
foreach ($cards as $card) { foreach ($cards as $card) {
if ($card->getDeletedAt() > 0) {
continue;
}
$fullCard = $this->cardMapper->find($card->getId()); $fullCard = $this->cardMapper->find($card->getId());
$assignedUsers = $this->assignedUsersMapper->findAll($card->getId()); $assignedUsers = $this->assignedUsersMapper->findAll($card->getId());
$fullCard->setAssignedUsers($assignedUsers); $fullCard->setAssignedUsers($assignedUsers);
$cardDetails = new CardDetails($fullCard, $fullBoard); $cardDetails = new CardDetails($fullCard, $fullBoard);
$comments = $this->commentService->list($card->getId()); $comments = $this->commentService->list($card->getId());
$cardDetails->setCommentsCount(count($comments->getData())); $cardDetails->setCommentsCount(count($comments->getData()));
$cardJson = $cardDetails->jsonSerialize(); $cardJson = $cardDetails->jsonSerialize();

View File

@@ -74,16 +74,23 @@ class UserExportTest extends \Test\TestCase {
$board->setTitle('Board ' . $id); $board->setTitle('Board ' . $id);
return $board; return $board;
} }
public function getStack($id) { public function getStack($id) {
$stack = new Stack(); $stack = new Stack();
$stack->setId($id); $stack->setId($id);
$stack->setTitle('Stack ' . $id); $stack->setTitle('Stack ' . $id);
return $stack; return $stack;
} }
public function getCard($id) {
public function getCard($id, $deleted = false) {
$card = new Card(); $card = new Card();
$card->setId($id); $card->setId($id);
$card->setTitle('Card ' . $id); $card->setTitle('Card ' . $id);
if ($deleted) {
$card->setDeletedAt(time());
}
return $card; return $card;
} }
@@ -93,6 +100,7 @@ class UserExportTest extends \Test\TestCase {
$comment->setMessage('fake comment' . $id); $comment->setMessage('fake comment' . $id);
return $comment; return $comment;
} }
public function testExecute() { public function testExecute() {
$input = $this->createMock(InputInterface::class); $input = $this->createMock(InputInterface::class);
$input->expects($this->once())->method('getArgument')->with('user-id')->willReturn('admin'); $input->expects($this->once())->method('getArgument')->with('user-id')->willReturn('admin');
@@ -102,19 +110,12 @@ class UserExportTest extends \Test\TestCase {
$this->getBoard(1), $this->getBoard(1),
$this->getBoard(2), $this->getBoard(2),
]; ];
$this->boardService->expects($this->once())
->method('findAll')
->willReturn($boards);
$this->boardMapper->expects($this->exactly(count($boards)))
->method('find')
->willReturn($boards[0]);
$stacks = [ $stacks = [
$this->getStack(1), $this->getStack(1),
$this->getStack(2) $this->getStack(2)
]; ];
$this->stackMapper->expects($this->exactly(count($boards)))
->method('findAll')
->willReturn($stacks);
$cards = [ $cards = [
$this->getCard(1), $this->getCard(1),
$this->getCard(2), $this->getCard(2),
@@ -126,16 +127,89 @@ class UserExportTest extends \Test\TestCase {
$this->getComment(2), $this->getComment(2),
$this->getComment(3), $this->getComment(3),
]; ];
$this->commentService->expects($this->exactly(count($cards) * count($stacks) * count($boards)))->method('list')->willReturn(new DataResponse($comments));
$this->boardService->expects($this->once())
->method('findAll')
->willReturn($boards);
$this->boardMapper->expects($this->exactly(count($boards)))
->method('find')
->willReturn($boards[0]);
$this->stackMapper->expects($this->exactly(count($boards)))
->method('findAll')
->willReturn($stacks);
$this->commentService->expects($this->exactly(count($cards) * count($stacks) * count($boards)))
->method('list')
->willReturn(new DataResponse($comments));
$this->cardMapper->expects($this->exactly(count($boards) * count($stacks))) $this->cardMapper->expects($this->exactly(count($boards) * count($stacks)))
->method('findAllByStack') ->method('findAllByStack')
->willReturn($cards); ->willReturn($cards);
$this->cardMapper->expects($this->exactly(count($boards) * count($stacks) * count($cards))) $this->cardMapper->expects($this->exactly(count($boards) * count($stacks) * count($cards)))
->method('find') ->method('find')
->willReturn($cards[0]); ->willReturn($cards[0]);
$this->assignedUserMapper->expects($this->exactly(count($boards) * count($stacks) * count($cards))) $this->assignedUserMapper->expects($this->exactly(count($boards) * count($stacks) * count($cards)))
->method('findAll') ->method('findAll')
->willReturn([]); ->willReturn([]);
$result = $this->invokePrivate($this->userExport, 'execute', [$input, $output]);
self::assertEquals(0, $result);
}
public function testExecuteWithDeletedCard() {
$input = $this->createMock(InputInterface::class);
$input->expects($this->once())->method('getArgument')->with('user-id')->willReturn('admin');
$output = $this->createMock(OutputInterface::class);
$boards = [
$this->getBoard(1),
];
$stacks = [
$this->getStack(1),
];
$cards = [
$this->getCard(1),
$this->getCard(2, true),
];
$comments = [
$this->getComment(1),
];
$this->boardService->expects($this->once())
->method('findAll')
->willReturn($boards);
$this->boardMapper->expects($this->once())
->method('find')
->willReturn($boards[0]);
$this->stackMapper->expects($this->once())
->method('findAll')
->willReturn($stacks);
$this->commentService->expects($this->exactly(count($stacks) * count($boards)))
->method('list')
->willReturn(new DataResponse($comments));
$this->cardMapper->expects($this->once())
->method('findAllByStack')
->willReturn($cards);
$this->cardMapper->expects($this->once())
->method('find')
->willReturn($cards[0]);
$this->assignedUserMapper->expects($this->once())
->method('findAll')
->willReturn([]);
$result = $this->invokePrivate($this->userExport, 'execute', [$input, $output]); $result = $this->invokePrivate($this->userExport, 'execute', [$input, $output]);
self::assertEquals(0, $result); self::assertEquals(0, $result);
} }