1 /* ownCloud Android client application
2 * Copyright (C) 2012-2013 ownCloud Inc.
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package com.owncloud.android.oc_framework_test_project.test;
20 import com.owncloud.android.oc_framework.operations.RemoteOperationResult;
21 import com.owncloud.android.oc_framework_test_project.TestActivity;
23 import android.test.ActivityInstrumentationTestCase2;
26 * Class to test Read File Operation
31 public class ReadFileTest extends ActivityInstrumentationTestCase2<TestActivity> {
33 /* File data to read. This file must exist on the account */
34 private final String mRemoteFolderPath = "/fileToRead.txt";
37 private TestActivity mActivity;
39 public ReadFileTest() {
40 super(TestActivity.class);
44 protected void setUp() throws Exception {
46 setActivityInitialTouchMode(false);
47 mActivity = getActivity();
53 public void testReadFile() {
55 RemoteOperationResult result = mActivity.readFile(mRemoteFolderPath);
56 assertTrue(result.getData().size() == 1);
57 assertTrue(result.isSuccess());