mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-02 23:41:05 +00:00 
			
		
		
		
	Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			766 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			766 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2022 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package setting
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
	ini "gopkg.in/ini.v1"
 | 
						|
)
 | 
						|
 | 
						|
func TestMustBytes(t *testing.T) {
 | 
						|
	test := func(value string) int64 {
 | 
						|
		sec, _ := ini.Empty().NewSection("test")
 | 
						|
		sec.NewKey("VALUE", value)
 | 
						|
 | 
						|
		return mustBytes(sec, "VALUE")
 | 
						|
	}
 | 
						|
 | 
						|
	assert.EqualValues(t, -1, test(""))
 | 
						|
	assert.EqualValues(t, -1, test("-1"))
 | 
						|
	assert.EqualValues(t, 0, test("0"))
 | 
						|
	assert.EqualValues(t, 1, test("1"))
 | 
						|
	assert.EqualValues(t, 10000, test("10000"))
 | 
						|
	assert.EqualValues(t, 1000000, test("1 mb"))
 | 
						|
	assert.EqualValues(t, 1048576, test("1mib"))
 | 
						|
	assert.EqualValues(t, 1782579, test("1.7mib"))
 | 
						|
	assert.EqualValues(t, -1, test("1 yib")) // too large
 | 
						|
}
 |