blob: 6607a00ed944c4a577e96c9c3535f1cc1b63d3e4 [file] [log] [blame]
/*
* Copyright (C) 2016 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.documentsui.picker;
import static com.android.documentsui.base.State.ACTION_GET_CONTENT;
import static com.android.documentsui.base.State.ACTION_PICK_COPY_DESTINATION;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import android.content.Intent;
import android.net.Uri;
import android.provider.DocumentsContract;
import android.provider.DocumentsContract.Path;
import android.support.test.filters.MediumTest;
import android.support.test.runner.AndroidJUnit4;
import com.android.documentsui.R;
import com.android.documentsui.base.DocumentInfo;
import com.android.documentsui.base.DocumentStack;
import com.android.documentsui.base.RootInfo;
import com.android.documentsui.base.Shared;
import com.android.documentsui.testing.DocumentStackAsserts;
import com.android.documentsui.testing.TestEnv;
import com.android.documentsui.testing.TestRootsAccess;
import com.android.documentsui.ui.TestDialogController;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import java.util.Arrays;
import java.util.List;
@RunWith(AndroidJUnit4.class)
@MediumTest
public class ActionHandlerTest {
private TestEnv mEnv;
private TestActivity mActivity;
private TestDialogController mDialogs;
private ActionHandler<TestActivity> mHandler;
@Before
public void setUp() {
mEnv = TestEnv.create();
mActivity = TestActivity.create();
mDialogs = new TestDialogController();
mEnv.roots.configurePm(mActivity.packageMgr);
mHandler = new ActionHandler<>(
mActivity,
mEnv.state,
mEnv.roots,
mEnv.docs,
mEnv.focusHandler,
mEnv.selectionMgr,
mEnv.searchViewManager,
mEnv::lookupExecutor,
null // tuner, not currently used.
);
mDialogs.confirmNext();
mEnv.selectionMgr.toggleSelection("1");
mHandler.reset(mEnv.model);
}
@Test
public void testInitLocation_CopyDestination_DefaultsToDownloads() throws Exception {
mActivity.resources.bools.put(R.bool.productivity_device, false);
Intent intent = mActivity.getIntent();
intent.setAction(Shared.ACTION_PICK_COPY_DESTINATION);
mHandler.initLocation(mActivity.getIntent());
assertRootPicked(TestRootsAccess.DOWNLOADS.getUri());
}
@Test
public void testInitLocation_CopyDestination_DefaultsToHome() throws Exception {
mActivity.resources.bools.put(R.bool.productivity_device, true);
Intent intent = mActivity.getIntent();
intent.setAction(Shared.ACTION_PICK_COPY_DESTINATION);
mHandler.initLocation(intent);
assertRootPicked(TestRootsAccess.HOME.getUri());
}
@Test
public void testInitLocation_LaunchToDocuments() throws Exception {
mEnv.docs.nextIsDocumentsUri = true;
mEnv.docs.nextPath = new Path(
TestRootsAccess.HOME.rootId,
Arrays.asList(
TestEnv.FOLDER_0.documentId,
TestEnv.FOLDER_1.documentId,
TestEnv.FILE_GIF.documentId));
mEnv.docs.nextDocuments =
Arrays.asList(TestEnv.FOLDER_0, TestEnv.FOLDER_1, TestEnv.FILE_GIF);
mActivity.refreshCurrentRootAndDirectory.assertNotCalled();
Intent intent = mActivity.getIntent();
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.putExtra(DocumentsContract.EXTRA_INITIAL_URI, TestEnv.FILE_GIF.derivedUri);
mHandler.initLocation(intent);
mEnv.beforeAsserts();
DocumentStackAsserts.assertEqualsTo(mEnv.state.stack, TestRootsAccess.HOME,
Arrays.asList(TestEnv.FOLDER_0, TestEnv.FOLDER_1));
mActivity.refreshCurrentRootAndDirectory.assertCalled();
}
@Test
public void testOpenContainerDocument() {
mHandler.openContainerDocument(TestEnv.FOLDER_0);
assertEquals(TestEnv.FOLDER_0, mEnv.state.stack.peek());
mActivity.refreshCurrentRootAndDirectory.assertCalled();
}
private void assertRootPicked(Uri expectedUri) throws Exception {
mEnv.beforeAsserts();
mActivity.rootPicked.assertCalled();
RootInfo root = mActivity.rootPicked.getLastValue();
assertNotNull(root);
assertEquals(expectedUri, root.getUri());
}
}