tkalkirill commented on code in PR #4713:
URL: https://github.com/apache/ignite-3/pull/4713#discussion_r1841712278


##########
modules/core/src/test/java/org/apache/ignite/internal/testframework/ExecutorServiceExtensionTest.java:
##########
@@ -0,0 +1,207 @@
+/*
+ * 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.testframework;
+
+import static java.util.concurrent.CompletableFuture.runAsync;
+import static 
org.apache.ignite.internal.testframework.JunitExtensionTestUtils.assertExecutesSuccessfully;
+import static 
org.apache.ignite.internal.testframework.JunitExtensionTestUtils.assertExecutesWithFailure;
+import static 
org.apache.ignite.internal.testframework.matchers.CompletableFutureMatcher.willCompleteSuccessfully;
+import static 
org.apache.ignite.internal.thread.ThreadOperation.PROCESS_RAFT_REQ;
+import static org.apache.ignite.internal.thread.ThreadOperation.STORAGE_READ;
+import static org.apache.ignite.internal.thread.ThreadOperation.STORAGE_WRITE;
+import static 
org.apache.ignite.internal.thread.ThreadOperation.TX_STATE_STORAGE_ACCESS;
+import static org.apache.ignite.internal.thread.ThreadOperation.WAIT;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.Matchers.containsInAnyOrder;
+import static org.hamcrest.Matchers.containsString;
+import static org.hamcrest.Matchers.instanceOf;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.fail;
+import static 
org.junit.platform.testkit.engine.TestExecutionResultConditions.instanceOf;
+import static 
org.junit.platform.testkit.engine.TestExecutionResultConditions.message;
+
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.ScheduledExecutorService;
+import java.util.concurrent.ScheduledThreadPoolExecutor;
+import java.util.concurrent.ThreadPoolExecutor;
+import org.apache.ignite.internal.thread.IgniteThread;
+import org.apache.ignite.internal.thread.ThreadOperation;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+
+/** For {@link ExecutorServiceExtension} testing. */
+public class ExecutorServiceExtensionTest {
+    private static final int CPU = Runtime.getRuntime().availableProcessors();
+
+    @ExtendWith(ExecutorServiceExtension.class)
+    static class NormalFieldInjectionTest {
+        @InjectExecutorService
+        private static ExecutorService staticExecutorServiceWithDefaults;
+
+        @InjectExecutorService(threadCount = 2, threadPrefix = 
"test-foo-static-executor", allowedOperations = TX_STATE_STORAGE_ACCESS)
+        private static ExecutorService staticExecutorService;
+
+        @InjectExecutorService
+        private static ScheduledExecutorService 
staticScheduledExecutorServiceWithDefaults;
+
+        @InjectExecutorService(
+                threadCount = 3,
+                threadPrefix = "test-bar-static-executor",
+                allowedOperations = {STORAGE_READ, STORAGE_WRITE}
+        )
+        private static ScheduledExecutorService staticScheduledExecutorService;
+
+        @InjectExecutorService
+        private ExecutorService fieldExecutorServiceWithDefaults;
+
+        @InjectExecutorService(threadCount = 4, threadPrefix = 
"test-foo-field-executor", allowedOperations = STORAGE_WRITE)
+        private ExecutorService fieldExecutorService;
+
+        @InjectExecutorService
+        private ScheduledExecutorService 
fieldScheduledExecutorServiceWithDefaults;
+
+        @InjectExecutorService(threadCount = 5, threadPrefix = 
"test-bar-field-executor", allowedOperations = PROCESS_RAFT_REQ)
+        private ScheduledExecutorService fieldScheduledExecutorService;
+
+        @Test
+        void test(
+                @InjectExecutorService
+                ExecutorService parameterExecutorServiceWithDefaults,
+                @InjectExecutorService(threadCount = 6, threadPrefix = 
"test-foo-param-executor", allowedOperations = WAIT)
+                ExecutorService parameterExecutorService,
+                @InjectExecutorService
+                ScheduledExecutorService 
parameterScheduledExecutorServiceWithDefaults,
+                @InjectExecutorService(threadCount = 7, threadPrefix = 
"test-bar-param-executor", allowedOperations = WAIT)
+                ScheduledExecutorService parameterScheduledExecutorService
+        ) {
+            checkExecutorService(
+                    staticExecutorServiceWithDefaults,
+                    CPU,
+                    "test-ExecutorService-staticExecutorServiceWithDefaults"
+            );
+            checkScheduledExecutorService(
+                    staticScheduledExecutorServiceWithDefaults,
+                    1,
+                    
"test-ScheduledExecutorService-staticScheduledExecutorServiceWithDefaults"
+            );
+            checkExecutorService(
+                    fieldExecutorServiceWithDefaults,
+                    CPU,
+                    "test-ExecutorService-fieldExecutorServiceWithDefaults"
+            );
+            checkScheduledExecutorService(
+                    fieldScheduledExecutorServiceWithDefaults,
+                    1,
+                    
"test-ScheduledExecutorService-fieldScheduledExecutorServiceWithDefaults"
+            );
+            checkExecutorService(
+                    parameterExecutorServiceWithDefaults,
+                    CPU,
+                    "test-ExecutorService-arg"
+            );
+            checkScheduledExecutorService(
+                    parameterScheduledExecutorServiceWithDefaults,
+                    1,
+                    "test-ScheduledExecutorService-arg"
+            );
+
+            checkExecutorService(staticExecutorService, 2, 
"test-foo-static-executor", TX_STATE_STORAGE_ACCESS);
+            checkScheduledExecutorService(staticScheduledExecutorService, 3, 
"test-bar-static-executor", STORAGE_READ, STORAGE_WRITE);
+            checkExecutorService(fieldExecutorService, 4, 
"test-foo-field-executor", STORAGE_WRITE);
+            checkScheduledExecutorService(fieldScheduledExecutorService, 5, 
"test-bar-field-executor", PROCESS_RAFT_REQ);
+            checkExecutorService(parameterExecutorService, 6, 
"test-foo-param-executor", WAIT);
+            checkScheduledExecutorService(parameterScheduledExecutorService, 
7, "test-bar-param-executor", WAIT);
+        }
+    }
+
+    @ExtendWith(ExecutorServiceExtension.class)
+    static class ErrorFieldInjectionTest {
+        @InjectExecutorService
+        private static Integer staticExecutorService;

Review Comment:
   Renamed it a little differently.



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to