mirror of https://github.com/kubernetes/kops.git
271 lines
6.9 KiB
Go
271 lines
6.9 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
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 iam
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"k8s.io/kops/pkg/apis/kops"
|
|
"k8s.io/kops/pkg/testutils"
|
|
"k8s.io/kops/pkg/testutils/golden"
|
|
"k8s.io/kops/pkg/util/stringorset"
|
|
"k8s.io/kops/upup/pkg/fi"
|
|
)
|
|
|
|
func TestRoundTrip(t *testing.T) {
|
|
grid := []struct {
|
|
IAM *Statement
|
|
JSON string
|
|
}{
|
|
{
|
|
IAM: &Statement{
|
|
Effect: StatementEffectAllow,
|
|
Action: stringorset.Of("ec2:DescribeRegions"),
|
|
Resource: stringorset.Of("*"),
|
|
},
|
|
JSON: "{\"Action\":\"ec2:DescribeRegions\",\"Effect\":\"Allow\",\"Resource\":\"*\"}",
|
|
},
|
|
{
|
|
IAM: &Statement{
|
|
Effect: StatementEffectDeny,
|
|
Action: stringorset.Of("ec2:DescribeRegions", "ec2:DescribeInstances"),
|
|
Resource: stringorset.Of("a", "b"),
|
|
},
|
|
JSON: "{\"Action\":[\"ec2:DescribeInstances\",\"ec2:DescribeRegions\"],\"Effect\":\"Deny\",\"Resource\":[\"a\",\"b\"]}",
|
|
},
|
|
{
|
|
IAM: &Statement{
|
|
Effect: StatementEffectDeny,
|
|
Principal: Principal{Federated: "federated"},
|
|
Condition: map[string]interface{}{
|
|
"foo": 1,
|
|
},
|
|
},
|
|
JSON: "{\"Condition\":{\"foo\":1},\"Effect\":\"Deny\",\"Principal\":{\"Federated\":\"federated\"}}",
|
|
},
|
|
{
|
|
IAM: &Statement{
|
|
Effect: StatementEffectDeny,
|
|
Principal: Principal{Service: fi.PtrTo(stringorset.Of("service"))},
|
|
Condition: map[string]interface{}{
|
|
"bar": "baz",
|
|
},
|
|
},
|
|
JSON: "{\"Condition\":{\"bar\":\"baz\"},\"Effect\":\"Deny\",\"Principal\":{\"Service\":\"service\"}}",
|
|
},
|
|
}
|
|
for _, g := range grid {
|
|
actualJSON, err := json.Marshal(g.IAM)
|
|
if err != nil {
|
|
t.Errorf("error encoding IAM %v to json: %v", g.IAM, err)
|
|
}
|
|
|
|
if g.JSON != string(actualJSON) {
|
|
t.Errorf("Unexpected JSON encoding. Actual=%q, Expected=%q", string(actualJSON), g.JSON)
|
|
}
|
|
|
|
parsed := &Statement{}
|
|
err = json.Unmarshal([]byte(g.JSON), parsed)
|
|
if err != nil {
|
|
t.Errorf("error decoding IAM %s to json: %v", g.JSON, err)
|
|
}
|
|
|
|
if !parsed.Equal(g.IAM) {
|
|
t.Errorf("Unexpected JSON decoded value. Actual=%v, Expected=%v", parsed, g.IAM)
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
func TestPolicyGeneration(t *testing.T) {
|
|
grid := []struct {
|
|
Gossip bool
|
|
Role Subject
|
|
AllowContainerRegistry bool
|
|
Policy string
|
|
}{
|
|
{
|
|
Role: &NodeRoleMaster{},
|
|
AllowContainerRegistry: false,
|
|
Policy: "tests/iam_builder_master_strict.json",
|
|
},
|
|
{
|
|
Role: &NodeRoleMaster{},
|
|
AllowContainerRegistry: true,
|
|
Policy: "tests/iam_builder_master_strict_ecr.json",
|
|
},
|
|
{
|
|
Gossip: true,
|
|
Role: &NodeRoleMaster{},
|
|
AllowContainerRegistry: false,
|
|
Policy: "tests/iam_builder_master_gossip.json",
|
|
},
|
|
{
|
|
Gossip: true,
|
|
Role: &NodeRoleMaster{},
|
|
AllowContainerRegistry: true,
|
|
Policy: "tests/iam_builder_master_gossip_ecr.json",
|
|
},
|
|
{
|
|
Role: &NodeRoleNode{},
|
|
AllowContainerRegistry: false,
|
|
Policy: "tests/iam_builder_node_strict.json",
|
|
},
|
|
{
|
|
Role: &NodeRoleNode{},
|
|
AllowContainerRegistry: true,
|
|
Policy: "tests/iam_builder_node_strict_ecr.json",
|
|
},
|
|
{
|
|
Gossip: true,
|
|
Role: &NodeRoleNode{},
|
|
AllowContainerRegistry: false,
|
|
Policy: "tests/iam_builder_node_gossip.json",
|
|
},
|
|
{
|
|
Gossip: true,
|
|
Role: &NodeRoleNode{},
|
|
AllowContainerRegistry: true,
|
|
Policy: "tests/iam_builder_node_gossip_ecr.json",
|
|
},
|
|
{
|
|
Role: &NodeRoleBastion{},
|
|
AllowContainerRegistry: false,
|
|
Policy: "tests/iam_builder_bastion.json",
|
|
},
|
|
{
|
|
Role: &NodeRoleBastion{},
|
|
AllowContainerRegistry: true,
|
|
Policy: "tests/iam_builder_bastion.json",
|
|
},
|
|
{
|
|
Gossip: true,
|
|
Role: &NodeRoleBastion{},
|
|
AllowContainerRegistry: false,
|
|
Policy: "tests/iam_builder_bastion.json",
|
|
},
|
|
{
|
|
Gossip: true,
|
|
Role: &NodeRoleBastion{},
|
|
AllowContainerRegistry: true,
|
|
Policy: "tests/iam_builder_bastion.json",
|
|
},
|
|
}
|
|
|
|
for i, x := range grid {
|
|
b := &PolicyBuilder{
|
|
Cluster: &kops.Cluster{
|
|
Spec: kops.ClusterSpec{
|
|
ConfigStore: kops.ConfigStoreSpec{
|
|
Base: "s3://kops-tests/iam-builder-test.k8s.local",
|
|
},
|
|
IAM: &kops.IAMSpec{
|
|
AllowContainerRegistry: x.AllowContainerRegistry,
|
|
},
|
|
EtcdClusters: []kops.EtcdClusterSpec{
|
|
{
|
|
Members: []kops.EtcdMemberSpec{
|
|
{
|
|
KmsKeyID: aws.String("key-id-1"),
|
|
},
|
|
{
|
|
KmsKeyID: aws.String("key-id-2"),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Members: []kops.EtcdMemberSpec{},
|
|
},
|
|
{
|
|
Members: []kops.EtcdMemberSpec{
|
|
{
|
|
KmsKeyID: aws.String("key-id-3"),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
CloudProvider: kops.CloudProviderSpec{
|
|
AWS: &kops.AWSSpec{
|
|
EBSCSIDriver: &kops.EBSCSIDriverSpec{
|
|
Enabled: fi.PtrTo(true),
|
|
},
|
|
},
|
|
},
|
|
ExternalCloudControllerManager: &kops.CloudControllerManagerConfig{},
|
|
Networking: kops.NetworkingSpec{
|
|
Kubenet: &kops.KubenetNetworkingSpec{},
|
|
},
|
|
},
|
|
},
|
|
Role: x.Role,
|
|
Partition: "aws-test",
|
|
}
|
|
if x.Gossip {
|
|
b.Cluster.SetName("iam-builder-test.k8s.local")
|
|
} else {
|
|
b.Cluster.SetName("iam-builder-test.nonexistant")
|
|
}
|
|
|
|
p, err := b.BuildAWSPolicy()
|
|
if err != nil {
|
|
t.Errorf("case %d failed to build an AWS IAM policy. Error: %v", i, err)
|
|
continue
|
|
}
|
|
|
|
actualPolicy, err := p.AsJSON()
|
|
if err != nil {
|
|
t.Errorf("case %d failed to convert generated IAM Policy to JSON. Error: %v", i, err)
|
|
continue
|
|
}
|
|
|
|
golden.AssertMatchesFile(t, actualPolicy, x.Policy)
|
|
}
|
|
}
|
|
|
|
func TestEmptyPolicy(t *testing.T) {
|
|
role := &GenericServiceAccount{
|
|
NamespacedName: types.NamespacedName{
|
|
Name: "myaccount",
|
|
Namespace: "default",
|
|
},
|
|
Policy: nil,
|
|
}
|
|
|
|
cluster := testutils.BuildMinimalCluster("irsa.example.com")
|
|
b := &PolicyBuilder{
|
|
Cluster: cluster,
|
|
Role: role,
|
|
}
|
|
|
|
pr := &PolicyResource{
|
|
Builder: b,
|
|
}
|
|
|
|
policy, err := fi.ResourceAsString(pr)
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
|
|
if policy != "" {
|
|
t.Errorf("empty policy should result in empty string, but was %q", policy)
|
|
}
|
|
}
|