diff --git a/test_client/src/com/owncloud/android/lib/test_project/TestActivity.java b/test_client/src/com/owncloud/android/lib/test_project/TestActivity.java index 9b9ecc3d..46beb44e 100644 --- a/test_client/src/com/owncloud/android/lib/test_project/TestActivity.java +++ b/test_client/src/com/owncloud/android/lib/test_project/TestActivity.java @@ -1,5 +1,5 @@ /* ownCloud Android Library is available under MIT license - * Copyright (C) 2016 ownCloud GmbH. + * Copyright (C) 2018 ownCloud GmbH. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -65,6 +65,7 @@ import com.owncloud.android.lib.resources.users.GetRemoteUserAvatarOperation; * Activity to test OC framework * @author masensio * @author David A. Velasco + * @author David González Verdugo */ public class TestActivity extends Activity { @@ -338,8 +339,8 @@ public class TestActivity extends Activity { } - public RemoteOperationResult getQuota() { - GetRemoteUserQuotaOperation getUserQuotaOperation = new GetRemoteUserQuotaOperation(); + public RemoteOperationResult getQuota(String remotePath) { + GetRemoteUserQuotaOperation getUserQuotaOperation = new GetRemoteUserQuotaOperation(remotePath); return getUserQuotaOperation.execute(mClient); } diff --git a/test_client/tests/src/com/owncloud/android/lib/test_project/test/GetUserQuotaTest.java b/test_client/tests/src/com/owncloud/android/lib/test_project/test/GetUserQuotaTest.java index b18c90a5..8d4f41a8 100644 --- a/test_client/tests/src/com/owncloud/android/lib/test_project/test/GetUserQuotaTest.java +++ b/test_client/tests/src/com/owncloud/android/lib/test_project/test/GetUserQuotaTest.java @@ -1,6 +1,6 @@ /* ownCloud Android Library is available under MIT license * - * Copyright (C) 2015 ownCloud Inc. + * Copyright (C) 2018 ownCloud Inc. * Copyright (C) 2015 Bartosz Przybylski * * Permission is hereby granted, free of charge, to any person obtaining a copy @@ -38,6 +38,7 @@ import com.owncloud.android.lib.test_project.TestActivity; * * @author Bartosz Przybylski * @author David A. Velasco + * @author David González Verdugo */ public class GetUserQuotaTest extends RemoteTest { @@ -45,6 +46,8 @@ public class GetUserQuotaTest extends RemoteTest { private static final String LOG_TAG = GetUserQuotaTest.class.getCanonicalName(); private TestActivity mActivity; + private String mFullPath2Root; + private String ROOT_PATH = "/"; @Override @@ -52,13 +55,14 @@ public class GetUserQuotaTest extends RemoteTest { super.setUp(); setActivityInitialTouchMode(false); mActivity = getActivity(); + mFullPath2Root = mBaseFolderPath + ROOT_PATH; } /** * Test GetUserQuota */ public void testGetUserQuota() { - RemoteOperationResult result = mActivity.getQuota(); + RemoteOperationResult result = mActivity.getQuota(mFullPath2Root); assertTrue(result.isSuccess()); Quota quota = (Quota)((ArrayList)result.getData()).get(0); assertTrue(quota.getFree() >= 0);