blob: a8e0acdb96d61b22e7e7084c73f044e52e54705f [file] [log] [blame]
/*
* Copyright (C) 2017 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 libcore.libcore.timezone;
import org.junit.Test;
import libcore.timezone.TimeZoneDataFiles;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
public class TimeZoneDataFilesTest {
@Test
public void getTimeZoneFilePaths() {
String[] paths = TimeZoneDataFiles.getTimeZoneFilePaths("foo");
assertEquals(4, paths.length);
assertTrue(paths[0].contains("/misc/zoneinfo/current/"));
assertTrue(paths[0].endsWith("/foo"));
assertTrue(paths[1].startsWith("/apex/com.android.tzdata/"));
assertTrue(paths[1].endsWith("/foo"));
assertTrue(paths[2].startsWith("/apex/com.android.runtime/"));
assertTrue(paths[2].endsWith("/foo"));
assertTrue(paths[3].contains("/usr/share/zoneinfo/"));
assertTrue(paths[3].endsWith("/foo"));
}
// http://b/34867424
@Test
public void generateIcuDataPath_includesTimeZoneOverride() {
String icuDataPath = System.getProperty("android.icu.impl.ICUBinary.dataPath");
assertEquals(icuDataPath, TimeZoneDataFiles.generateIcuDataPath());
String[] paths = icuDataPath.split(":");
assertEquals(3, paths.length);
assertTrue(paths[0].contains("/misc/zoneinfo/current/icu"));
assertTrue(paths[1].startsWith("/apex/com.android.tzdata"));
assertTrue(paths[2].contains("/etc/icu"));
}
}