This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #515 from phoenixking25/block_other_tenants
#397 added block other tenant resources test
- Loading branch information
Showing
3 changed files
with
96 additions
and
0 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
83 changes: 83 additions & 0 deletions
83
benchmarks/e2e/tests/block_other_tenant_resources/block_other_tenant_resources.go
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,83 @@ | ||
package test | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"strings" | ||
"time" | ||
|
||
"github.com/onsi/ginkgo" | ||
configutil "sigs.k8s.io/multi-tenancy/benchmarks/e2e/config" | ||
"k8s.io/kubernetes/test/e2e/framework" | ||
) | ||
|
||
const ( | ||
expectedVal = "Error from server (Forbidden)" | ||
) | ||
|
||
var _ = framework.KubeDescribe("test across tenants permission", func() { | ||
var config *configutil.BenchmarkConfig | ||
var resourceList string | ||
var err error | ||
var tenantA, tenantB string | ||
var namespaceFlag = "-n" | ||
var dryrun = "--dry-run=true" | ||
var all = "--all=true" | ||
|
||
ginkgo.BeforeEach(func() { | ||
ginkgo.By("get tenant's namespace wide api-resources") | ||
|
||
config, err = configutil.ReadConfig(configutil.ConfigPath) | ||
framework.ExpectNoError(err) | ||
|
||
err = config.ValidateTenant(config.TenantA) | ||
framework.ExpectNoError(err) | ||
|
||
os.Setenv("KUBECONFIG", config.TenantA.Kubeconfig) | ||
tenantA = configutil.GetContextFromKubeconfig(config.TenantA.Kubeconfig) | ||
|
||
outputFlag := fmt.Sprintf("-o=name") | ||
nsdFlag := fmt.Sprintf("--namespaced=true") | ||
|
||
resourceList, err = framework.RunKubectl(namespaceFlag, config.TenantA.Namespace, "api-resources", nsdFlag, outputFlag) | ||
framework.ExpectNoError(err) | ||
}) | ||
|
||
framework.KubeDescribe("tenant cannot access other tenant namespaced resources", func() { | ||
|
||
ginkgo.BeforeEach(func() { | ||
err = config.ValidateTenant(config.TenantB) | ||
framework.ExpectNoError(err) | ||
|
||
os.Setenv("KUBECONFIG", config.TenantB.Kubeconfig) | ||
tenantB = configutil.GetContextFromKubeconfig(config.TenantB.Kubeconfig) | ||
}) | ||
|
||
ginkgo.It("get tenant namespaced resources", func() { | ||
ginkgo.By(fmt.Sprintf("tenant %s cannot get tenant %s namespaced resources", tenantB, tenantA)) | ||
resources := strings.Fields(resourceList) | ||
for _, resource := range resources { | ||
_, errNew := framework.LookForString(expectedVal, time.Minute, func() string { | ||
_, err := framework.RunKubectl(namespaceFlag, config.TenantA.Namespace, "get", resource) | ||
return err.Error() | ||
}) | ||
|
||
framework.ExpectNoError(errNew) | ||
} | ||
}) | ||
|
||
ginkgo.It("edit other tenant namespaced resources", func() { | ||
ginkgo.By(fmt.Sprintf("tenant %s cannot edit tenant %s namespaced resources", tenantB, tenantA)) | ||
resources := strings.Fields(resourceList) | ||
annotation := "test=multi-tenancy" | ||
for _, resource := range resources { | ||
_, errNew := framework.LookForString(expectedVal, time.Minute, func() string { | ||
_, err := framework.RunKubectl(namespaceFlag, config.TenantA.Namespace, "annotate", resource, annotation, dryrun, all) | ||
return err.Error() | ||
}) | ||
|
||
framework.ExpectNoError(errNew) | ||
} | ||
}) | ||
}) | ||
}) |
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