alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Android example source code file (UrlInterceptRegistryTest.java)

This example Android source code file (UrlInterceptRegistryTest.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Android by Example" TM.

Java - Android tags/keywords

android, androidtestcase, cacheresult, map, mockurlintercepthandler, plugindata, string, test, urlinterceptregistrytest, util, utilities, utils, webkit

The UrlInterceptRegistryTest.java Android example source code

/*
 * Copyright (C) 2009 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.webkit;

import android.test.AndroidTestCase;
import android.util.Log;
import android.webkit.CacheManager.CacheResult;
import android.webkit.PluginData;
import android.webkit.UrlInterceptHandler;

import java.util.LinkedList;
import java.util.Map;

public class UrlInterceptRegistryTest extends AndroidTestCase {

    /**
     * To run these tests: $ mmm
     * frameworks/base/tests/CoreTests/android && adb remount && adb
     * sync $ adb shell am instrument -w  -e class \
     * android.webkit.UrlInterceptRegistryTest \
     * android.core/android.test.InstrumentationTestRunner
     */

    private static class MockUrlInterceptHandler implements UrlInterceptHandler {
        private PluginData mData;
        private String mUrl;

        public MockUrlInterceptHandler(PluginData data, String url) {
            mData = data;
            mUrl = url;
        }

        public CacheResult service(String url, Map<String, String> headers) {
            return null;
        }

        public PluginData getPluginData(String url,
                                        Map<String,
                                        String> headers) {
            if (mUrl.equals(url)) {
                return mData;
            }

            return null;
        }
    }

    public void testGetPluginData() {
        PluginData data = new PluginData(null, 0 , null, 200);
        String url = new String("url1");
        MockUrlInterceptHandler handler1 =
                new MockUrlInterceptHandler(data, url);

        data = new PluginData(null, 0 , null, 404);
        url = new String("url2");
        MockUrlInterceptHandler handler2 =
                new MockUrlInterceptHandler(data, url);

        assertTrue(UrlInterceptRegistry.registerHandler(handler1));
        assertTrue(UrlInterceptRegistry.registerHandler(handler2));

        data = UrlInterceptRegistry.getPluginData("url1", null);
        assertTrue(data != null);
        assertTrue(data.getStatusCode() == 200);

        data = UrlInterceptRegistry.getPluginData("url2", null);
        assertTrue(data != null);
        assertTrue(data.getStatusCode() == 404);

        assertTrue(UrlInterceptRegistry.unregisterHandler(handler1));
        assertTrue(UrlInterceptRegistry.unregisterHandler(handler2));

    }
}

Other Android examples (source code examples)

Here is a short list of links related to this Android UrlInterceptRegistryTest.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.