The source headers, LICENSE files, and license metadata had drifted apart. Align the entire project to MIT: - Convert every source-file header to the MIT text across all comment styles (Go, TS, TSX, JS, MJS, SQL, CSS, GraphQL, shell), including SPDX-License-Identifier tags - Set the root and cookie-banner LICENSE files to the MIT text with a "MIT License" title line - Switch the package.json license fields, Docker image label, and cookie-banner README to MIT - Update docs and the genmodels header generator accordingly - Normalize copyright lines to a single format (Copyright (c) <year(s)> Probo Inc <hello@probo.com>.): unify the hello@getprobo.com and hello@probo.inc emails to hello@probo.com and the comma-separated years to a hyphenated range Genuine third-party references are intentionally left untouched: the Lucide icon attributions (Lucide is ISC) and the trivy dependency license allowlist. Signed-off-by: Sacha Al Himdani <sacha@probo.com>
195 lines
6.5 KiB
Go
195 lines
6.5 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
package drivers
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"go.probo.inc/probo/pkg/coredata"
|
|
)
|
|
|
|
// TestSigNozDriver replays a cassette (recorded against SigNoz Cloud, then
|
|
// anonymized) covering the role/status matrix and exercises both the driver
|
|
// (GET /api/v1/user) and the name resolver (GET /api/v2/orgs/me).
|
|
func TestSigNozDriver(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
rec := newRecorder(t, "testdata/signoz", "SIGNOZ_API_KEY")
|
|
client := newVCRClientWithHeader(rec, "SIGNOZ-API-KEY", os.Getenv("SIGNOZ_API_KEY"))
|
|
|
|
baseURL := os.Getenv("SIGNOZ_BASE_URL")
|
|
if baseURL == "" {
|
|
baseURL = "https://signoz.example.com"
|
|
}
|
|
|
|
records, err := NewSigNozDriver(client, baseURL).ListAccounts(context.Background())
|
|
require.NoError(t, err)
|
|
require.Len(t, records, 5) // the no-email user is skipped
|
|
|
|
// ADMIN role -> admin.
|
|
assert.Equal(t, "admin@example.com", records[0].Email)
|
|
assert.Equal(t, "Admin User", records[0].FullName)
|
|
assert.Equal(t, []string{"Admin"}, records[0].Roles)
|
|
assert.True(t, records[0].IsAdmin)
|
|
assert.Equal(t, "00000000-0000-4000-8000-000000000001", records[0].ExternalID)
|
|
assert.Equal(t, coredata.MFAStatusUnknown, records[0].MFAStatus)
|
|
require.NotNil(t, records[0].Active)
|
|
assert.True(t, *records[0].Active)
|
|
require.NotNil(t, records[0].CreatedAt)
|
|
|
|
// isRoot -> admin even with a non-admin role.
|
|
assert.Equal(t, "owner@example.com", records[1].Email)
|
|
assert.Equal(t, []string{"Viewer"}, records[1].Roles)
|
|
assert.True(t, records[1].IsAdmin)
|
|
|
|
// Managed-role display name -> Editor; not admin.
|
|
assert.Equal(t, "editor@example.com", records[2].Email)
|
|
assert.Equal(t, []string{"Editor"}, records[2].Roles)
|
|
assert.False(t, records[2].IsAdmin)
|
|
require.NotNil(t, records[2].Active)
|
|
assert.True(t, *records[2].Active)
|
|
|
|
// pending_invite -> inactive.
|
|
assert.Equal(t, "invited@example.com", records[3].Email)
|
|
assert.Equal(t, []string{"Viewer"}, records[3].Roles)
|
|
require.NotNil(t, records[3].Active)
|
|
assert.False(t, *records[3].Active)
|
|
|
|
// deleted -> inactive.
|
|
assert.Equal(t, "removed@example.com", records[4].Email)
|
|
assert.Equal(t, []string{"Editor"}, records[4].Roles)
|
|
require.NotNil(t, records[4].Active)
|
|
assert.False(t, *records[4].Active)
|
|
|
|
name, err := NewSigNozNameResolver(client, baseURL).ResolveInstanceName(context.Background())
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "Example Org", name)
|
|
}
|
|
|
|
func TestSigNozDriverListAccountsEmptyData(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
for name, payload := range map[string]string{
|
|
"null data": `{"status":"success","data":null}`,
|
|
"empty array": `{"status":"success","data":[]}`,
|
|
} {
|
|
t.Run(name, func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
_, _ = w.Write([]byte(payload))
|
|
}))
|
|
defer srv.Close()
|
|
|
|
records, err := NewSigNozDriver(srv.Client(), srv.URL).ListAccounts(context.Background())
|
|
require.NoError(t, err)
|
|
assert.Empty(t, records)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSigNozDriverListAccountsErrorStatus(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
|
|
w.WriteHeader(http.StatusForbidden)
|
|
_, _ = w.Write([]byte(`{"status":"error"}`))
|
|
}))
|
|
defer srv.Close()
|
|
|
|
_, err := NewSigNozDriver(srv.Client(), srv.URL).ListAccounts(context.Background())
|
|
require.Error(t, err)
|
|
assert.Contains(t, err.Error(), "unexpected status 403")
|
|
}
|
|
|
|
func TestSigNozRoles(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
for in, want := range map[string][]string{
|
|
"ADMIN": {"Admin"},
|
|
"signoz-admin": {"Admin"},
|
|
"EDITOR": {"Editor"},
|
|
"signoz-editor": {"Editor"},
|
|
"VIEWER": {"Viewer"},
|
|
"signoz-viewer": {"Viewer"},
|
|
"": {},
|
|
" ": {},
|
|
"custom-role": {"custom-role"}, // unknown role preserved verbatim
|
|
"superadmin": {"superadmin"}, // contains "admin" but must NOT be promoted
|
|
} {
|
|
assert.Equalf(t, want, sigNozRoles(in), "role %q", in)
|
|
}
|
|
}
|
|
|
|
func TestSigNozActiveStatus(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
active := sigNozActiveStatus("active")
|
|
require.NotNil(t, active)
|
|
assert.True(t, *active)
|
|
|
|
for _, status := range []string{"pending_invite", "deleted"} {
|
|
v := sigNozActiveStatus(status)
|
|
require.NotNilf(t, v, "status %q", status)
|
|
assert.Falsef(t, *v, "status %q", status)
|
|
}
|
|
|
|
assert.Nil(t, sigNozActiveStatus("something_unexpected"))
|
|
}
|
|
|
|
func TestSigNozNameResolver(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("falls back to name when displayName is empty", func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
_, _ = w.Write([]byte(`{"status":"success","data":{"displayName":"","name":"acme"}}`))
|
|
}))
|
|
defer srv.Close()
|
|
|
|
name, err := NewSigNozNameResolver(srv.Client(), srv.URL).ResolveInstanceName(context.Background())
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "acme", name)
|
|
})
|
|
|
|
t.Run("returns empty without error on terminal failure", func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
|
|
w.WriteHeader(http.StatusForbidden)
|
|
}))
|
|
defer srv.Close()
|
|
|
|
name, err := NewSigNozNameResolver(srv.Client(), srv.URL).ResolveInstanceName(context.Background())
|
|
require.NoError(t, err)
|
|
assert.Empty(t, name)
|
|
})
|
|
}
|