com.io7m.cardant.tests.server.controller.CAICmdItemSearchNextTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.io7m.cardant.tests Show documentation
Show all versions of com.io7m.cardant.tests Show documentation
Inventory system (Test suite)
The newest version!
/*
* Copyright © 2023 Mark Raynsford https://www.io7m.com
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package com.io7m.cardant.tests.server.controller;
import com.io7m.cardant.database.api.CADatabaseItemSearchType;
import com.io7m.cardant.database.api.CADatabaseQueriesItemsType;
import com.io7m.cardant.model.CAItemID;
import com.io7m.cardant.model.CAItemSummary;
import com.io7m.cardant.model.CAPage;
import com.io7m.cardant.protocol.inventory.CAICommandItemSearchNext;
import com.io7m.cardant.security.CASecurity;
import com.io7m.cardant.server.controller.command_exec.CACommandExecutionFailure;
import com.io7m.cardant.server.controller.inventory.CAICmdItemSearchNext;
import com.io7m.medrina.api.MMatchActionType.MMatchActionWithName;
import com.io7m.medrina.api.MMatchObjectType.MMatchObjectWithType;
import com.io7m.medrina.api.MMatchSubjectType.MMatchSubjectWithRolesAny;
import com.io7m.medrina.api.MPolicy;
import com.io7m.medrina.api.MRule;
import com.io7m.medrina.api.MRuleName;
import org.junit.jupiter.api.Test;
import java.time.OffsetDateTime;
import java.util.List;
import java.util.Set;
import static com.io7m.cardant.error_codes.CAStandardErrorCodes.errorApiMisuse;
import static com.io7m.cardant.error_codes.CAStandardErrorCodes.errorSecurityPolicyDenied;
import static com.io7m.cardant.security.CASecurityPolicy.INVENTORY_ITEMS;
import static com.io7m.cardant.security.CASecurityPolicy.READ;
import static com.io7m.cardant.security.CASecurityPolicy.ROLE_INVENTORY_ITEMS_READER;
import static com.io7m.medrina.api.MRuleConclusion.ALLOW;
import static java.time.ZoneOffset.UTC;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyNoMoreInteractions;
import static org.mockito.Mockito.when;
/**
* @see CAICmdItemSearchNext
*/
public final class CAICmdItemSearchNextTest
extends CACmdAbstractContract
{
private static final CAItemID ITEM_ID = CAItemID.random();
/**
* Searching for items requires the permission to READ to INVENTORY_ITEMS.
*
* @throws Exception On errors
*/
@Test
public void testNotAllowed0()
throws Exception
{
/* Arrange. */
final var context =
this.createContext();
/* Act. */
final var handler =
new CAICmdItemSearchNext();
final var ex =
assertThrows(CACommandExecutionFailure.class, () -> {
handler.execute(
context,
new CAICommandItemSearchNext());
});
/* Assert. */
assertEquals(errorSecurityPolicyDenied(), ex.errorCode());
}
/**
* Searching for items works.
*
* @throws Exception On errors
*/
@Test
public void testSearch()
throws Exception
{
/* Arrange. */
final var itemSearch =
mock(CADatabaseItemSearchType.class);
final var transaction =
this.transaction();
final var page =
new CAPage<>(
List.of(new CAItemSummary(
ITEM_ID,
"Item",
OffsetDateTime.now(UTC),
OffsetDateTime.now(UTC))
),
1,
1,
0L
);
when(itemSearch.pageNext(any()))
.thenReturn(page);
CASecurity.setPolicy(new MPolicy(List.of(
new MRule(
MRuleName.of("rule0"),
"",
ALLOW,
new MMatchSubjectWithRolesAny(Set.of(ROLE_INVENTORY_ITEMS_READER)),
new MMatchObjectWithType(INVENTORY_ITEMS.type()),
new MMatchActionWithName(READ)
)
)));
this.setRoles(ROLE_INVENTORY_ITEMS_READER);
final var context =
this.createContext();
final var session =
context.session();
session.setProperty(CADatabaseItemSearchType.class, itemSearch);
/* Act. */
final var handler = new CAICmdItemSearchNext();
handler.execute(context, new CAICommandItemSearchNext());
/* Assert. */
verify(itemSearch)
.pageNext(transaction);
verifyNoMoreInteractions(itemSearch);
verifyNoMoreInteractions(transaction);
}
/**
* Searching for items works.
*
* @throws Exception On errors
*/
@Test
public void testSearchMustBegin()
throws Exception
{
/* Arrange. */
final var items =
mock(CADatabaseQueriesItemsType.ItemSearchType.class);
final var itemSearch =
mock(CADatabaseItemSearchType.class);
final var transaction =
this.transaction();
when(transaction.queries(CADatabaseQueriesItemsType.ItemSearchType.class))
.thenReturn(items);
when(items.execute(any()))
.thenReturn(itemSearch);
CASecurity.setPolicy(new MPolicy(List.of(
new MRule(
MRuleName.of("rule0"),
"",
ALLOW,
new MMatchSubjectWithRolesAny(Set.of(ROLE_INVENTORY_ITEMS_READER)),
new MMatchObjectWithType(INVENTORY_ITEMS.type()),
new MMatchActionWithName(READ)
)
)));
this.setRoles(ROLE_INVENTORY_ITEMS_READER);
final var context =
this.createContext();
/* Act. */
final var handler = new CAICmdItemSearchNext();
final var ex =
assertThrows(CACommandExecutionFailure.class, () -> {
handler.execute(context, new CAICommandItemSearchNext());
});
/* Assert. */
assertEquals(errorApiMisuse(), ex.errorCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy