Home | History | Annotate | Download | only in benchmarks
      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 
     17 package com.android.quicksearchbox.benchmarks;
     18 
     19 import android.content.ComponentName;
     20 import android.content.Intent;
     21 import android.content.pm.PackageManager;
     22 
     23 /*
     24 
     25 To build and run:
     26 
     27 mmm 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/.WebConcurrency \
     32 && adb logcat
     33 
     34 */
     35 
     36 public class WebConcurrency extends SourceLatency {
     37 
     38     private static final String QUERY = "hillary clinton";
     39 
     40     // Delay between queries (in milliseconds).
     41     private static final long DELAY_MS = 150;
     42 
     43     @Override
     44     protected void onResume() {
     45         super.onResume();
     46         testEnhancedGoogleSearchConcurrent();
     47         finish();
     48     }
     49 
     50     private ComponentName getWebSearchComponent() {
     51         Intent webSearchIntent = new Intent(Intent.ACTION_WEB_SEARCH);
     52         PackageManager pm = getPackageManager();
     53         return webSearchIntent.resolveActivity(pm);
     54     }
     55 
     56     private void testEnhancedGoogleSearchConcurrent() {
     57         ComponentName webComponent = getWebSearchComponent();
     58         checkSourceConcurrent("WEB", webComponent, QUERY, DELAY_MS);
     59     }
     60 
     61 }
     62