blob: 254fdbf65a4fb3cd93115edc62bf4c92dd3c4e85 [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;
import static org.junit.Assert.assertEquals;
import android.content.Intent;
import android.os.Parcelable;
import android.support.test.filters.MediumTest;
import android.support.test.runner.AndroidJUnit4;
import com.android.documentsui.base.DocumentStack;
import com.android.documentsui.base.RootInfo;
import com.android.documentsui.base.Shared;
import com.android.documentsui.dirlist.DocumentDetails;
import com.android.documentsui.files.LauncherActivity;
import com.android.documentsui.testing.Roots;
import com.android.documentsui.testing.TestEnv;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
/**
* A unit test *for* AbstractActionHandler, not an abstract test baseclass.
*/
@RunWith(AndroidJUnit4.class)
@MediumTest
public class AbstractActionHandlerTest {
private TestActivity mActivity;
private TestEnv mEnv;
private AbstractActionHandler<TestActivity> mHandler;
@Before
public void setUp() {
mActivity = TestActivity.create();
mEnv = TestEnv.create();
mHandler = new AbstractActionHandler<TestActivity>(
mActivity,
mEnv.state,
mEnv.roots,
mEnv.docs,
mEnv.selectionMgr,
mEnv::lookupExecutor) {
@Override
public void openRoot(RootInfo root) {
throw new UnsupportedOperationException();
}
@Override
public boolean openDocument(DocumentDetails doc) {
throw new UnsupportedOperationException();
}
@Override
public void initLocation(Intent intent) {
throw new UnsupportedOperationException();
}
};
}
@Test
public void testOpenNewWindow() {
DocumentStack path = new DocumentStack(Roots.create("123"));
mHandler.openInNewWindow(path);
Intent expected = LauncherActivity.createLaunchIntent(mActivity);
expected.putExtra(Shared.EXTRA_STACK, (Parcelable) path);
Intent actual = mActivity.startActivity.getLastValue();
assertEquals(expected.toString(), actual.toString());
}
}