teleport/lib/auth/moderated_sessions_test.go
Edoardo Spadolini 58b01b964b
Embed auth.Cache in auth.Server (#14698)
* Embed auth.Cache in auth.Server

* Hit the backend during Auth initialization

* Bypass the cache when rotating CAs

* Services.UpsertTrustedCluster is different

* Bypass the cache in waitForTunnelConnections

* Fix infinite recursion

* More cache bypassing during init and rotations

* Rename Services to Uncached in auth.Server

* Further cleanups

* Don't start the auth cache immediately

* Go back to Services rather than Uncached

* Comments and a missing method
2022-07-27 21:05:53 +00:00

143 lines
4.1 KiB
Go

/*
Copyright 2022 Gravitational, Inc.
Licensed 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 auth
import (
"context"
"testing"
"github.com/gravitational/trace"
"github.com/jonboulle/clockwork"
"github.com/stretchr/testify/require"
"github.com/gravitational/teleport/api/types"
"github.com/gravitational/teleport/lib/backend/memory"
"github.com/gravitational/teleport/lib/modules"
"github.com/gravitational/teleport/lib/services/local"
)
// TestUnmoderatedSessionsAllowed tests that we allow creating unmoderated sessions even if the
// moderated sessions feature is disabled via modules.
func TestUnmoderatedSessionsAllowed(t *testing.T) {
modules.SetTestModules(t, &modules.TestModules{TestFeatures: modules.Features{
ModeratedSessions: false, // Explicily turn off moderated sessions.
}})
srv := &Server{
clock: clockwork.NewRealClock(),
Services: &Services{},
}
bk, err := memory.New(memory.Config{})
require.NoError(t, err)
srv.Services.SessionTrackerService, err = local.NewSessionTrackerService(bk)
require.NoError(t, err)
tracker, err := types.NewSessionTracker(types.SessionTrackerSpecV1{
SessionID: "foo",
})
require.NoError(t, err)
tracker.AddParticipant(types.Participant{})
_, err = srv.CreateSessionTracker(context.Background(), tracker)
require.NoError(t, err)
require.NotNil(t, tracker)
}
// TestModeratedSessionsDisabled makes sure moderated sessions can be disabled via modules.
// Since moderated sessions require trackers, we mediate this in the tracker creation function.
func TestModeratedSessionsDisabled(t *testing.T) {
modules.SetTestModules(t, &modules.TestModules{TestFeatures: modules.Features{
ModeratedSessions: false, // Explicily turn off moderated sessions.
}})
srv := &Server{
clock: clockwork.NewRealClock(),
Services: &Services{},
}
bk, err := memory.New(memory.Config{})
require.NoError(t, err)
srv.Services.SessionTrackerService, err = local.NewSessionTrackerService(bk)
require.NoError(t, err)
tracker, err := types.NewSessionTracker(types.SessionTrackerSpecV1{
SessionID: "foo",
HostPolicies: []*types.SessionTrackerPolicySet{
{
Name: "foo",
Version: "5",
RequireSessionJoin: []*types.SessionRequirePolicy{
{
Name: "foo",
},
},
},
},
})
require.NoError(t, err)
tracker.AddParticipant(types.Participant{})
tracker, err = srv.CreateSessionTracker(context.Background(), tracker)
require.Error(t, err)
require.True(t, trace.IsAccessDenied(err))
require.Nil(t, tracker)
require.Contains(t, err.Error(), "this Teleport cluster is not licensed for moderated sessions, please contact the cluster administrator")
}
// TestModeratedSessionsEnabled verifies that we can create session trackers with moderation
// requirements when the feature is enabled.
func TestModeratedSesssionsEnabled(t *testing.T) {
modules.SetTestModules(t, &modules.TestModules{TestFeatures: modules.Features{
ModeratedSessions: true,
}})
srv := &Server{
clock: clockwork.NewRealClock(),
Services: &Services{},
}
bk, err := memory.New(memory.Config{})
require.NoError(t, err)
srv.Services.SessionTrackerService, err = local.NewSessionTrackerService(bk)
require.NoError(t, err)
tracker, err := types.NewSessionTracker(types.SessionTrackerSpecV1{
SessionID: "foo",
HostPolicies: []*types.SessionTrackerPolicySet{
{
Name: "foo",
Version: "5",
RequireSessionJoin: []*types.SessionRequirePolicy{
{
Name: "foo",
},
},
},
},
})
require.NoError(t, err)
tracker.AddParticipant(types.Participant{})
_, err = srv.CreateSessionTracker(context.Background(), tracker)
require.NoError(t, err)
require.NotNil(t, tracker)
}