blob: 6acfb843702ca4b493aa9211680af854154564aa [file] [log] [blame]
/*
* Copyright (C) 2008 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.text.format.cts;
import java.math.BigDecimal;
import java.math.MathContext;
import android.test.AndroidTestCase;
import android.text.format.Formatter;
public class FormatterTest extends AndroidTestCase {
public void testFormatFileSize() {
// test null Context
assertEquals("", Formatter.formatFileSize(null, 0));
MathContext mc = MathContext.DECIMAL64;
BigDecimal bd = new BigDecimal((long) 1024, mc);
// test different long values with various length
assertEquals("0 B", Formatter.formatFileSize(mContext, 0));
assertEquals("1 B", Formatter.formatFileSize(mContext, 1));
assertEquals("9 B", Formatter.formatFileSize(mContext, 9));
assertEquals("10 B", Formatter.formatFileSize(mContext, 10));
assertEquals("99 B", Formatter.formatFileSize(mContext, 99));
assertEquals("100 B", Formatter.formatFileSize(mContext, 100));
assertEquals("900 B", Formatter.formatFileSize(mContext, 900));
assertEquals("0.88 KB", Formatter.formatFileSize(mContext, 901));
assertEquals("1.00 KB", Formatter.formatFileSize(mContext, bd.pow(1).longValue()));
assertEquals("1.00 MB", Formatter.formatFileSize(mContext, bd.pow(2).longValue()));
assertEquals("1.00 GB", Formatter.formatFileSize(mContext, bd.pow(3).longValue()));
assertEquals("1.00 TB", Formatter.formatFileSize(mContext, bd.pow(4).longValue()));
assertEquals("1.00 PB", Formatter.formatFileSize(mContext, bd.pow(5).longValue()));
assertEquals("1024 PB", Formatter.formatFileSize(mContext, bd.pow(6).longValue()));
// test Negative value
assertEquals("-1 B", Formatter.formatFileSize(mContext, -1));
}
public void testFormatIpAddress() {
assertEquals("1.0.168.192", Formatter.formatIpAddress(0xC0A80001));
assertEquals("1.0.0.127", Formatter.formatIpAddress(0x7F000001));
assertEquals("35.182.168.192", Formatter.formatIpAddress(0xC0A8B623));
assertEquals("0.255.255.255", Formatter.formatIpAddress(0xFFFFFF00));
assertEquals("222.5.15.10", Formatter.formatIpAddress(0x0A0F05DE));
}
}