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
|
/*
* 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 com.android.unit_tests;
import android.content.UriMatcher;
import android.net.Uri;
import android.test.suitebuilder.annotation.SmallTest;
import junit.framework.TestCase;
public class UriMatcherTest extends TestCase
{
static final int ROOT = 0;
static final int PEOPLE = 1;
static final int PEOPLE_ID = 2;
static final int PEOPLE_PHONES = 3;
static final int PEOPLE_PHONES_ID = 4;
static final int PEOPLE_ADDRESSES = 5;
static final int PEOPLE_ADDRESSES_ID = 6;
static final int PEOPLE_CONTACTMETH = 7;
static final int PEOPLE_CONTACTMETH_ID = 8;
static final int CALLS = 9;
static final int CALLS_ID = 10;
static final int CALLERID = 11;
static final int CALLERID_TEXT = 12;
static final int FILTERRECENT = 13;
@SmallTest
public void testContentUris() {
check("content://asdf", UriMatcher.NO_MATCH);
check("content://people", PEOPLE);
check("content://people/1", PEOPLE_ID);
check("content://people/asdf", UriMatcher.NO_MATCH);
check("content://people/2/phones", PEOPLE_PHONES);
check("content://people/2/phones/3", PEOPLE_PHONES_ID);
check("content://people/2/phones/asdf", UriMatcher.NO_MATCH);
check("content://people/2/addresses", PEOPLE_ADDRESSES);
check("content://people/2/addresses/3", PEOPLE_ADDRESSES_ID);
check("content://people/2/addresses/asdf", UriMatcher.NO_MATCH);
check("content://people/2/contact-methods", PEOPLE_CONTACTMETH);
check("content://people/2/contact-methods/3", PEOPLE_CONTACTMETH_ID);
check("content://people/2/contact-methods/asdf", UriMatcher.NO_MATCH);
check("content://calls", CALLS);
check("content://calls/1", CALLS_ID);
check("content://calls/asdf", UriMatcher.NO_MATCH);
check("content://caller-id", CALLERID);
check("content://caller-id/asdf", CALLERID_TEXT);
check("content://caller-id/1", CALLERID_TEXT);
check("content://filter-recent", FILTERRECENT);
}
private static final UriMatcher mURLMatcher = new UriMatcher(ROOT);
static
{
mURLMatcher.addURI("people", null, PEOPLE);
mURLMatcher.addURI("people", "#", PEOPLE_ID);
mURLMatcher.addURI("people", "#/phones", PEOPLE_PHONES);
mURLMatcher.addURI("people", "#/phones/blah", PEOPLE_PHONES_ID);
mURLMatcher.addURI("people", "#/phones/#", PEOPLE_PHONES_ID);
mURLMatcher.addURI("people", "#/addresses", PEOPLE_ADDRESSES);
mURLMatcher.addURI("people", "#/addresses/#", PEOPLE_ADDRESSES_ID);
mURLMatcher.addURI("people", "#/contact-methods", PEOPLE_CONTACTMETH);
mURLMatcher.addURI("people", "#/contact-methods/#", PEOPLE_CONTACTMETH_ID);
mURLMatcher.addURI("calls", null, CALLS);
mURLMatcher.addURI("calls", "#", CALLS_ID);
mURLMatcher.addURI("caller-id", null, CALLERID);
mURLMatcher.addURI("caller-id", "*", CALLERID_TEXT);
mURLMatcher.addURI("filter-recent", null, FILTERRECENT);
}
void check(String uri, int expected)
{
int result = mURLMatcher.match(Uri.parse(uri));
if (result != expected) {
String msg = "failed on " + uri;
msg += " expected " + expected + " got " + result;
throw new RuntimeException(msg);
}
}
}
|