WebLatency.java revision 02d897ec26d81fa1f3cb9e1b8f05c6bcb5d7b9db
1/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.quicksearchbox.benchmarks;
18
19import android.content.ComponentName;
20import android.content.Intent;
21import android.content.pm.PackageManager;
22
23/*
24
25To build and run:
26
27mmm packages/apps/QuickSearchBox/benchmarks \
28&& adb install -r $OUT/data/app/QuickSearchBoxBenchmarks.apk \
29&& sleep 10 \
30&& adb shell am start -a android.intent.action.MAIN \
31        -n com.android.quicksearchbox.benchmarks/.WebLatency \
32&& adb logcat
33
34*/
35
36public class WebLatency extends SourceLatency {
37
38    private static final String[] queries = {
39        "", "a", "s", "e", "r", "pub", "taxi", "kilt hire", "pizza",
40             "weather london uk", "terminator showtimes", "obama news",
41             "12 USD in GBP", "how to pass a drug test", "goog stock",
42             "76 Bucking",
43             "sanxjkashasrxae"
44    };
45
46    @Override
47    protected void onResume() {
48        super.onResume();
49        testWebSuggestions();
50        finish();
51    }
52
53    private ComponentName getWebSearchComponent() {
54        Intent webSearchIntent = new Intent(Intent.ACTION_WEB_SEARCH);
55        PackageManager pm = getPackageManager();
56        return webSearchIntent.resolveActivity(pm);
57    }
58
59    private void testWebSuggestions() {
60        ComponentName webComponent = getWebSearchComponent();
61        checkSource("WEB", webComponent, queries);
62    }
63
64}
65