Allowing load step to set pipe sizes to avoid 'Giving up adding record to pipe' in easypost tracker creation; Make status never have current > total;

This commit is contained in:
2022-11-09 08:43:05 -06:00
parent 1e09931218
commit 2975b90505
8 changed files with 272 additions and 22 deletions

View File

@ -0,0 +1,86 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2022. Kingsrook, LLC
* 651 N Broad St Ste 205 # 6917 | Middletown DE 19709 | United States
* contact@kingsrook.com
* https://github.com/Kingsrook/
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.kingsrook.qqq.backend.core.actions.async;
import java.util.UUID;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
/*******************************************************************************
** Unit test for AsyncJobCallback
*******************************************************************************/
class AsyncJobCallbackTest
{
/*******************************************************************************
**
*******************************************************************************/
@Test
void test()
{
AsyncJobStatus asyncJobStatus = new AsyncJobStatus();
AsyncJobCallback asyncJobCallback = new AsyncJobCallback(UUID.randomUUID(), asyncJobStatus);
/////////////////////////////////////////////////////
// make sure current never goes greater than total //
/////////////////////////////////////////////////////
asyncJobCallback.updateStatus(3, 2);
assertEquals(2, asyncJobStatus.getTotal());
assertEquals(2, asyncJobStatus.getCurrent());
asyncJobCallback.updateStatus("With Message", 3, 2);
assertEquals(2, asyncJobStatus.getTotal());
assertEquals(2, asyncJobStatus.getCurrent());
//////////////////////////
// reset, then count up //
//////////////////////////
asyncJobCallback.updateStatus(1, 3);
assertEquals(3, asyncJobStatus.getTotal());
assertEquals(1, asyncJobStatus.getCurrent());
asyncJobCallback.incrementCurrent();
assertEquals(2, asyncJobStatus.getCurrent());
asyncJobCallback.incrementCurrent();
assertEquals(3, asyncJobStatus.getCurrent());
/////////////////////////////////
// try to go to 4 - stay at 3. //
/////////////////////////////////
asyncJobCallback.incrementCurrent();
assertEquals(3, asyncJobStatus.getCurrent());
///////////
// reset //
///////////
asyncJobCallback.updateStatus(1, 3);
assertEquals(3, asyncJobStatus.getTotal());
assertEquals(1, asyncJobStatus.getCurrent());
asyncJobCallback.incrementCurrent(4);
assertEquals(3, asyncJobStatus.getCurrent());
}
}