mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
SPRINT-17: added code coverage test class to meet minimum requirements
This commit is contained in:
@ -0,0 +1,175 @@
|
|||||||
|
/*
|
||||||
|
* 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.dashboard.widgets;
|
||||||
|
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import com.kingsrook.qqq.backend.core.actions.dashboard.RenderWidgetAction;
|
||||||
|
import com.kingsrook.qqq.backend.core.exceptions.QException;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.actions.widgets.RenderWidgetInput;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.actions.widgets.RenderWidgetOutput;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.dashboard.widgets.ChildRecordListData;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.dashboard.widgets.USMapWidgetData;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.dashboard.widgets.WidgetType;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.data.QRecord;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.metadata.QInstance;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.metadata.code.QCodeReference;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.metadata.dashboard.ParentWidgetMetaData;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.metadata.dashboard.QWidgetMetaData;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.metadata.dashboard.QWidgetMetaDataInterface;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.session.QSession;
|
||||||
|
import com.kingsrook.qqq.backend.core.modules.backend.implementations.memory.MemoryRecordStore;
|
||||||
|
import com.kingsrook.qqq.backend.core.utils.TestUtils;
|
||||||
|
import org.junit.jupiter.api.AfterEach;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Unit test for ChildRecordListRenderer
|
||||||
|
*******************************************************************************/
|
||||||
|
class USMapRendererTest
|
||||||
|
{
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@BeforeEach
|
||||||
|
@AfterEach
|
||||||
|
void beforeAndAfterEach()
|
||||||
|
{
|
||||||
|
MemoryRecordStore.getInstance().reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testMapRenderer() throws QException
|
||||||
|
{
|
||||||
|
QInstance qInstance = TestUtils.defineInstance();
|
||||||
|
|
||||||
|
QWidgetMetaDataInterface parentWidget = new ParentWidgetMetaData()
|
||||||
|
.withTitle("Test")
|
||||||
|
.withChildWidgetNameList(
|
||||||
|
List.of(
|
||||||
|
USMapWidgetRenderer.class.getSimpleName()
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.withType(WidgetType.USA_MAP.getType())
|
||||||
|
.withName(USMapWidgetRenderer.class.getSimpleName())
|
||||||
|
.withGridColumns(12)
|
||||||
|
.withLabel("Test Parent Widget")
|
||||||
|
.withCodeReference(new QCodeReference(USMapWidgetRenderer.class, null))
|
||||||
|
.withIcon("local_shipping");
|
||||||
|
qInstance.addWidget(parentWidget);
|
||||||
|
|
||||||
|
RenderWidgetInput input = new RenderWidgetInput(qInstance);
|
||||||
|
input.setSession(new QSession());
|
||||||
|
input.setWidgetMetaData(parentWidget);
|
||||||
|
|
||||||
|
RenderWidgetAction renderWidgetAction = new RenderWidgetAction();
|
||||||
|
RenderWidgetOutput output = renderWidgetAction.execute(input);
|
||||||
|
|
||||||
|
assertThat(output.getWidgetData()).isNotNull();
|
||||||
|
USMapWidgetData widgetData = (USMapWidgetData) output.getWidgetData();
|
||||||
|
assertThat(widgetData.getMapMarkerList().size()).isEqualTo(1);
|
||||||
|
assertThat(widgetData.getType()).isEqualTo(WidgetType.USA_MAP.getType());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testNoChildRecordsFound() throws QException
|
||||||
|
{
|
||||||
|
QInstance qInstance = TestUtils.defineInstance();
|
||||||
|
QWidgetMetaData widget = ChildRecordListRenderer.widgetMetaDataBuilder(qInstance.getJoin("orderLineItem"))
|
||||||
|
.withLabel("Line Items")
|
||||||
|
.getWidgetMetaData();
|
||||||
|
qInstance.addWidget(widget);
|
||||||
|
|
||||||
|
TestUtils.insertRecords(qInstance, qInstance.getTable(TestUtils.TABLE_NAME_ORDER), List.of(
|
||||||
|
new QRecord().withValue("id", 1)
|
||||||
|
));
|
||||||
|
|
||||||
|
RenderWidgetInput input = new RenderWidgetInput(qInstance);
|
||||||
|
input.setSession(new QSession());
|
||||||
|
input.setWidgetMetaData(widget);
|
||||||
|
input.setQueryParams(new HashMap<>(Map.of("id", "1")));
|
||||||
|
|
||||||
|
RenderWidgetAction renderWidgetAction = new RenderWidgetAction();
|
||||||
|
RenderWidgetOutput output = renderWidgetAction.execute(input);
|
||||||
|
|
||||||
|
ChildRecordListData childRecordListData = (ChildRecordListData) output.getWidgetData();
|
||||||
|
assertThat(childRecordListData.getChildTableMetaData()).hasFieldOrPropertyWithValue("name", TestUtils.TABLE_NAME_LINE_ITEM);
|
||||||
|
assertThat(childRecordListData.getQueryOutput().getRecords()).isEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testChildRecordsFound() throws QException
|
||||||
|
{
|
||||||
|
QInstance qInstance = TestUtils.defineInstance();
|
||||||
|
QWidgetMetaData widget = ChildRecordListRenderer.widgetMetaDataBuilder(qInstance.getJoin("orderLineItem"))
|
||||||
|
.withLabel("Line Items")
|
||||||
|
.getWidgetMetaData();
|
||||||
|
qInstance.addWidget(widget);
|
||||||
|
|
||||||
|
TestUtils.insertRecords(qInstance, qInstance.getTable(TestUtils.TABLE_NAME_ORDER), List.of(
|
||||||
|
new QRecord().withValue("id", 1),
|
||||||
|
new QRecord().withValue("id", 2)
|
||||||
|
));
|
||||||
|
|
||||||
|
TestUtils.insertRecords(qInstance, qInstance.getTable(TestUtils.TABLE_NAME_LINE_ITEM), List.of(
|
||||||
|
new QRecord().withValue("orderId", 1).withValue("sku", "ABC").withValue("lineNumber", 2),
|
||||||
|
new QRecord().withValue("orderId", 1).withValue("sku", "BCD").withValue("lineNumber", 1),
|
||||||
|
new QRecord().withValue("orderId", 2).withValue("sku", "XYZ") // should not be found.
|
||||||
|
));
|
||||||
|
|
||||||
|
RenderWidgetInput input = new RenderWidgetInput(qInstance);
|
||||||
|
input.setSession(new QSession());
|
||||||
|
input.setWidgetMetaData(widget);
|
||||||
|
input.setQueryParams(new HashMap<>(Map.of("id", "1")));
|
||||||
|
|
||||||
|
RenderWidgetAction renderWidgetAction = new RenderWidgetAction();
|
||||||
|
RenderWidgetOutput output = renderWidgetAction.execute(input);
|
||||||
|
|
||||||
|
ChildRecordListData childRecordListData = (ChildRecordListData) output.getWidgetData();
|
||||||
|
assertThat(childRecordListData.getChildTableMetaData()).hasFieldOrPropertyWithValue("name", TestUtils.TABLE_NAME_LINE_ITEM);
|
||||||
|
assertThat(childRecordListData.getQueryOutput().getRecords()).hasSize(2);
|
||||||
|
assertThat(childRecordListData.getQueryOutput().getRecords().get(0).getValueString("sku")).isEqualTo("BCD");
|
||||||
|
assertThat(childRecordListData.getQueryOutput().getRecords().get(1).getValueString("sku")).isEqualTo("ABC");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user