Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
6ae11fdc
Commit
6ae11fdc
authored
Jun 08, 2017
by
Mike Danese
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use testmain in integration tests
parent
8e23c656
Hide whitespace changes
Inline
Side-by-side
Showing
54 changed files
with
845 additions
and
20 deletions
+845
-20
BUILD
test/integration/apiserver/BUILD
+2
-0
main_test.go
test/integration/apiserver/main_test.go
+27
-0
BUILD
test/integration/auth/BUILD
+2
-0
main_test.go
test/integration/auth/main_test.go
+27
-0
BUILD
test/integration/client/BUILD
+2
-0
main_test.go
test/integration/client/main_test.go
+27
-0
BUILD
test/integration/configmap/BUILD
+5
-1
main_test.go
test/integration/configmap/main_test.go
+27
-0
BUILD
test/integration/defaulttolerationseconds/BUILD
+5
-1
main_test.go
test/integration/defaulttolerationseconds/main_test.go
+27
-0
BUILD
test/integration/deployment/BUILD
+5
-1
main_test.go
test/integration/deployment/main_test.go
+27
-0
BUILD
test/integration/etcd/BUILD
+5
-1
main_test.go
test/integration/etcd/main_test.go
+27
-0
BUILD
test/integration/evictions/BUILD
+5
-1
main_test.go
test/integration/evictions/main_test.go
+27
-0
BUILD
test/integration/examples/BUILD
+5
-1
main_test.go
test/integration/examples/main_test.go
+27
-0
BUILD
test/integration/federation/BUILD
+3
-0
main_test.go
test/integration/federation/main_test.go
+27
-0
BUILD
test/integration/garbagecollector/BUILD
+5
-1
main_test.go
test/integration/garbagecollector/main_test.go
+27
-0
BUILD
test/integration/kubectl/BUILD
+5
-1
main_test.go
test/integration/kubectl/main_test.go
+27
-0
BUILD
test/integration/master/BUILD
+5
-1
main_test.go
test/integration/master/main_test.go
+27
-0
BUILD
test/integration/metrics/BUILD
+5
-1
main_test.go
test/integration/metrics/main_test.go
+27
-0
BUILD
test/integration/objectmeta/BUILD
+5
-1
main_test.go
test/integration/objectmeta/main_test.go
+27
-0
BUILD
test/integration/openshift/BUILD
+6
-1
main_test.go
test/integration/openshift/main_test.go
+27
-0
BUILD
test/integration/pods/BUILD
+5
-1
main_test.go
test/integration/pods/main_test.go
+27
-0
BUILD
test/integration/quota/BUILD
+5
-1
main_test.go
test/integration/quota/main_test.go
+27
-0
BUILD
test/integration/replicaset/BUILD
+5
-1
main_test.go
test/integration/replicaset/main_test.go
+27
-0
BUILD
test/integration/replicationcontroller/BUILD
+5
-1
main_test.go
test/integration/replicationcontroller/main_test.go
+27
-0
BUILD
test/integration/scheduler/BUILD
+2
-0
main_test.go
test/integration/scheduler/main_test.go
+27
-0
BUILD
test/integration/scheduler_perf/BUILD
+2
-0
main_test.go
test/integration/scheduler_perf/main_test.go
+27
-0
BUILD
test/integration/secrets/BUILD
+5
-1
main_test.go
test/integration/secrets/main_test.go
+27
-0
BUILD
test/integration/serviceaccount/BUILD
+5
-1
main_test.go
test/integration/serviceaccount/main_test.go
+27
-0
BUILD
test/integration/storageclasses/BUILD
+5
-1
main_test.go
test/integration/storageclasses/main_test.go
+27
-0
BUILD
test/integration/ttlcontroller/BUILD
+5
-1
main_test.go
test/integration/ttlcontroller/main_test.go
+27
-0
BUILD
test/integration/volume/BUILD
+2
-0
main_test.go
test/integration/volume/main_test.go
+27
-0
No files found.
test/integration/apiserver/BUILD
View file @
6ae11fdc
...
@@ -9,8 +9,10 @@ load(
...
@@ -9,8 +9,10 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
size = "large",
srcs = [
srcs = [
"apiserver_test.go",
"apiserver_test.go",
"main_test.go",
"patch_test.go",
"patch_test.go",
],
],
tags = [
tags = [
...
...
test/integration/apiserver/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
apiserver
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/auth/BUILD
View file @
6ae11fdc
...
@@ -9,9 +9,11 @@ load(
...
@@ -9,9 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
size = "large",
srcs = [
srcs = [
"accessreview_test.go",
"accessreview_test.go",
"auth_test.go",
"auth_test.go",
"main_test.go",
"node_test.go",
"node_test.go",
"rbac_test.go",
"rbac_test.go",
],
],
...
...
test/integration/auth/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
auth
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/client/BUILD
View file @
6ae11fdc
...
@@ -9,9 +9,11 @@ load(
...
@@ -9,9 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
size = "large",
srcs = [
srcs = [
"client_test.go",
"client_test.go",
"dynamic_client_test.go",
"dynamic_client_test.go",
"main_test.go",
],
],
tags = [
tags = [
"automanaged",
"automanaged",
...
...
test/integration/client/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
client
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/configmap/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["configmap_test.go"],
size = "large",
srcs = [
"configmap_test.go",
"main_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/configmap/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
configmap
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/defaulttolerationseconds/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["defaulttolerationseconds_test.go"],
size = "large",
srcs = [
"defaulttolerationseconds_test.go",
"main_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"etcd",
"etcd",
...
...
test/integration/defaulttolerationseconds/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
defaulttolerationseconds
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/deployment/BUILD
View file @
6ae11fdc
...
@@ -10,7 +10,11 @@ load(
...
@@ -10,7 +10,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["deployment_test.go"],
size = "large",
srcs = [
"deployment_test.go",
"main_test.go",
],
library = ":go_default_library",
library = ":go_default_library",
tags = ["automanaged"],
tags = ["automanaged"],
deps = [
deps = [
...
...
test/integration/deployment/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
deployment
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/etcd/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["etcd_storage_path_test.go"],
size = "large",
srcs = [
"etcd_storage_path_test.go",
"main_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"etcd",
"etcd",
...
...
test/integration/etcd/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
etcd
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/evictions/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["evictions_test.go"],
size = "large",
srcs = [
"evictions_test.go",
"main_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/evictions/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
evictions
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/examples/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["apiserver_test.go"],
size = "large",
srcs = [
"apiserver_test.go",
"main_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/examples/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
apiserver
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/federation/BUILD
View file @
6ae11fdc
...
@@ -9,9 +9,11 @@ load(
...
@@ -9,9 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
size = "large",
srcs = [
srcs = [
"api_test.go",
"api_test.go",
"crud_test.go",
"crud_test.go",
"main_test.go",
],
],
tags = [
tags = [
"automanaged",
"automanaged",
...
@@ -22,6 +24,7 @@ go_test(
...
@@ -22,6 +24,7 @@ go_test(
"//federation/pkg/federatedtypes:go_default_library",
"//federation/pkg/federatedtypes:go_default_library",
"//federation/pkg/federatedtypes/crudtester:go_default_library",
"//federation/pkg/federatedtypes/crudtester:go_default_library",
"//test/integration/federation/framework:go_default_library",
"//test/integration/federation/framework:go_default_library",
"//test/integration/framework:go_default_library",
"//vendor/github.com/pborman/uuid:go_default_library",
"//vendor/github.com/pborman/uuid:go_default_library",
"//vendor/github.com/stretchr/testify/assert:go_default_library",
"//vendor/github.com/stretchr/testify/assert:go_default_library",
"//vendor/k8s.io/api/autoscaling/v1:go_default_library",
"//vendor/k8s.io/api/autoscaling/v1:go_default_library",
...
...
test/integration/federation/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
federation
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/garbagecollector/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["garbage_collector_test.go"],
size = "large",
srcs = [
"garbage_collector_test.go",
"main_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/garbagecollector/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
garbagecollector
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/kubectl/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["kubectl_test.go"],
size = "large",
srcs = [
"kubectl_test.go",
"main_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/kubectl/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
kubectl
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/master/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["master_test.go"],
size = "large",
srcs = [
"main_test.go",
"master_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/master/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
master
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/metrics/BUILD
View file @
6ae11fdc
...
@@ -29,7 +29,11 @@ filegroup(
...
@@ -29,7 +29,11 @@ filegroup(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["metrics_test.go"],
size = "large",
srcs = [
"main_test.go",
"metrics_test.go",
],
library = ":go_default_library",
library = ":go_default_library",
tags = [
tags = [
"automanaged",
"automanaged",
...
...
test/integration/metrics/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
metrics
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/objectmeta/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["objectmeta_test.go"],
size = "large",
srcs = [
"main_test.go",
"objectmeta_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/objectmeta/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
objectmeta
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/openshift/BUILD
View file @
6ae11fdc
...
@@ -9,13 +9,18 @@ load(
...
@@ -9,13 +9,18 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["openshift_test.go"],
size = "large",
srcs = [
"main_test.go",
"openshift_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
],
],
deps = [
deps = [
"//pkg/master:go_default_library",
"//pkg/master:go_default_library",
"//test/integration/framework:go_default_library",
"//vendor/k8s.io/apiserver/pkg/server:go_default_library",
"//vendor/k8s.io/apiserver/pkg/server:go_default_library",
],
],
)
)
...
...
test/integration/openshift/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
openshift
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/pods/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["pods_test.go"],
size = "large",
srcs = [
"main_test.go",
"pods_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/pods/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
pods
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/quota/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["quota_test.go"],
size = "large",
srcs = [
"main_test.go",
"quota_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/quota/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
quota
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/replicaset/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["replicaset_test.go"],
size = "large",
srcs = [
"main_test.go",
"replicaset_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/replicaset/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
replicaset
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/replicationcontroller/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["replicationcontroller_test.go"],
size = "large",
srcs = [
"main_test.go",
"replicationcontroller_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/replicationcontroller/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
replicationcontroller
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/scheduler/BUILD
View file @
6ae11fdc
...
@@ -9,8 +9,10 @@ load(
...
@@ -9,8 +9,10 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
size = "large",
srcs = [
srcs = [
"extender_test.go",
"extender_test.go",
"main_test.go",
"scheduler_test.go",
"scheduler_test.go",
],
],
tags = [
tags = [
...
...
test/integration/scheduler/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
scheduler
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/scheduler_perf/BUILD
View file @
6ae11fdc
...
@@ -35,7 +35,9 @@ go_library(
...
@@ -35,7 +35,9 @@ go_library(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
size = "large",
srcs = [
srcs = [
"main_test.go",
"scheduler_bench_test.go",
"scheduler_bench_test.go",
"scheduler_test.go",
"scheduler_test.go",
],
],
...
...
test/integration/scheduler_perf/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
benchmark
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/secrets/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["secrets_test.go"],
size = "large",
srcs = [
"main_test.go",
"secrets_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/secrets/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
secrets
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/serviceaccount/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["service_account_test.go"],
size = "large",
srcs = [
"main_test.go",
"service_account_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/serviceaccount/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
serviceaccount
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/storageclasses/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["storage_classes_test.go"],
size = "large",
srcs = [
"main_test.go",
"storage_classes_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"integration",
"integration",
...
...
test/integration/storageclasses/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
storageclasses
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/ttlcontroller/BUILD
View file @
6ae11fdc
...
@@ -9,7 +9,11 @@ load(
...
@@ -9,7 +9,11 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
srcs = ["ttlcontroller_test.go"],
size = "large",
srcs = [
"main_test.go",
"ttlcontroller_test.go",
],
tags = [
tags = [
"automanaged",
"automanaged",
"etcd",
"etcd",
...
...
test/integration/ttlcontroller/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
ttlcontroller
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
test/integration/volume/BUILD
View file @
6ae11fdc
...
@@ -9,8 +9,10 @@ load(
...
@@ -9,8 +9,10 @@ load(
go_test(
go_test(
name = "go_default_test",
name = "go_default_test",
size = "large",
srcs = [
srcs = [
"attach_detach_test.go",
"attach_detach_test.go",
"main_test.go",
"persistent_volumes_test.go",
"persistent_volumes_test.go",
],
],
tags = [
tags = [
...
...
test/integration/volume/main_test.go
0 → 100644
View file @
6ae11fdc
/*
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
volume
import
(
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func
TestMain
(
m
*
testing
.
M
)
{
framework
.
EtcdMain
(
m
.
Run
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment