12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- *
- * Nextcloud Android client application
- *
- * @author Tobias Kaminsky
- * Copyright (C) 2020 Tobias Kaminsky
- * Copyright (C) 2020 Nextcloud GmbH
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.ui.preview;
- import android.Manifest;
- import com.facebook.testing.screenshot.Screenshot;
- import com.owncloud.android.AbstractIT;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.ui.activity.FileDisplayActivity;
- import com.owncloud.android.utils.FileStorageUtils;
- import com.owncloud.android.utils.MimeTypeUtil;
- import org.junit.Rule;
- import org.junit.Test;
- import java.io.File;
- import java.io.IOException;
- import androidx.test.espresso.intent.rule.IntentsTestRule;
- import androidx.test.rule.GrantPermissionRule;
- public class PreviewTextFileFragmentTest extends AbstractIT {
- @Rule public IntentsTestRule<FileDisplayActivity> activityRule = new IntentsTestRule<>(FileDisplayActivity.class,
- true,
- false);
- @Rule
- public final GrantPermissionRule permissionRule = GrantPermissionRule.grant(
- Manifest.permission.WRITE_EXTERNAL_STORAGE);
- @Test
- public void displaySimpleTextFile() throws InterruptedException {
- FileDisplayActivity sut = activityRule.launchActivity(null);
- shortSleep();
- File file = new File(FileStorageUtils.getSavePath(account.name) + "/nonEmpty.txt");
- OCFile test = new OCFile("/text.md");
- test.setMimeType(MimeTypeUtil.MIMETYPE_TEXT_MARKDOWN);
- test.setStoragePath(file.getAbsolutePath());
- sut.startTextPreview(test, false);
- shortSleep();
- Screenshot.snapActivity(sut).record();
- }
- @Test
- public void displayJavaSnippetFile() throws IOException, InterruptedException {
- FileDisplayActivity sut = activityRule.launchActivity(null);
- shortSleep();
- File file = getFile("java.md");
- OCFile test = new OCFile("/java.md");
- test.setMimeType(MimeTypeUtil.MIMETYPE_TEXT_MARKDOWN);
- test.setStoragePath(file.getAbsolutePath());
- sut.startTextPreview(test, false);
- shortSleep();
- Screenshot.snapActivity(sut).record();
- }
- }
|