blob: 63f3afb92909894b80b10335c6531cd0a09287f1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.flink.statefun.e2e.smoke.embedded;
import org.apache.flink.statefun.e2e.common.StatefulFunctionsAppContainers;
import org.apache.flink.statefun.e2e.smoke.SmokeRunner;
import org.apache.flink.statefun.e2e.smoke.SmokeRunnerParameters;
import org.junit.Test;
public class SmokeVerificationEmbeddedE2E {
private static final int NUM_WORKERS = 2;
@Test(timeout = 1_000 * 60 * 10)
public void run() throws Throwable {
SmokeRunnerParameters parameters = new SmokeRunnerParameters();
parameters.setNumberOfFunctionInstances(128);
parameters.setMessageCount(100_000);
parameters.setMaxFailures(1);
parameters.setAsyncOpSupported(true);
parameters.setDelayCancellationOpSupported(true);
StatefulFunctionsAppContainers.Builder builder =
StatefulFunctionsAppContainers.builder("flink-statefun-cluster", NUM_WORKERS);
SmokeRunner.run(parameters, builder);
}
}