navidrome/core/auth/auth_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

110 lines
2.8 KiB
Go
Raw Normal View History

2020-02-06 22:48:35 +01:00
package auth_test
import (
"testing"
"time"
2021-04-30 16:00:03 +02:00
"github.com/navidrome/navidrome/conf"
"github.com/navidrome/navidrome/consts"
"github.com/navidrome/navidrome/model"
2020-02-06 22:48:35 +01:00
"github.com/dgrijalva/jwt-go"
"github.com/navidrome/navidrome/core/auth"
2020-02-06 22:48:35 +01:00
"github.com/navidrome/navidrome/log"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestAuth(t *testing.T) {
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
RunSpecs(t, "Auth Test Suite")
}
2021-04-30 16:00:03 +02:00
const (
testJWTSecret = "not so secret"
oneDay = 24 * time.Hour
)
2020-02-06 22:48:35 +01:00
var _ = Describe("Auth", func() {
2021-04-30 16:00:03 +02:00
BeforeSuite(func() {
conf.Server.SessionTimeout = 2 * oneDay
})
2020-02-06 22:48:35 +01:00
BeforeEach(func() {
2021-04-30 16:00:03 +02:00
auth.Secret = []byte(testJWTSecret)
2020-02-06 22:48:35 +01:00
})
2021-04-30 16:00:03 +02:00
Describe("Validate", func() {
2020-02-06 22:48:35 +01:00
It("returns error with an invalid JWT token", func() {
_, err := auth.Validate("invalid.token")
Expect(err).To(Not(BeNil()))
})
It("returns the claims from a valid JWT token", func() {
token := jwt.New(jwt.SigningMethodHS256)
claims := token.Claims.(jwt.MapClaims)
claims["iss"] = "issuer"
claims["exp"] = time.Now().Add(1 * time.Minute).Unix()
2021-04-30 16:00:03 +02:00
tokenStr, _ := token.SignedString(auth.Secret)
2020-02-06 22:48:35 +01:00
decodedClaims, err := auth.Validate(tokenStr)
Expect(err).To(BeNil())
Expect(decodedClaims["iss"]).To(Equal("issuer"))
})
It("returns ErrExpired if the `exp` field is in the past", func() {
token := jwt.New(jwt.SigningMethodHS256)
claims := token.Claims.(jwt.MapClaims)
claims["iss"] = "issuer"
claims["exp"] = time.Now().Add(-1 * time.Minute).Unix()
2021-04-30 16:00:03 +02:00
tokenStr, _ := token.SignedString(auth.Secret)
2020-02-06 22:48:35 +01:00
_, err := auth.Validate(tokenStr)
Expect(err).To(MatchError("Token is expired"))
})
})
2021-04-30 16:00:03 +02:00
Describe("CreateToken", func() {
It("creates a valid token", func() {
u := &model.User{
ID: "123",
UserName: "johndoe",
IsAdmin: true,
}
tokenStr, err := auth.CreateToken(u)
Expect(err).To(BeNil())
claims, err := auth.Validate(tokenStr)
Expect(err).To(BeNil())
Expect(claims["iss"]).To(Equal(consts.JWTIssuer))
Expect(claims["sub"]).To(Equal("johndoe"))
Expect(claims["uid"]).To(Equal("123"))
Expect(claims["adm"]).To(Equal(true))
exp := time.Unix(int64(claims["exp"].(float64)), 0)
Expect(exp).To(BeTemporally(">", time.Now()))
})
})
Describe("TouchToken", func() {
It("updates the expiration time", func() {
yesterday := time.Now().Add(-oneDay)
token := jwt.New(jwt.SigningMethodHS256)
claims := token.Claims.(jwt.MapClaims)
claims["iss"] = "issuer"
claims["exp"] = yesterday.Unix()
touched, err := auth.TouchToken(token)
Expect(err).To(BeNil())
decodedClaims, err := auth.Validate(touched)
Expect(err).To(BeNil())
expiration := time.Unix(int64(decodedClaims["exp"].(float64)), 0)
Expect(expiration.Sub(yesterday)).To(BeNumerically(">=", oneDay))
})
})
2020-02-06 22:48:35 +01:00
})