com.google.common.collect.testing.PerCollectionSizeTestSuiteBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guava-testlib Show documentation
Show all versions of guava-testlib Show documentation
Guava testlib is a set of java classes used for more convenient
unit testing - particularly to assist the tests for Guava itself.
/*
* Copyright (C) 2008 The Guava Authors
*
* Licensed 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 com.google.common.collect.testing;
import com.google.common.annotations.GwtIncompatible;
import com.google.common.collect.testing.features.CollectionSize;
import com.google.common.collect.testing.features.Feature;
import com.google.common.collect.testing.features.FeatureUtil;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
import java.util.logging.Logger;
import junit.framework.TestSuite;
/**
* This builder creates a composite test suite, containing a separate test suite for each {@link
* CollectionSize} present in the features specified by {@link #withFeatures(Feature...)}.
*
* @param The concrete type of this builder (the 'self-type'). All the Builder methods of this
* class (such as {@link #named(String)}) return this type, so that Builder methods of more
* derived classes can be chained onto them without casting.
* @param The type of the generator to be passed to testers in the generated test suite. An
* instance of G should somehow provide an instance of the class under test, plus any other
* information required to parameterize the test.
* @see FeatureSpecificTestSuiteBuilder
* @author George van den Driessche
*/
@GwtIncompatible
public abstract class PerCollectionSizeTestSuiteBuilder<
B extends PerCollectionSizeTestSuiteBuilder,
G extends TestContainerGenerator,
T,
E>
extends FeatureSpecificTestSuiteBuilder {
private static final Logger logger =
Logger.getLogger(PerCollectionSizeTestSuiteBuilder.class.getName());
/** Creates a runnable JUnit test suite based on the criteria already given. */
@Override
public TestSuite createTestSuite() {
checkCanCreate();
String name = getName();
// Copy this set, so we can modify it.
Set> features = Helpers.copyToSet(getFeatures());
List> testers = getTesters();
logger.fine(" Testing: " + name);
// Split out all the specified sizes.
Set> sizesToTest = Helpers.>copyToSet(CollectionSize.values());
sizesToTest.retainAll(features);
features.removeAll(sizesToTest);
FeatureUtil.addImpliedFeatures(sizesToTest);
sizesToTest.retainAll(
Arrays.asList(CollectionSize.ZERO, CollectionSize.ONE, CollectionSize.SEVERAL));
logger.fine(" Sizes: " + formatFeatureSet(sizesToTest));
if (sizesToTest.isEmpty()) {
throw new IllegalStateException(
name
+ ": no CollectionSizes specified (check the argument to "
+ "FeatureSpecificTestSuiteBuilder.withFeatures().)");
}
TestSuite suite = new TestSuite(name);
for (Feature> collectionSize : sizesToTest) {
String oneSizeName =
Platform.format(
"%s [collection size: %s]", name, collectionSize.toString().toLowerCase());
OneSizeGenerator oneSizeGenerator =
new OneSizeGenerator<>(getSubjectGenerator(), (CollectionSize) collectionSize);
Set> oneSizeFeatures = Helpers.copyToSet(features);
oneSizeFeatures.add(collectionSize);
Set oneSizeSuppressedTests = getSuppressedTests();
OneSizeTestSuiteBuilder oneSizeBuilder =
new OneSizeTestSuiteBuilder(testers)
.named(oneSizeName)
.usingGenerator(oneSizeGenerator)
.withFeatures(oneSizeFeatures)
.withSetUp(getSetUp())
.withTearDown(getTearDown())
.suppressing(oneSizeSuppressedTests);
TestSuite oneSizeSuite = oneSizeBuilder.createTestSuite();
suite.addTest(oneSizeSuite);
for (TestSuite derivedSuite : createDerivedSuites(oneSizeBuilder)) {
oneSizeSuite.addTest(derivedSuite);
}
}
return suite;
}
protected List createDerivedSuites(
FeatureSpecificTestSuiteBuilder, ? extends OneSizeTestContainerGenerator>
parentBuilder) {
return new ArrayList<>();
}
/** Builds a test suite for one particular {@link CollectionSize}. */
private static final class OneSizeTestSuiteBuilder
extends FeatureSpecificTestSuiteBuilder<
OneSizeTestSuiteBuilder, OneSizeGenerator> {
private final List> testers;
public OneSizeTestSuiteBuilder(List> testers) {
this.testers = testers;
}
@Override
protected List> getTesters() {
return testers;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy