teleport/lib/utils/roles_test.go
Sasha Klizhentas 0130c6aa41 Mutual TLS Auth server and clients.
This commit introduced mutual TLS authentication
for auth server API server.

Auth server multiplexes HTTP over SSH - existing
protocol and HTTP over TLS - new protocol
on the same listening socket.

Nodes and users authenticate with 2.5.0 Teleport
using TLS mutual TLS except backwards-compatibility
cases.
2017-12-27 11:37:19 -08:00

71 lines
2 KiB
Go

/*
Copyright 2015 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 utils
import (
"github.com/gravitational/teleport"
"gopkg.in/check.v1"
)
type RolesTestSuite struct {
}
var _ = check.Suite(&RolesTestSuite{})
func (s *RolesTestSuite) TestParsing(c *check.C) {
roles, err := teleport.ParseRoles("auth, Proxy,nODE")
c.Assert(err, check.IsNil)
c.Assert(roles, check.DeepEquals, teleport.Roles{
"Auth",
"Proxy",
"Node",
})
c.Assert(roles[0].Check(), check.IsNil)
c.Assert(roles[1].Check(), check.IsNil)
c.Assert(roles[2].Check(), check.IsNil)
c.Assert(roles.Check(), check.IsNil)
c.Assert(roles.String(), check.Equals, "Auth,Proxy,Node")
c.Assert(roles[0].String(), check.Equals, "Auth")
}
func (s *RolesTestSuite) TestBadRoles(c *check.C) {
bad := teleport.Role("bad-role")
c.Assert(bad.Check(), check.ErrorMatches, "role bad-role is not registered")
badRoles := teleport.Roles{
bad,
teleport.RoleAdmin,
}
c.Assert(badRoles.Check(), check.ErrorMatches, "role bad-role is not registered")
}
func (s *RolesTestSuite) TestEquivalence(c *check.C) {
nodeProxyRole := teleport.Roles{
teleport.RoleNode,
teleport.RoleProxy,
}
authRole := teleport.Roles{
teleport.RoleAdmin,
teleport.RoleAuth,
}
c.Assert(authRole.Include(teleport.RoleAdmin), check.Equals, true)
c.Assert(authRole.Include(teleport.RoleProxy), check.Equals, false)
c.Assert(authRole.Equals(nodeProxyRole), check.Equals, false)
c.Assert(authRole.Equals(teleport.Roles{teleport.RoleAuth, teleport.RoleAdmin}),
check.Equals, true)
}