mirror of
https://github.com/go-gitea/gitea.git
synced 2026-01-25 19:15:24 +01:00
37 lines
930 B
Go
37 lines
930 B
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package security
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
"code.gitea.io/gitea/services/contexttest"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDeleteOpenIDReturnsNotFoundForOtherUsersAddress(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
ctx, _ := contexttest.MockContext(t, "POST /user/settings/security")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
ctx.SetFormString("id", "1")
|
|
|
|
DeleteOpenID(ctx)
|
|
|
|
assert.Equal(t, http.StatusNotFound, ctx.Resp.WrittenStatus())
|
|
}
|
|
|
|
func TestToggleOpenIDVisibilityReturnsNotFoundForOtherUsersAddress(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
ctx, _ := contexttest.MockContext(t, "POST /user/settings/security")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
ctx.SetFormString("id", "1")
|
|
|
|
ToggleOpenIDVisibility(ctx)
|
|
|
|
assert.Equal(t, http.StatusNotFound, ctx.Resp.WrittenStatus())
|
|
}
|