1/*
2 * Copyright (C) 2012 The Libphonenumber Authors
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.i18n.phonenumbers;
18
19import com.android.i18n.phonenumbers.Phonemetadata.PhoneMetadata;
20
21import junit.framework.TestCase;
22
23/**
24 * Some basic tests to check that the phone number metadata can be correctly loaded.
25 */
26public class MetadataManagerTest extends TestCase {
27
28  public void testAlternateFormatsContainsData() throws Exception {
29    // We should have some data for Germany.
30    PhoneMetadata germanyAlternateFormats = MetadataManager.getAlternateFormatsForCountry(49);
31    assertNotNull(germanyAlternateFormats);
32    assertTrue(germanyAlternateFormats.numberFormats().size() > 0);
33  }
34
35  public void testShortNumberMetadataContainsData() throws Exception {
36    // We should have some data for France.
37    PhoneMetadata franceShortNumberMetadata = MetadataManager.getShortNumberMetadataForRegion("FR");
38    assertNotNull(franceShortNumberMetadata);
39    assertTrue(franceShortNumberMetadata.hasShortCode());
40  }
41
42  public void testAlternateFormatsFailsGracefully() throws Exception {
43    PhoneMetadata noAlternateFormats = MetadataManager.getAlternateFormatsForCountry(999);
44    assertNull(noAlternateFormats);
45  }
46
47  public void testShortNumberMetadataFailsGracefully() throws Exception {
48    PhoneMetadata noShortNumberMetadata = MetadataManager.getShortNumberMetadataForRegion("XXX");
49    assertNull(noShortNumberMetadata);
50  }
51}
52