James Moger
2012-10-01 eb1405f736f2f98e14215774dd53eea9b9a77017
commit | author | age
ec97f7 1 /*
JM 2  * Copyright 2011 gitblit.com.
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 package com.gitblit.tests;
17
7e8873 18 import static org.junit.Assert.assertEquals;
JM 19
20 import org.junit.Test;
ec97f7 21
JM 22 import com.gitblit.utils.ByteFormat;
23
7e8873 24 public class ByteFormatTest {
ec97f7 25
7e8873 26     @Test
ec97f7 27     public void testByteFormat() throws Exception {
JM 28         ByteFormat format = new ByteFormat();
7e8873 29         assertEquals("10 b", format.format(10));
JM 30         assertEquals("10 KB", format.format(1024 * 10));
31         assertEquals("1,000 KB", format.format(1024 * 1000));
32         assertEquals("2.0 MB", format.format(2 * 1024 * 1000));
33         assertEquals("1,000.0 MB", format.format(1024 * 1024 * 1000));
34         assertEquals("2.0 GB", format.format(2 * 1024 * 1024 * 1000));
ec97f7 35     }
JM 36 }