Add IAM system tests (#13487)

For internal IDP user, policy and groups
This commit is contained in:
Aditya Manthramurthy
2021-10-22 01:33:28 -07:00
committed by GitHub
parent 087dc13965
commit 29d885b40f
5 changed files with 499 additions and 9 deletions

View File

@@ -141,7 +141,7 @@ func TestServerSuite(t *testing.T) {
}
// Setting up the test suite.
// Starting the Test server with temporary FS backend.
// Starting the Test server with temporary backend.
func (s *TestSuiteCommon) SetUpSuite(c *check) {
if s.secure {
cert, key, err := generateTLSCertKey("127.0.0.1")
@@ -158,7 +158,6 @@ func (s *TestSuiteCommon) SetUpSuite(c *check) {
s.secretKey = s.testServer.SecretKey
}
// Called implicitly by "gopkg.in/check.v1" after all tests are run.
func (s *TestSuiteCommon) TearDownSuite(c *check) {
s.testServer.Stop()
}