mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-12-07 14:09:47 +00:00
To make sure that the code stays maintainable, I added the `importas` linter to ensure that the imports for models and services stay consistent. I realised that this might be needed after finding some discrepancies between singular/plural naming, and, especially in the case of the `forgejo.org/services/context` package, multiple different aliases like `gitea_ctx`, `app_context` and `forgejo_context`. I decided for `app_context`, as that seems to be the most commonly used naming. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/10253 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: nachtjasmin <nachtjasmin@posteo.de> Co-committed-by: nachtjasmin <nachtjasmin@posteo.de>
59 lines
1.8 KiB
Go
59 lines
1.8 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package avatars_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
avatar_model "forgejo.org/models/avatars"
|
|
"forgejo.org/models/db"
|
|
system_model "forgejo.org/models/system"
|
|
"forgejo.org/modules/setting"
|
|
"forgejo.org/modules/setting/config"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
const gravatarSource = "https://secure.gravatar.com/avatar/"
|
|
|
|
func disableGravatar(t *testing.T) {
|
|
err := system_model.SetSettings(db.DefaultContext, map[string]string{setting.Config().Picture.EnableFederatedAvatar.DynKey(): "false"})
|
|
require.NoError(t, err)
|
|
err = system_model.SetSettings(db.DefaultContext, map[string]string{setting.Config().Picture.DisableGravatar.DynKey(): "true"})
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func enableGravatar(t *testing.T) {
|
|
err := system_model.SetSettings(db.DefaultContext, map[string]string{setting.Config().Picture.DisableGravatar.DynKey(): "false"})
|
|
require.NoError(t, err)
|
|
setting.GravatarSource = gravatarSource
|
|
}
|
|
|
|
func TestHashEmail(t *testing.T) {
|
|
assert.Equal(t,
|
|
"d41d8cd98f00b204e9800998ecf8427e",
|
|
avatar_model.HashEmail(""),
|
|
)
|
|
assert.Equal(t,
|
|
"353cbad9b58e69c96154ad99f92bedc7",
|
|
avatar_model.HashEmail("gitea@example.com"),
|
|
)
|
|
}
|
|
|
|
func TestSizedAvatarLink(t *testing.T) {
|
|
setting.AppSubURL = "/testsuburl"
|
|
|
|
disableGravatar(t)
|
|
config.GetDynGetter().InvalidateCache()
|
|
assert.Equal(t, "/testsuburl/assets/img/avatar_default.png",
|
|
avatar_model.GenerateEmailAvatarFastLink(db.DefaultContext, "gitea@example.com", 100))
|
|
|
|
enableGravatar(t)
|
|
config.GetDynGetter().InvalidateCache()
|
|
assert.Equal(t,
|
|
"https://secure.gravatar.com/avatar/353cbad9b58e69c96154ad99f92bedc7?d=identicon&s=100",
|
|
avatar_model.GenerateEmailAvatarFastLink(db.DefaultContext, "gitea@example.com", 100),
|
|
)
|
|
}
|