This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Access Plugins: Support dynamic credential reloading (#956)
* Modify msteams/email plugins to support reloading credentials * Start adjusting event-handler for identity file refresh * Fix event handler config names for refresh * Fix test for event handler config parsing * Adjust go.mod to depend on main repo branch * Ignore returned user from CreateUser * SPAG Co-authored-by: Marco André Dinis <[email protected]> * Adjust to refer to v14 backport branch * Fix go imports * License header!! --------- Co-authored-by: Marco André Dinis <[email protected]>
- Loading branch information
1 parent
cf623f2
commit d4df9ba
Showing
12 changed files
with
218 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
Copyright 2015-2023 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 main | ||
|
||
import ( | ||
"os" | ||
"path" | ||
"testing" | ||
"time" | ||
|
||
"github.com/alecthomas/kong" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
// StartCmdConfig is mostly to test that the TOML file parsing works as | ||
// expected. | ||
func TestStartCmdConfig(t *testing.T) { | ||
wd, err := os.Getwd() | ||
require.NoError(t, err) | ||
|
||
testCases := []struct { | ||
name string | ||
args []string | ||
|
||
want StartCmdConfig | ||
}{ | ||
{ | ||
name: "standard", | ||
args: []string{"start", "--config", "testdata/config.toml"}, | ||
want: StartCmdConfig{ | ||
FluentdConfig: FluentdConfig{ | ||
FluentdURL: "https://localhost:8888/test.log", | ||
FluentdSessionURL: "https://localhost:8888/session", | ||
FluentdCert: path.Join(wd, "testdata", "fake-file"), | ||
FluentdKey: path.Join(wd, "testdata", "fake-file"), | ||
FluentdCA: path.Join(wd, "testdata", "fake-file"), | ||
}, | ||
TeleportConfig: TeleportConfig{ | ||
TeleportAddr: "localhost:3025", | ||
TeleportIdentityFile: path.Join(wd, "testdata", "fake-file"), | ||
TeleportRefreshEnabled: true, | ||
TeleportRefreshInterval: 2 * time.Minute, | ||
}, | ||
IngestConfig: IngestConfig{ | ||
StorageDir: "./storage", | ||
BatchSize: 20, | ||
SkipSessionTypesRaw: []string{"print"}, | ||
SkipSessionTypes: map[string]struct{}{ | ||
"print": {}, | ||
}, | ||
Timeout: 10 * time.Second, | ||
Concurrency: 5, | ||
}, | ||
LockConfig: LockConfig{ | ||
LockFailedAttemptsCount: 3, | ||
LockPeriod: time.Minute, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
for _, tc := range testCases { | ||
t.Run(tc.name, func(t *testing.T) { | ||
cli := CLI{} | ||
parser, err := kong.New( | ||
&cli, | ||
kong.UsageOnError(), | ||
kong.Configuration(KongTOMLResolver), | ||
kong.Name(pluginName), | ||
kong.Description(pluginDescription), | ||
) | ||
require.NoError(t, err) | ||
_, err = parser.Parse(tc.args) | ||
require.NoError(t, err) | ||
|
||
require.Equal(t, tc.want, cli.Start) | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.