b75732b16c8b97eb666e0a863dbea9cd732fe9fb
[pub/Android/ownCloud.git] /
1 /* ownCloud Android client application
2 * Copyright (C) 2012-2013 ownCloud Inc.
3 *
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.
7 *
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.
12 *
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/>.
15 *
16 */
17
18 package com.owncloud.android.oc_framework_test_project.test;
19
20 import com.owncloud.android.oc_framework.operations.RemoteOperationResult;
21 import com.owncloud.android.oc_framework_test_project.TestActivity;
22
23 import android.test.ActivityInstrumentationTestCase2;
24
25 /**
26 * Class to test Read File Operation
27 * @author masensio
28 *
29 */
30
31 public class ReadFileTest extends ActivityInstrumentationTestCase2<TestActivity> {
32
33 /* File data to read. This file must exist on the account */
34 private final String mRemoteFolderPath = "/fileToRead.txt";
35
36
37 private TestActivity mActivity;
38
39 public ReadFileTest() {
40 super(TestActivity.class);
41 }
42
43 @Override
44 protected void setUp() throws Exception {
45 super.setUp();
46 setActivityInitialTouchMode(false);
47 mActivity = getActivity();
48 }
49
50 /**
51 * Test Read File
52 */
53 public void testReadFile() {
54
55 RemoteOperationResult result = mActivity.readFile(mRemoteFolderPath);
56 assertTrue(result.getData().size() == 1);
57 assertTrue(result.isSuccess());
58 }
59
60
61 }