blob: b2d1484d2b1a4ebda532b0ae5cde85ca243c6b78 [file] [log] [blame]
package org.apache.helix.integration.controller;
/*
* 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.
*/
import java.util.ArrayList;
import java.util.Set;
import org.apache.helix.ZkUnitTestBase;
import org.apache.helix.controller.GenericHelixController;
import org.testng.Assert;
import org.testng.annotations.Test;
public class TestGenericHelixControllerThreading extends ZkUnitTestBase {
private static final String EVENT_PROCESS_THREAD_NAME_PREFIX =
"GerenricHelixController-event_process";
// Temporarily disabling the test as it's not stable when running under the entire mvn test suite.
// Some other crashed tests might cause this one to fail as controllers might not be gracefully
// shutdown
@Test(enabled = false)
public void testGenericHelixControllerThreadCount() throws Exception {
System.out.println("testGenericHelixControllerThreadCount STARTs");
final int numControllers = 100;
ArrayList<GenericHelixController> controllers = createHelixControllers(numControllers);
Assert.assertEquals(getThreadCountByNamePrefix(EVENT_PROCESS_THREAD_NAME_PREFIX), numControllers * 2);
int remainingExpectedEventProcessThreadsCount = numControllers * 2;
for (GenericHelixController ctrl : controllers) {
ctrl.shutdown();
remainingExpectedEventProcessThreadsCount -= 2;
Assert.assertEquals(getThreadCountByNamePrefix(EVENT_PROCESS_THREAD_NAME_PREFIX),
remainingExpectedEventProcessThreadsCount);
}
System.out.println("testGenericHelixControllerThreadCount ENDs");
}
private ArrayList<GenericHelixController> createHelixControllers(int count) {
ArrayList<GenericHelixController> ret = new ArrayList<>();
for (int i = 0; i < count; i++) {
ret.add(new GenericHelixController());
}
return ret;
}
private int getThreadCountByNamePrefix(String threadNamePrefix) {
Set<Thread> threadSet = Thread.getAllStackTraces().keySet();
int eventThreadCount = 0;
for (Thread t : threadSet) {
if (t.getName().startsWith(threadNamePrefix)) {
eventThreadCount += 1;
}
}
return eventThreadCount;
}
}