2016-02-14 21:14:55 -07:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2014-03-23 04:13:23 -06:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2016-02-14 21:14:55 -07:00
|
|
|
|
|
|
|
package avatar
|
2014-03-22 22:24:09 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2014-03-23 04:13:23 -06:00
|
|
|
|
2017-02-07 23:29:07 -07:00
|
|
|
"github.com/stretchr/testify/assert"
|
2014-03-22 22:24:09 -06:00
|
|
|
)
|
|
|
|
|
2016-02-14 21:14:55 -07:00
|
|
|
func Test_RandomImage(t *testing.T) {
|
2017-02-07 23:29:07 -07:00
|
|
|
_, err := RandomImage([]byte("gogs@local"))
|
|
|
|
assert.NoError(t, err)
|
2014-03-24 07:16:00 -06:00
|
|
|
|
2017-02-07 23:29:07 -07:00
|
|
|
_, err = RandomImageSize(0, []byte("gogs@local"))
|
|
|
|
assert.Error(t, err)
|
2014-03-24 07:16:00 -06:00
|
|
|
}
|