teleport/lib/services/wrappers_test.go
Andrew Lytvynov 5ca68f2351
Remove 'var _ = fmt.Printf' from *_test.go files (#5438)
These declarations serve no purpose, likely leftover from old debugging.
2021-01-29 17:01:10 -08:00

55 lines
1.6 KiB
Go

/*
Copyright 2019 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 services
import (
"encoding/hex"
"testing"
"github.com/gravitational/teleport/api/types/wrappers"
"github.com/gravitational/teleport/lib/utils"
"gopkg.in/check.v1"
)
type WrappersSuite struct{}
var _ = check.Suite(&WrappersSuite{})
func TestWrappers(t *testing.T) { check.TestingT(t) }
func (w *WrappersSuite) SetUpSuite(c *check.C) {
utils.InitLoggerForTests(testing.Verbose())
}
func (w *WrappersSuite) TestUnmarshalBackwards(c *check.C) {
var traits wrappers.Traits
// Attempt to unmarshal protobuf encoded data.
protoBytes := "0a120a066c6f67696e7312080a06666f6f6261720a150a116b756265726e657465735f67726f7570731200"
data, err := hex.DecodeString(protoBytes)
c.Assert(err, check.IsNil)
err = wrappers.UnmarshalTraits(data, &traits)
c.Assert(err, check.IsNil)
c.Assert(traits["logins"], check.DeepEquals, []string{"foobar"})
// Attempt to unmarshal JSON encoded data.
jsonBytes := `{"logins": ["foobar"]}`
err = wrappers.UnmarshalTraits([]byte(jsonBytes), &traits)
c.Assert(err, check.IsNil)
c.Assert(traits["logins"], check.DeepEquals, []string{"foobar"})
}