forked from gravitational/teleport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsso_diag_context_test.go
54 lines (43 loc) · 1.55 KB
/
sso_diag_context_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
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/teleport/api/types"
"github.com/stretchr/testify/require"
)
func Test_ssoDiagContext_writeToBackend(t *testing.T) {
diag := &ssoDiagContext{
authKind: types.KindSAML,
requestID: "123",
info: types.SSODiagnosticInfo{},
}
callCount := 0
diag.createSSODiagnosticInfo = func(ctx context.Context, authKind string, authRequestID string, info types.SSODiagnosticInfo) error {
callCount++
require.Truef(t, info.TestFlow, "createSSODiagnosticInfo must not be called if info.TestFlow is false.")
require.Equal(t, diag.authKind, authKind)
require.Equal(t, diag.requestID, authRequestID)
require.Equal(t, diag.info, info)
return nil
}
// with TestFlow: false, no call is made.
diag.info.TestFlow = false
diag.writeToBackend(context.Background())
require.Equal(t, 0, callCount)
// with TestFlow: true, a call is made.
diag.info.TestFlow = true
diag.writeToBackend(context.Background())
require.Equal(t, 1, callCount)
}