Package org.gradle.api.internal.tasks.testing.processors

Source Code of org.gradle.api.internal.tasks.testing.processors.RestartEveryNTestClassProcessorTest

/*
* Copyright 2010 the original author or 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 org.gradle.api.internal.tasks.testing.processors;

import org.gradle.internal.Factory;
import org.gradle.api.internal.tasks.testing.TestClassProcessor;
import org.gradle.api.internal.tasks.testing.TestClassRunInfo;
import org.gradle.api.internal.tasks.testing.TestResultProcessor;
import org.jmock.Expectations;
import org.jmock.integration.junit4.JMock;
import org.jmock.integration.junit4.JUnit4Mockery;
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(JMock.class)
public class RestartEveryNTestClassProcessorTest {
    private final JUnit4Mockery context = new JUnit4Mockery();
    @SuppressWarnings("unchecked")
    private final Factory<TestClassProcessor> factory = context.mock(Factory.class);
    private final TestClassProcessor delegate = context.mock(TestClassProcessor.class);
    private final TestClassRunInfo test1 = context.mock(TestClassRunInfo.class, "test1");
    private final TestClassRunInfo test2 = context.mock(TestClassRunInfo.class, "test2");
    private final TestClassRunInfo test3 = context.mock(TestClassRunInfo.class, "test3");
    private final TestResultProcessor resultProcessor = context.mock(TestResultProcessor.class);
    private RestartEveryNTestClassProcessor processor = new RestartEveryNTestClassProcessor(factory, 2);

    @Test
    public void onFirstTestCreatesDelegateProcessor() {
        context.checking(new Expectations() {{
            one(factory).create();
            will(returnValue(delegate));

            one(delegate).startProcessing(resultProcessor);
            one(delegate).processTestClass(test1);
        }});

        processor.startProcessing(resultProcessor);
        processor.processTestClass(test1);
    }

    @Test
    public void onNthTestEndsProcessingOnDelegateProcessor() {
        context.checking(new Expectations() {{
            one(factory).create();
            will(returnValue(delegate));

            one(delegate).startProcessing(resultProcessor);
            one(delegate).processTestClass(test1);
            one(delegate).processTestClass(test2);
            one(delegate).stop();
        }});

        processor.startProcessing(resultProcessor);
        processor.processTestClass(test1);
        processor.processTestClass(test2);
    }

    @Test
    public void onNPlus1TestCreatesNewDelegateProcessor() {
        context.checking(new Expectations() {{
            one(factory).create();
            will(returnValue(delegate));

            one(delegate).startProcessing(resultProcessor);
            one(delegate).processTestClass(test1);
            one(delegate).processTestClass(test2);
            one(delegate).stop();

            TestClassProcessor delegate2 = context.mock(TestClassProcessor.class, "delegate2");

            one(factory).create();
            will(returnValue(delegate2));

            one(delegate2).startProcessing(resultProcessor);
            one(delegate2).processTestClass(test3);
        }});

        processor.startProcessing(resultProcessor);
        processor.processTestClass(test1);
        processor.processTestClass(test2);
        processor.processTestClass(test3);
    }

    @Test
    public void onEndOfProcessingEndsProcessingOnDelegateProcessor() {
        context.checking(new Expectations() {{
            one(factory).create();
            will(returnValue(delegate));

            one(delegate).startProcessing(resultProcessor);
            one(delegate).processTestClass(test1);
            one(delegate).stop();
        }});

        processor.startProcessing(resultProcessor);
        processor.processTestClass(test1);
        processor.stop();
    }

    @Test
    public void onEndOfProcessingDoesNothingWhenNoTestsReceived() {
        processor.stop();
    }

    @Test
    public void onEndOfProcessingDoesNothingWhenOnNthTest() {
        context.checking(new Expectations() {{
            one(factory).create();
            will(returnValue(delegate));

            one(delegate).startProcessing(resultProcessor);
            one(delegate).processTestClass(test1);
            one(delegate).processTestClass(test2);
            one(delegate).stop();
        }});

        processor.startProcessing(resultProcessor);
        processor.processTestClass(test1);
        processor.processTestClass(test2);
        processor.stop();
    }

    @Test
    public void usesSingleBatchWhenNEqualsZero() {
        processor = new RestartEveryNTestClassProcessor(factory, 0);

        context.checking(new Expectations() {{
            one(factory).create();
            will(returnValue(delegate));

            one(delegate).startProcessing(resultProcessor);
            one(delegate).processTestClass(test1);
            one(delegate).processTestClass(test2);
            one(delegate).stop();
        }});

        processor.startProcessing(resultProcessor);
        processor.processTestClass(test1);
        processor.processTestClass(test2);
        processor.stop();
    }
}
TOP

Related Classes of org.gradle.api.internal.tasks.testing.processors.RestartEveryNTestClassProcessorTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.