OAuth2: Add "POST /api/v1/oauth/revoke" API endpoint #782 #808 #3943

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2024-01-10 12:21:43 +01:00
parent 481c207897
commit 7a05c5553b
20 changed files with 313 additions and 110 deletions

View File

@@ -5,8 +5,9 @@ import (
"testing"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
"github.com/photoprism/photoprism/pkg/header"
)
func TestAddVideoCacheHeader(t *testing.T) {
@@ -15,7 +16,7 @@ func TestAddVideoCacheHeader(t *testing.T) {
c, _ := gin.CreateTestContext(r)
AddVideoCacheHeader(c, true)
h := r.Header()
s := h["Cache-Control"][0]
s := h[header.CacheControl][0]
assert.Equal(t, "public, max-age=21600, immutable", s)
})
t.Run("Private", func(t *testing.T) {
@@ -23,7 +24,7 @@ func TestAddVideoCacheHeader(t *testing.T) {
c, _ := gin.CreateTestContext(r)
AddVideoCacheHeader(c, false)
h := r.Header()
s := h["Cache-Control"][0]
s := h[header.CacheControl][0]
assert.Equal(t, "private, max-age=21600, immutable", s)
})
}