123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482 |
- /*
- * Nextcloud Android client application
- *
- * @author Tobias Kaminsky
- * Copyright (C) 2020 Tobias Kaminsky
- * Copyright (C) 2020 Nextcloud GmbH
- * Copyright (C) 2020 Chris Narkiewicz <hello@ezaquarii.com>
- *
- * 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 <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android;
- import com.nextcloud.client.account.UserAccountManagerImpl;
- import com.nextcloud.client.device.BatteryStatus;
- import com.nextcloud.client.device.PowerManagementService;
- import com.nextcloud.client.network.Connectivity;
- import com.nextcloud.client.network.ConnectivityService;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.datamodel.UploadsStorageManager;
- import com.owncloud.android.db.OCUpload;
- import com.owncloud.android.files.services.FileUploader;
- import com.owncloud.android.files.services.NameCollisionPolicy;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult;
- import com.owncloud.android.operations.RefreshFolderOperation;
- import com.owncloud.android.operations.RemoveFileOperation;
- import com.owncloud.android.operations.UploadFileOperation;
- import com.owncloud.android.utils.FileStorageUtils;
- import org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
- import java.io.File;
- import java.io.IOException;
- import java.nio.file.Files;
- import java.nio.file.attribute.BasicFileAttributes;
- import java.util.List;
- import java.util.concurrent.TimeUnit;
- import androidx.annotation.NonNull;
- import static junit.framework.TestCase.assertEquals;
- import static junit.framework.TestCase.assertFalse;
- import static junit.framework.TestCase.assertTrue;
- /**
- * Tests related to file uploads
- */
- public class UploadIT extends AbstractOnServerIT {
- private static final String FOLDER = "/testUpload/";
- private UploadsStorageManager uploadsStorageManager =
- new UploadsStorageManager(UserAccountManagerImpl.fromContext(targetContext),
- targetContext.getContentResolver());
- private ConnectivityService connectivityServiceMock = new ConnectivityService() {
- @Override
- public boolean isInternetWalled() {
- return false;
- }
- @Override
- public Connectivity getConnectivity() {
- return Connectivity.CONNECTED_WIFI;
- }
- };
- private PowerManagementService powerManagementServiceMock = new PowerManagementService() {
- @Override
- public boolean isPowerSavingEnabled() {
- return false;
- }
- @Override
- public boolean isPowerSavingExclusionAvailable() {
- return false;
- }
- @NonNull
- @Override
- public BatteryStatus getBattery() {
- return new BatteryStatus(false, 0);
- }
- };
- @Before
- public void before() throws IOException {
- // make sure that every file is available, even after tests that remove source file
- createDummyFiles();
- }
- @After
- public void after() {
- RemoteOperationResult result = new RefreshFolderOperation(getStorageManager().getFileByPath("/"),
- System.currentTimeMillis() / 1000L,
- false,
- true,
- getStorageManager(),
- user,
- targetContext)
- .execute(client);
- // cleanup only if folder exists
- if (result.isSuccess() && getStorageManager().getFileByDecryptedRemotePath(FOLDER) != null) {
- new RemoveFileOperation(getStorageManager().getFileByDecryptedRemotePath(FOLDER),
- false,
- account,
- false,
- targetContext,
- getStorageManager())
- .execute(client);
- }
- }
- @Test
- public void testEmptyUpload() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/empty.txt",
- FOLDER + "empty.txt",
- account.name);
- uploadOCUpload(ocUpload);
- }
- @Test
- public void testNonEmptyUpload() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/nonEmpty.txt",
- FOLDER + "nonEmpty.txt",
- account.name);
- uploadOCUpload(ocUpload);
- }
- @Test
- public void testUploadWithCopy() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/nonEmpty.txt",
- FOLDER + "nonEmpty.txt",
- account.name);
- uploadOCUpload(ocUpload, FileUploader.LOCAL_BEHAVIOUR_COPY);
- File originalFile = new File(FileStorageUtils.getTemporalPath(account.name) + "/nonEmpty.txt");
- OCFile uploadedFile = fileDataStorageManager.getFileByDecryptedRemotePath(FOLDER + "nonEmpty.txt");
- assertTrue(originalFile.exists());
- assertTrue(new File(uploadedFile.getStoragePath()).exists());
- verifyStoragePath(uploadedFile);
- }
- @Test
- public void testUploadWithMove() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/nonEmpty.txt",
- FOLDER + "nonEmpty.txt",
- account.name);
- uploadOCUpload(ocUpload, FileUploader.LOCAL_BEHAVIOUR_MOVE);
- File originalFile = new File(FileStorageUtils.getTemporalPath(account.name) + "/nonEmpty.txt");
- OCFile uploadedFile = fileDataStorageManager.getFileByDecryptedRemotePath(FOLDER + "nonEmpty.txt");
- assertFalse(originalFile.exists());
- assertTrue(new File(uploadedFile.getStoragePath()).exists());
- verifyStoragePath(uploadedFile);
- }
- @Test
- public void testUploadWithForget() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/nonEmpty.txt",
- FOLDER + "nonEmpty.txt",
- account.name);
- uploadOCUpload(ocUpload, FileUploader.LOCAL_BEHAVIOUR_FORGET);
- File originalFile = new File(FileStorageUtils.getTemporalPath(account.name) + "/nonEmpty.txt");
- OCFile uploadedFile = fileDataStorageManager.getFileByDecryptedRemotePath(FOLDER + "nonEmpty.txt");
- assertTrue(originalFile.exists());
- assertFalse(new File(uploadedFile.getStoragePath()).exists());
- assertTrue(uploadedFile.getStoragePath().isEmpty());
- }
- @Test
- public void testUploadWithDelete() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/nonEmpty.txt",
- FOLDER + "nonEmpty.txt",
- account.name);
- uploadOCUpload(ocUpload, FileUploader.LOCAL_BEHAVIOUR_DELETE);
- File originalFile = new File(FileStorageUtils.getTemporalPath(account.name) + "/nonEmpty.txt");
- OCFile uploadedFile = fileDataStorageManager.getFileByDecryptedRemotePath(FOLDER + "nonEmpty.txt");
- assertFalse(originalFile.exists());
- assertFalse(new File(uploadedFile.getStoragePath()).exists());
- assertTrue(uploadedFile.getStoragePath().isEmpty());
- }
- @Test
- public void testChunkedUpload() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/chunkedFile.txt",
- FOLDER + "chunkedFile.txt", account.name);
- uploadOCUpload(ocUpload);
- }
- @Test
- public void testUploadInNonExistingFolder() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/empty.txt",
- FOLDER + "2/3/4/1.txt", account.name);
- uploadOCUpload(ocUpload);
- }
- @Test
- public void testUploadOnChargingOnlyButNotCharging() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/empty.txt",
- FOLDER + "notCharging.txt", account.name);
- ocUpload.setWhileChargingOnly(true);
- UploadFileOperation newUpload = new UploadFileOperation(
- uploadsStorageManager,
- connectivityServiceMock,
- powerManagementServiceMock,
- user,
- null,
- ocUpload,
- NameCollisionPolicy.DEFAULT,
- FileUploader.LOCAL_BEHAVIOUR_COPY,
- targetContext,
- false,
- true,
- getStorageManager()
- );
- newUpload.setRemoteFolderToBeCreated();
- newUpload.addRenameUploadListener(() -> {
- // dummy
- });
- RemoteOperationResult result = newUpload.execute(client);
- assertFalse(result.toString(), result.isSuccess());
- assertEquals(RemoteOperationResult.ResultCode.DELAYED_FOR_CHARGING, result.getCode());
- }
- @Test
- public void testUploadOnChargingOnlyAndCharging() {
- PowerManagementService powerManagementServiceMock = new PowerManagementService() {
- @Override
- public boolean isPowerSavingEnabled() {
- return false;
- }
- @Override
- public boolean isPowerSavingExclusionAvailable() {
- return false;
- }
- @NonNull
- @Override
- public BatteryStatus getBattery() {
- return new BatteryStatus(true, 100);
- }
- };
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/empty.txt",
- FOLDER + "charging.txt", account.name);
- ocUpload.setWhileChargingOnly(true);
- UploadFileOperation newUpload = new UploadFileOperation(
- uploadsStorageManager,
- connectivityServiceMock,
- powerManagementServiceMock,
- user,
- null,
- ocUpload,
- NameCollisionPolicy.DEFAULT,
- FileUploader.LOCAL_BEHAVIOUR_COPY,
- targetContext,
- false,
- true,
- getStorageManager()
- );
- newUpload.setRemoteFolderToBeCreated();
- newUpload.addRenameUploadListener(() -> {
- // dummy
- });
- RemoteOperationResult result = newUpload.execute(client);
- assertTrue(result.toString(), result.isSuccess());
- }
- @Test
- public void testUploadOnWifiOnlyButNoWifi() {
- ConnectivityService connectivityServiceMock = new ConnectivityService() {
- @Override
- public boolean isInternetWalled() {
- return false;
- }
- @Override
- public Connectivity getConnectivity() {
- return new Connectivity(true, false, false, true);
- }
- };
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/empty.txt",
- FOLDER + "noWifi.txt", account.name);
- ocUpload.setUseWifiOnly(true);
- UploadFileOperation newUpload = new UploadFileOperation(
- uploadsStorageManager,
- connectivityServiceMock,
- powerManagementServiceMock,
- user,
- null,
- ocUpload,
- NameCollisionPolicy.DEFAULT,
- FileUploader.LOCAL_BEHAVIOUR_COPY,
- targetContext,
- true,
- false,
- getStorageManager()
- );
- newUpload.setRemoteFolderToBeCreated();
- newUpload.addRenameUploadListener(() -> {
- // dummy
- });
- RemoteOperationResult result = newUpload.execute(client);
- assertFalse(result.toString(), result.isSuccess());
- assertEquals(RemoteOperationResult.ResultCode.DELAYED_FOR_WIFI, result.getCode());
- }
- @Test
- public void testUploadOnWifiOnlyAndWifi() {
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/empty.txt",
- FOLDER + "wifi.txt", account.name);
- ocUpload.setWhileChargingOnly(true);
- UploadFileOperation newUpload = new UploadFileOperation(
- uploadsStorageManager,
- connectivityServiceMock,
- powerManagementServiceMock,
- user,
- null,
- ocUpload,
- NameCollisionPolicy.DEFAULT,
- FileUploader.LOCAL_BEHAVIOUR_COPY,
- targetContext,
- true,
- false,
- getStorageManager()
- );
- newUpload.setRemoteFolderToBeCreated();
- newUpload.addRenameUploadListener(() -> {
- // dummy
- });
- RemoteOperationResult result = newUpload.execute(client);
- assertTrue(result.toString(), result.isSuccess());
- // cleanup
- new RemoveFileOperation(getStorageManager().getFileByDecryptedRemotePath(FOLDER),
- false,
- account,
- false,
- targetContext,
- getStorageManager())
- .execute(client);
- }
- @Test
- public void testUploadOnWifiOnlyButMeteredWifi() {
- ConnectivityService connectivityServiceMock = new ConnectivityService() {
- @Override
- public boolean isInternetWalled() {
- return false;
- }
- @Override
- public Connectivity getConnectivity() {
- return new Connectivity(true, true, true, true);
- }
- };
- OCUpload ocUpload = new OCUpload(FileStorageUtils.getTemporalPath(account.name) + "/empty.txt",
- FOLDER + "noWifi.txt",
- account.name);
- ocUpload.setUseWifiOnly(true);
- UploadFileOperation newUpload = new UploadFileOperation(
- uploadsStorageManager,
- connectivityServiceMock,
- powerManagementServiceMock,
- user,
- null,
- ocUpload,
- NameCollisionPolicy.DEFAULT,
- FileUploader.LOCAL_BEHAVIOUR_COPY,
- targetContext,
- true,
- false,
- getStorageManager()
- );
- newUpload.setRemoteFolderToBeCreated();
- newUpload.addRenameUploadListener(() -> {
- // dummy
- });
- RemoteOperationResult result = newUpload.execute(client);
- assertFalse(result.toString(), result.isSuccess());
- assertEquals(RemoteOperationResult.ResultCode.DELAYED_FOR_WIFI, result.getCode());
- }
- @Test
- public void testCreationAndUploadTimestamp() throws IOException {
- File file = getDummyFile("/empty.txt");
- String remotePath = "/testFile.txt";
- OCUpload ocUpload = new OCUpload(file.getAbsolutePath(), remotePath, account.name);
- long creationTimestamp = Files.readAttributes(file.toPath(), BasicFileAttributes.class)
- .creationTime()
- .to(TimeUnit.SECONDS);
- // wait a bit to simulate a later upload, so we can verify if creation date is set correct
- shortSleep();
- assertTrue(
- new UploadFileOperation(
- uploadsStorageManager,
- connectivityServiceMock,
- powerManagementServiceMock,
- user,
- null,
- ocUpload,
- NameCollisionPolicy.DEFAULT,
- FileUploader.LOCAL_BEHAVIOUR_COPY,
- targetContext,
- false,
- false,
- getStorageManager()
- )
- .setRemoteFolderToBeCreated()
- .execute(client)
- .isSuccess()
- );
- long uploadTimestamp = System.currentTimeMillis() / 1000;
- // RefreshFolderOperation
- assertTrue(new RefreshFolderOperation(getStorageManager().getFileByDecryptedRemotePath("/"),
- System.currentTimeMillis() / 1000,
- false,
- false,
- getStorageManager(),
- user,
- targetContext).execute(client).isSuccess());
- List<OCFile> files = getStorageManager().getFolderContent(getStorageManager().getFileByDecryptedRemotePath("/"),
- false);
- OCFile ocFile = files.get(0);
- assertEquals(remotePath, ocFile.getRemotePath());
- assertEquals(creationTimestamp, ocFile.getCreationTimestamp());
- assertTrue(uploadTimestamp - 10 < ocFile.getUploadTimestamp() ||
- uploadTimestamp + 10 > ocFile.getUploadTimestamp());
- }
- private void verifyStoragePath(OCFile file) {
- assertEquals(FileStorageUtils.getSavePath(account.name) + FOLDER + file.getDecryptedFileName(),
- file.getStoragePath());
- }
- }
|