avatar_test.go 568 B

123456789101112131415161718192021222324
  1. // Copyright 2016 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package avatar
  5. import (
  6. "testing"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func Test_RandomImage(t *testing.T) {
  10. Convey("Generate a random avatar from email", t, func() {
  11. _, err := RandomImage([]byte("gogs@local"))
  12. So(err, ShouldBeNil)
  13. Convey("Try to generate an image with size zero", func() {
  14. _, err := RandomImageSize(0, []byte("gogs@local"))
  15. So(err, ShouldNotBeNil)
  16. })
  17. })
  18. }