2016-02-15 09:44:55 +05:30
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2014-03-23 15:43:23 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2016-02-15 09:44:55 +05:30
|
|
|
|
|
|
|
package avatar
|
2014-03-23 09:54:09 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2014-03-23 15:43:23 +05:30
|
|
|
|
2016-02-15 09:44:55 +05:30
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
2014-03-23 09:54:09 +05:30
|
|
|
)
|
|
|
|
|
2016-02-15 09:44:55 +05:30
|
|
|
func Test_RandomImage(t *testing.T) {
|
|
|
|
Convey("Generate a random avatar from email", t, func() {
|
|
|
|
_, err := RandomImage([]byte("gogs@local"))
|
|
|
|
So(err, ShouldBeNil)
|
2014-03-24 18:46:00 +05:30
|
|
|
|
2016-02-15 09:44:55 +05:30
|
|
|
Convey("Try to generate an image with size zero", func() {
|
|
|
|
_, err := RandomImageSize(0, []byte("gogs@local"))
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
})
|
2014-03-24 18:46:00 +05:30
|
|
|
}
|