blob: 01557e30eaf287687fb79fc5c5fb555a7709d7d1 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* 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.android.compatibility.common.tradefed.testtype.retry;
import com.android.compatibility.common.tradefed.build.CompatibilityBuildHelper;
import com.android.compatibility.common.tradefed.testtype.CompatibilityTest;
import com.android.compatibility.common.tradefed.util.RetryFilterHelper;
import com.android.tradefed.config.OptionClass;
import com.android.tradefed.config.OptionSetter;
import com.android.tradefed.device.DeviceNotAvailableException;
import com.android.tradefed.device.ITestDevice;
import com.android.tradefed.result.ITestInvocationListener;
import org.easymock.EasyMock;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/**
* Unit tests for {@link RetryFactoryTest}.
*/
@RunWith(JUnit4.class)
public class RetryFactoryTestTest {
private RetryFactoryTest mFactory;
private ITestInvocationListener mMockListener;
private RetryFilterHelper mSpyFilter;
/**
* A {@link CompatibilityTest} that does not run anything.
*/
@OptionClass(alias = "compatibility")
public static class VoidCompatibilityTest extends CompatibilityTest {
@Override
public void run(ITestInvocationListener listener)
throws DeviceNotAvailableException {
// Do not run.
}
}
@Before
public void setUp() {
mSpyFilter = new RetryFilterHelper() {
@Override
public void validateBuildFingerprint(ITestDevice device)
throws DeviceNotAvailableException {
// do nothing
}
@Override
public void setCommandLineOptionsFor(Object obj) {
// do nothing
}
@Override
public void populateFiltersBySubPlan() {
// do nothing
}
};
mFactory = new RetryFactoryTest() {
@Override
RetryFilterHelper createFilterHelper(CompatibilityBuildHelper buildHelper) {
return mSpyFilter;
}
@Override
CompatibilityTest createTest() {
return new VoidCompatibilityTest();
}
};
mMockListener = EasyMock.createMock(ITestInvocationListener.class);
}
/**
* Tests that the CompatibilityTest created can receive all the options without throwing.
*/
@Test
public void testRetry_receiveOption() throws Exception {
OptionSetter setter = new OptionSetter(mFactory);
setter.setOptionValue("retry", "10599");
EasyMock.replay(mMockListener);
mFactory.run(mMockListener);
EasyMock.verify(mMockListener);
}
}