/* * 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.testsuites; import java.util.Set; import junit.framework.TestSuite; import org.apache.ignite.internal.pagemem.impl.PageIdUtilsSelfTest; import org.apache.ignite.internal.processors.cache.GridCacheUtilsSelfTest; import org.apache.ignite.internal.util.GridArraysSelfTest; import org.apache.ignite.internal.util.IgniteExceptionRegistrySelfTest; import org.apache.ignite.internal.util.IgniteUtilsSelfTest; import org.apache.ignite.internal.util.nio.GridNioDelimitedBufferSelfTest; import org.apache.ignite.internal.util.nio.GridNioSelfTest; import org.apache.ignite.internal.util.nio.GridNioSessionMetaKeySelfTest; import org.apache.ignite.internal.util.nio.GridNioSslSelfTest; import org.apache.ignite.internal.util.nio.impl.GridNioFilterChainSelfTest; import org.apache.ignite.internal.util.offheap.unsafe.GridUnsafeMapSelfTest; import org.apache.ignite.internal.util.offheap.unsafe.GridUnsafeMemorySelfTest; import org.apache.ignite.internal.util.offheap.unsafe.GridUnsafePartitionedMapSelfTest; import org.apache.ignite.internal.util.offheap.unsafe.GridUnsafeStripedLruSefTest; import org.apache.ignite.internal.util.tostring.GridToStringBuilderSelfTest; import org.apache.ignite.lang.GridByteArrayListSelfTest; import org.apache.ignite.spi.discovery.ClusterMetricsSnapshotSerializeSelfTest; import org.apache.ignite.testframework.GridTestUtils; import org.apache.ignite.thread.GridThreadPoolExecutorServiceSelfTest; import org.apache.ignite.thread.IgniteThreadPoolSizeTest; import org.apache.ignite.util.GridIntListSelfTest; import org.apache.ignite.util.GridLongListSelfTest; import org.apache.ignite.util.GridMessageCollectionTest; import org.apache.ignite.util.GridQueueSelfTest; import org.apache.ignite.util.GridSpinReadWriteLockSelfTest; import org.apache.ignite.util.GridStringBuilderFactorySelfTest; import org.apache.ignite.util.mbeans.GridMBeanSelfTest; /** * Test suite for Ignite utility classes. */ public class IgniteUtilSelfTestSuite extends TestSuite { /** * @return Grid utility methods tests suite. * @throws Exception If failed. */ public static TestSuite suite() throws Exception { return suite(null); } /** * @param ignoredTests Tests don't include in the execution. * @return Test suite. * @throws Exception Thrown in case of the failure. */ public static TestSuite suite(Set<Class> ignoredTests) throws Exception { TestSuite suite = new TestSuite("Ignite Util Test Suite"); suite.addTestSuite(GridThreadPoolExecutorServiceSelfTest.class); suite.addTestSuite(IgniteThreadPoolSizeTest.class); GridTestUtils.addTestIfNeeded(suite, IgniteUtilsSelfTest.class, ignoredTests); suite.addTestSuite(GridSpinReadWriteLockSelfTest.class); suite.addTestSuite(GridQueueSelfTest.class); suite.addTestSuite(GridStringBuilderFactorySelfTest.class); suite.addTestSuite(GridToStringBuilderSelfTest.class); suite.addTestSuite(GridByteArrayListSelfTest.class); suite.addTestSuite(GridMBeanSelfTest.class); suite.addTestSuite(GridLongListSelfTest.class); suite.addTestSuite(GridIntListSelfTest.class); suite.addTestSuite(GridArraysSelfTest.class); suite.addTestSuite(GridCacheUtilsSelfTest.class); suite.addTestSuite(IgniteExceptionRegistrySelfTest.class); suite.addTestSuite(GridMessageCollectionTest.class); // Metrics. suite.addTestSuite(ClusterMetricsSnapshotSerializeSelfTest.class); // Unsafe. suite.addTestSuite(GridUnsafeMemorySelfTest.class); suite.addTestSuite(GridUnsafeStripedLruSefTest.class); suite.addTestSuite(GridUnsafeMapSelfTest.class); suite.addTestSuite(GridUnsafePartitionedMapSelfTest.class); // NIO. suite.addTestSuite(GridNioSessionMetaKeySelfTest.class); GridTestUtils.addTestIfNeeded(suite, GridNioSelfTest.class, ignoredTests); suite.addTestSuite(GridNioFilterChainSelfTest.class); GridTestUtils.addTestIfNeeded(suite, GridNioSslSelfTest.class, ignoredTests); suite.addTestSuite(GridNioDelimitedBufferSelfTest.class); //dbx suite.addTestSuite(PageIdUtilsSelfTest.class); return suite; } }