summaryrefslogtreecommitdiffstats
path: root/test-runner/src/android/test/TestBrowserActivity.java
blob: ea5f91e1275283fea4860f216b79ac7181758bdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
 * Copyright (C) 2007 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.test;

import com.android.internal.R;

import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import junit.framework.Test;
import junit.framework.TestSuite;

import java.util.List;

/**
 * @hide - This is part of a framework that is under development and should not be used for
 * active development.
 */
public abstract class TestBrowserActivity extends ListActivity
        implements android.test.TestBrowserView, AdapterView.OnItemClickListener,
        TestSuiteProvider {

    private TestBrowserController mTestBrowserController;
    public static final String BUNDLE_EXTRA_PACKAGE = "package";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        getListView().setOnItemClickListener(this);

        mTestBrowserController = ServiceLocator.getTestBrowserController();
        mTestBrowserController.setTargetPackageName(getPackageName());
        mTestBrowserController.registerView(this);
        mTestBrowserController.setTargetBrowserActivityClassName(this.getClass().getName());

        // Apk paths used to search for test classes when using TestSuiteBuilders.
        String[] apkPaths = {getPackageCodePath()};
        ClassPathPackageInfoSource.setApkPaths(apkPaths);
    }

    @Override
    protected void onStart() {
        super.onStart();
        TestSuite testSuite = getTestSuiteToBrowse();
        mTestBrowserController.setTestSuite(testSuite);
        
        String name = testSuite.getName();
        if (name != null) {
            setTitle(name.substring(name.lastIndexOf(".") + 1));
        }
    }

    /**
     * Subclasses will override this method and return the TestSuite specific to their .apk.
     * When this method is invoked due to an intent fired from
     * {@link #onItemClick(android.widget.AdapterView, android.view.View, int, long)} then get the
     * targeted TestSuite from the intent.
     *
     * @return testSuite to browse
     */
    @SuppressWarnings("unchecked")
    private TestSuite getTestSuiteToBrowse() {
        Intent intent = getIntent();
        if (Intent.ACTION_RUN.equals(intent.getAction())) {
            String testClassName = intent.getData().toString();

            try {
                Class<Test> testClass = (Class<Test>) getClassLoader().loadClass(testClassName);
                return TestCaseUtil.createTestSuite(testClass);
            } catch (ClassNotFoundException e) {
                Log.e("TestBrowserActivity", "ClassNotFoundException for " + testClassName, e);
                throw new RuntimeException(e);
            } catch (IllegalAccessException e) {
                Log.e("TestBrowserActivity", "IllegalAccessException for " + testClassName, e);
                throw new RuntimeException(e);
            } catch (InstantiationException e) {
                Log.e("TestBrowserActivity", "InstantiationException for " + testClassName, e);
                throw new RuntimeException(e);
            }
        } else {
            // get test classes to browwes from subclass
            return getTopTestSuite();
        }

    }

    public TestSuite getTestSuite() {
        return getTopTestSuite();
    }

    /**
     * @return A TestSuite that should be run for a given application.
     */
    public abstract TestSuite getTopTestSuite();

    public void onItemClick(AdapterView parent, View v, int position, long id) {
        Intent intent = mTestBrowserController.getIntentForTestAt(position);
        intent.putExtra(BUNDLE_EXTRA_PACKAGE, getPackageName());
        startActivity(intent);
    }

    public void setTestNames(List<String> testNames) {
        ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,
                R.layout.test_list_item, testNames);
        setListAdapter(arrayAdapter);
    }
}