diff options
author | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-02-02 20:33:36 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-02-02 20:33:36 +0800 |
commit | d7d094bd8a5520b758f34d3fb0439c6a1ddb39d3 (patch) | |
tree | f8ba37fee85af46ad98b815fa70574ad3dbec9f2 /models/user_test.go | |
parent | 2db0ffe69ef80def358b96ff2c3804c79c9174c3 (diff) | |
download | gitea-d7d094bd8a5520b758f34d3fb0439c6a1ddb39d3.tar.gz gitea-d7d094bd8a5520b758f34d3fb0439c6a1ddb39d3.zip |
fix: ignore email notifications if user is not active. (#820)
Diffstat (limited to 'models/user_test.go')
-rw-r--r-- | models/user_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/models/user_test.go b/models/user_test.go new file mode 100644 index 0000000000..fb3c46d223 --- /dev/null +++ b/models/user_test.go @@ -0,0 +1,19 @@ +// Copyright 2017 The Gitea Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package models + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestGetUserEmailsByNames(t *testing.T) { + assert.NoError(t, PrepareTestDatabase()) + + // ignore none active user email + assert.Equal(t, []string{"user8@example.com"}, GetUserEmailsByNames([]string{"user8", "user9"})) + assert.Equal(t, []string{"user8@example.com", "user5@example.com"}, GetUserEmailsByNames([]string{"user8", "user5"})) +} |