blob: 02b9bf24496fdc1427b2d446a7495d448cbf55aa [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package rbacframe_test
import (
"context"
"github.com/apache/servicecomb-service-center/pkg/rbacframe"
"github.com/go-chassis/go-chassis/security/secret"
"github.com/go-chassis/go-chassis/security/token"
"github.com/stretchr/testify/assert"
"testing"
)
func TestFromContext(t *testing.T) {
ctx := rbacframe.NewContext(context.TODO(), map[string]interface{}{
rbacframe.ClaimsUser: "root",
rbacframe.ClaimsRole: "admin",
})
c := rbacframe.FromContext(ctx)
claims := c.(map[string]interface{})
u := claims[rbacframe.ClaimsUser]
r := claims[rbacframe.ClaimsRole]
assert.Equal(t, "root", u)
assert.Equal(t, "admin", r)
a, err := rbacframe.AccountFromContext(ctx)
assert.NoError(t, err)
assert.Equal(t, "root", a.Name)
assert.Equal(t, "admin", a.Role)
}
func TestMustAuth(t *testing.T) {
rbacframe.Add2WhiteAPIList("/test")
assert.False(t, rbacframe.MustAuth("/test"))
assert.True(t, rbacframe.MustAuth("/auth"))
}
func TestAuthenticate(t *testing.T) {
pri, pub, err := secret.GenRSAKeyPair(4096)
assert.NoError(t, err)
to, err := token.Sign(map[string]interface{}{
rbacframe.ClaimsUser: "root",
rbacframe.ClaimsRole: "admin",
}, pri, token.WithSigningMethod(token.RS512))
assert.NoError(t, err)
_, err = rbacframe.Authenticate(to, pub)
assert.NoError(t, err)
_, err = rbacframe.Authenticate("token", nil)
assert.Error(t, err)
}