blob: d96b4d8e55793a7510231550722acc8d4a412922 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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 org.apache.geode.management.internal.cli.util;
import static org.assertj.core.api.Assertions.assertThat;
import org.junit.Before;
import org.junit.Test;
public class BytesToStringTest {
private static long KB = 1024;
private static long MB = 1024 * KB;
private static long GB = 1024 * MB;
private static long TB = 1024 * GB;
private BytesToString bytesToString;
@Before
public void before() {
bytesToString = new BytesToString();
}
@Test
public void testFiveHundredBytes() {
String value = bytesToString.of(500);
assertThat(value).isEqualTo("500 Byte(s)");
}
@Test
public void testOneKb() {
String value = bytesToString.of(KB);
assertThat(value).isEqualTo("1 KB");
}
@Test
public void testThreeKb() {
String value = bytesToString.of(3 * KB);
assertThat(value).isEqualTo("3 KB");
}
@Test
public void testFractionalKB() {
String value = bytesToString.of(KB + 500);
assertThat(value).isEqualTo("1.49 KB");
}
@Test
public void testOneMB() {
String value = bytesToString.of(MB);
assertThat(value).isEqualTo("1 MB");
}
@Test
public void testThreeMB() {
String value = bytesToString.of(3 * MB);
assertThat(value).isEqualTo("3 MB");
}
@Test
public void testFractionalMB() {
String value = bytesToString.of(MB + 500 * KB);
assertThat(value).isEqualTo("1.49 MB");
}
@Test
public void testOneGB() {
String value = bytesToString.of(GB);
assertThat(value).isEqualTo("1 GB");
}
@Test
public void testThreeGB() {
String value = bytesToString.of(3 * GB);
assertThat(value).isEqualTo("3 GB");
}
@Test
public void testFractionalGB() {
String value = bytesToString.of(GB + 500 * MB);
assertThat(value).isEqualTo("1.49 GB");
}
@Test
public void testOneTB() {
String value = bytesToString.of(TB);
assertThat(value).isEqualTo("1 TB");
}
@Test
public void testThreeTB() {
String value = bytesToString.of(3 * GB);
assertThat(value).isEqualTo("3 GB");
}
@Test
public void testFractionalTB() {
String value = bytesToString.of(TB + 500 * GB);
assertThat(value).isEqualTo("1.49 TB");
}
}