aboutsummaryrefslogtreecommitdiffstats
path: root/common/size_test.go
blob: c90eabc261854223d5d0fc3e3a1216a1746105b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package common

import (
    checker "gopkg.in/check.v1"
)

type SizeSuite struct{}

var _ = checker.Suite(&SizeSuite{})

func (s *SizeSuite) TestStorageSizeString(c *checker.C) {
    data1 := 2381273
    data2 := 2192
    data3 := 12

    exp1 := "2.38 mB"
    exp2 := "2.19 kB"
    exp3 := "12.00 B"

    c.Assert(StorageSize(data1).String(), checker.Equals, exp1)
    c.Assert(StorageSize(data2).String(), checker.Equals, exp2)
    c.Assert(StorageSize(data3).String(), checker.Equals, exp3)
}