You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
649 B
29 lines
649 B
package utils
|
|
|
|
import (
|
|
"Open_IM/pkg/utils"
|
|
"path/filepath"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
var (
|
|
_, b, _, _ = runtime.Caller(0)
|
|
// Root folder of this project
|
|
Root = filepath.Join(filepath.Dir(b), "../..")
|
|
)
|
|
|
|
func Test_GenSmallImage(t *testing.T) {
|
|
println(Root)
|
|
err := utils.GenSmallImage(Root+"/docs/open-im-logo.png", Root+"/out-test/open-im-logo-test.png")
|
|
assert.Nil(t, err)
|
|
|
|
err = utils.GenSmallImage(Root+"/docs/open-im-logo.png", "out-test/open-im-logo-test.png")
|
|
assert.Nil(t, err)
|
|
|
|
err = utils.GenSmallImage(Root+"/docs/Architecture.jpg", "out-test/Architecture-test.jpg")
|
|
assert.Nil(t, err)
|
|
}
|