mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
57 lines
2.0 KiB
Go
57 lines
2.0 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package acl
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func RequirePermissionDeniedError(t testing.TB, err error, authz Authorizer, _ *AuthorizerContext, resource Resource, accessLevel AccessLevel, resourceID string) {
|
|
t.Helper()
|
|
if err == nil {
|
|
t.Fatal("An error is expected but got nil.")
|
|
}
|
|
if v, ok := err.(PermissionDeniedError); ok {
|
|
require.Equal(t, v.Resource, resource)
|
|
require.Equal(t, v.AccessLevel, accessLevel)
|
|
require.Equal(t, v.ResourceID.Name, resourceID)
|
|
} else {
|
|
t.Fatalf("Expected a permission denied error got %T %vp", err, err)
|
|
}
|
|
}
|
|
|
|
func RequirePermissionDeniedMessage(t testing.TB, msg string, authz interface{}, _ *AuthorizerContext, resource Resource, accessLevel AccessLevel, resourceID string) {
|
|
require.NotEmpty(t, msg, "expected non-empty error message")
|
|
|
|
baseRegex := ` lacks permission '(\S*):(\S*)' on \"([^\"]*)\"(?: in partition \"([^\"]*)\" in namespace \"([^\"]*)\")?\s*$`
|
|
|
|
var resourceIDFound string
|
|
if authz == nil {
|
|
expr := "^Permission denied" + `: provided token` + baseRegex
|
|
re, _ := regexp.Compile(expr)
|
|
matched := re.FindStringSubmatch(msg)
|
|
|
|
require.NotNil(t, matched, fmt.Sprintf("RE %q didn't match %q", expr, msg))
|
|
require.Equal(t, string(resource), matched[1], "resource")
|
|
require.Equal(t, accessLevel.String(), matched[2], "access level")
|
|
resourceIDFound = matched[3]
|
|
} else {
|
|
expr := "^Permission denied" + `: token with AccessorID '(\S*)'` + baseRegex
|
|
re, _ := regexp.Compile(expr)
|
|
matched := re.FindStringSubmatch(msg)
|
|
|
|
require.NotNil(t, matched, fmt.Sprintf("RE %q didn't match %q", expr, msg))
|
|
require.Equal(t, extractAccessorID(authz), matched[1], "auth")
|
|
require.Equal(t, string(resource), matched[2], "resource")
|
|
require.Equal(t, accessLevel.String(), matched[3], "access level")
|
|
resourceIDFound = matched[4]
|
|
}
|
|
// AuthorizerContext information should be checked here
|
|
require.Contains(t, resourceIDFound, resourceID, "resource id")
|
|
}
|