All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.camunda.zeebe.process.test.assertions.FormAssert Maven / Gradle / Ivy

The newest version!
/*
 * Copyright © 2021 camunda services GmbH ([email protected])
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.camunda.zeebe.process.test.assertions;

import static org.assertj.core.api.Assertions.assertThat;

import io.camunda.zeebe.client.api.response.Form;
import io.camunda.zeebe.process.test.filters.RecordStream;
import io.camunda.zeebe.process.test.filters.StreamFilter;
import io.camunda.zeebe.protocol.record.Record;
import org.assertj.core.api.AbstractAssert;

/**
 * Assertions for {@link Form} instances.
 *
 * 

These asserts can be obtained via: * *

{@code
 * final DeploymentEvent deploymentEvent =
 *         client.newDeployCommand().addResourceFile(file).send().join();
 *
 * final FormAssert formAssert =
 *         assertThat(deploymentEvent)
 *             .extractingFormByFormId(FORM_ID);
 * }
*/ public class FormAssert extends AbstractAssert { private final RecordStream recordStream; protected FormAssert(final Form form, final RecordStream recordStream) { super(form, FormAssert.class); this.recordStream = recordStream; } public FormAssert hasFormId(final String expectedFormId) { assertThat(expectedFormId).isNotEmpty(); final String actualFormId = actual.getFormId(); assertThat(actualFormId) .withFailMessage( "Expected form id to be '%s' but was '%s' instead.", expectedFormId, actualFormId) .isEqualTo(expectedFormId); return this; } public FormAssert hasFormKey(final long expectedFormKey) { assertThat(expectedFormKey).isPositive(); final long actualFormKey = actual.getFormKey(); assertThat(actualFormKey) .withFailMessage( "Expected form id to be '%d' but was '%d' instead.", expectedFormKey, actualFormKey) .isEqualTo(expectedFormKey); return this; } /** * Asserts that the form has the given version * * @param expectedVersion version to check * @return this {@link FormAssert} */ public FormAssert hasVersion(final long expectedVersion) { final long actualVersion = actual.getVersion(); assertThat(actualVersion) .withFailMessage( "Expected version to be %d but was %d instead", expectedVersion, actualVersion) .isEqualTo(expectedVersion); return this; } /** * Asserts that the form has the given resource name * * @param expectedResourceName resource name to check * @return this {@link FormAssert} */ public FormAssert hasResourceName(final String expectedResourceName) { assertThat(expectedResourceName).isNotEmpty(); final String actualResourceName = actual.getResourceName(); assertThat(actualResourceName) .withFailMessage( "Expected resource name to be '%s' but was '%s' instead.", expectedResourceName, actualResourceName) .isEqualTo(expectedResourceName); return this; } /** * Finds if a form is created. * * @param formId the id of the form * @return this {@link FormAssert} */ public FormAssert isFormCreated(final String formId) { assertThat(formId).isNotEmpty(); final boolean isCreated = StreamFilter.forms(recordStream).stream() .map(Record::getValue) .anyMatch(form -> formId.equals(form.getFormId())); assertThat(isCreated) .withFailMessage( "Expected to find a form with id to be '%s', but no form with the provided id was found.", formId) .isTrue(); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy