mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 01:20:26 +08:00
29 lines
681 B
Go
29 lines
681 B
Go
// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
|
|
|
|
package compressions_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/compressions"
|
|
"github.com/iwind/TeaGo/assert"
|
|
)
|
|
|
|
func TestGenerateCompressLevel(t *testing.T) {
|
|
var a = assert.NewAssertion(t)
|
|
|
|
t.Log(compressions.GenerateCompressLevel(0, 10))
|
|
t.Log(compressions.GenerateCompressLevel(1, 10))
|
|
t.Log(compressions.GenerateCompressLevel(1, 4))
|
|
|
|
{
|
|
var level = compressions.GenerateCompressLevel(1, 2)
|
|
t.Log(level)
|
|
a.IsTrue(level >= 1 && level <= 2)
|
|
}
|
|
}
|
|
|
|
func TestCalculatePoolSize(t *testing.T) {
|
|
t.Log(compressions.CalculatePoolSize())
|
|
}
|