blob: 1e178b1d47168041b0f43e8b2f9d15a7a9848577 [file] [log] [blame]
/*
* Copyright 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 androidx.work.impl;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import static org.mockito.Mockito.mock;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.filters.SmallTest;
import android.support.test.runner.AndroidJUnit4;
import androidx.work.Configuration;
import androidx.work.DatabaseTest;
import androidx.work.OneTimeWorkRequest;
import androidx.work.worker.InfiniteTestWorker;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import java.util.Collections;
import java.util.concurrent.Executors;
@RunWith(AndroidJUnit4.class)
public class ProcessorTest extends DatabaseTest {
private Processor mProcessor;
@Before
public void setUp() {
Context appContext = InstrumentationRegistry.getTargetContext().getApplicationContext();
Configuration configuration = new Configuration.Builder().build();
mProcessor = new Processor(
appContext,
configuration,
mDatabase,
Collections.singletonList(mock(Scheduler.class)),
Executors.newSingleThreadScheduledExecutor()) {
};
}
@Test
@SmallTest
public void testStopWork_invalidWorkId() {
String id = "INVALID_WORK_ID";
assertThat(mProcessor.stopWork(id), is(false));
}
@Test
@SmallTest
public void testStartWork_doesNotStartWorkTwice() {
OneTimeWorkRequest work = new OneTimeWorkRequest.Builder(InfiniteTestWorker.class).build();
String id = work.getStringId();
insertWork(work);
assertThat(mProcessor.startWork(id), is(true));
assertThat(mProcessor.startWork(id), is(false));
}
@Test
@SmallTest
public void testHasWork() {
OneTimeWorkRequest work = new OneTimeWorkRequest.Builder(InfiniteTestWorker.class).build();
insertWork(work);
assertThat(mProcessor.hasWork(), is(false));
mProcessor.startWork(work.getStringId());
assertThat(mProcessor.hasWork(), is(true));
}
}