blob: 9d416c67ce54cd772ca8fece383a033176bfc8c8 [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.ignite.internal.runner.app;
import static org.apache.ignite.internal.testframework.matchers.CompletableFutureMatcher.willCompleteSuccessfully;
import static org.hamcrest.MatcherAssert.assertThat;
import java.nio.file.Path;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgnitionManager;
import org.apache.ignite.app.IgniteCliRunner;
import org.apache.ignite.internal.testframework.WorkDirectory;
import org.apache.ignite.internal.testframework.WorkDirectoryExtension;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
/**
* Tests the start ignite nodes.
*/
@ExtendWith(WorkDirectoryExtension.class)
public class IgniteCliRunnerTest {
private static final String NODE_NAME = "node";
@WorkDirectory
private Path workDir;
@AfterEach
void tearDown() {
IgnitionManager.stop(NODE_NAME);
}
/** TODO: Replace this test by full integration test on the cli side IGNITE-15097. */
@Test
public void smokeTestArgs() throws Exception {
Path configPath = Path.of(IgniteCliRunnerTest.class.getResource("/ignite-config.json").toURI());
CompletableFuture<Ignite> ign = IgniteCliRunner.start(
"--config-file", configPath.toAbsolutePath().toString(),
"--work-dir", workDir.resolve("node").toAbsolutePath().toString(),
NODE_NAME
);
IgnitionManager.init(NODE_NAME, List.of(NODE_NAME), "cluster");
assertThat(ign, willCompleteSuccessfully());
}
@Test
public void smokeTestArgsNullConfig() {
CompletableFuture<Ignite> ign = IgniteCliRunner.start(
"--work-dir", workDir.resolve("node").toAbsolutePath().toString(),
NODE_NAME
);
IgnitionManager.init(NODE_NAME, List.of(NODE_NAME), "cluster");
assertThat(ign, willCompleteSuccessfully());
}
}