rpuch commented on code in PR #794: URL: https://github.com/apache/ignite-3/pull/794#discussion_r861717668
########## modules/cli/src/integrationTest/java/org/apache/ignite/cli/ItClusterCommandTest.java: ########## @@ -0,0 +1,256 @@ +/* + * 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.cli; + +import static java.nio.charset.StandardCharsets.UTF_8; +import static java.util.stream.Collectors.joining; +import static org.apache.ignite.internal.testframework.IgniteTestUtils.runAsync; +import static org.apache.ignite.internal.testframework.IgniteTestUtils.testNodeName; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.is; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import io.micronaut.context.ApplicationContext; +import io.micronaut.context.env.Environment; +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.PrintWriter; +import java.net.URI; +import java.net.URISyntaxException; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.List; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.logging.Handler; +import java.util.logging.LogRecord; +import java.util.logging.Logger; +import org.apache.ignite.IgnitionManager; +import org.apache.ignite.cli.spec.IgniteCliSpec; +import org.apache.ignite.internal.testframework.IgniteTestUtils; +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.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.TestInfo; +import org.junit.jupiter.api.extension.ExtendWith; +import picocli.CommandLine; + +/** + * Integration test for {@code ignite cluster} commands. + */ +@ExtendWith(WorkDirectoryExtension.class) +class ItClusterCommandTest extends AbstractCliTest { + private static final Node FIRST_NODE = new Node(0, 10100, 10300); + private static final Node SECOND_NODE = new Node(1, 11100, 11300); + private static final Node THIRD_NODE = new Node(2, 12100, 12300); + private static final Node FOURTH_NODE = new Node(3, 13100, 13300); + + private static final List<Node> NODES = List.of(FIRST_NODE, SECOND_NODE, THIRD_NODE, FOURTH_NODE); + + private static final String NL = System.lineSeparator(); + + private static final Logger topologyLogger = Logger.getLogger("org.apache.ignite.network.scalecube.ScaleCubeTopologyService"); + + /** DI context. */ + private ApplicationContext ctx; + + /** stderr. */ + private final ByteArrayOutputStream err = new ByteArrayOutputStream(); + + /** stdout. */ + private final ByteArrayOutputStream out = new ByteArrayOutputStream(); + + @BeforeEach + void setup(@WorkDirectory Path workDir, TestInfo testInfo) throws Exception { + AtomicBoolean allNodesAreInPhysicalTopology = new AtomicBoolean(false); + + Handler physicalTopologyWaiter = physicalTopologyWaiter(allNodesAreInPhysicalTopology); + topologyLogger.addHandler(physicalTopologyWaiter); + + try { + startClusterWithoutInit(workDir, testInfo); + + waitTillAllNodesJoinPhysicalTopology(allNodesAreInPhysicalTopology); + } finally { + topologyLogger.removeHandler(physicalTopologyWaiter); + } + + ctx = ApplicationContext.run(Environment.TEST); + } + + private Handler physicalTopologyWaiter(AtomicBoolean physicalTopologyIsFull) { Review Comment: They could. I suggest we make them static when (and if) we need it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
