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
f22bfcd6
Commit
f22bfcd6
authored
Oct 13, 2017
by
Solly Ross
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[client-go] Add fake scale client
This adds a new fake scale client (for use in testing) to match the new polymorphic scale client.
parent
55e1f6a5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
97 additions
and
0 deletions
+97
-0
.golint_failures
hack/.golint_failures
+1
-0
BUILD
staging/src/k8s.io/client-go/scale/BUILD
+1
-0
BUILD
staging/src/k8s.io/client-go/scale/fake/BUILD
+28
-0
client.go
staging/src/k8s.io/client-go/scale/fake/client.go
+67
-0
No files found.
hack/.golint_failures
View file @
f22bfcd6
...
...
@@ -716,6 +716,7 @@ staging/src/k8s.io/client-go/plugin/pkg/client/auth/oidc
staging/src/k8s.io/client-go/rest
staging/src/k8s.io/client-go/rest/fake
staging/src/k8s.io/client-go/scale
staging/src/k8s.io/client-go/scale/fake
staging/src/k8s.io/client-go/scale/scheme
staging/src/k8s.io/client-go/scale/scheme/autoscalingv1
staging/src/k8s.io/client-go/scale/scheme/extensionsint
...
...
staging/src/k8s.io/client-go/scale/BUILD
View file @
f22bfcd6
...
...
@@ -65,6 +65,7 @@ filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//staging/src/k8s.io/client-go/scale/fake:all-srcs",
"//staging/src/k8s.io/client-go/scale/scheme:all-srcs",
],
tags = ["automanaged"],
...
...
staging/src/k8s.io/client-go/scale/fake/BUILD
0 → 100644
View file @
f22bfcd6
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["client.go"],
importpath = "k8s.io/client-go/scale/fake",
visibility = ["//visibility:public"],
deps = [
"//vendor/k8s.io/api/autoscaling/v1:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library",
"//vendor/k8s.io/client-go/scale:go_default_library",
"//vendor/k8s.io/client-go/testing:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)
staging/src/k8s.io/client-go/scale/fake/client.go
0 → 100644
View file @
f22bfcd6
/*
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 fake provides a fake client interface to arbitrary Kubernetes
// APIs that exposes common high level operations and exposes common
// metadata.
package
fake
import
(
autoscalingapi
"k8s.io/api/autoscaling/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/client-go/scale"
"k8s.io/client-go/testing"
)
// FakeScaleClient provides a fake implementation of scale.ScalesGetter.
type
FakeScaleClient
struct
{
testing
.
Fake
}
func
(
f
*
FakeScaleClient
)
Scales
(
namespace
string
)
scale
.
ScaleInterface
{
return
&
fakeNamespacedScaleClient
{
namespace
:
namespace
,
fake
:
&
f
.
Fake
,
}
}
type
fakeNamespacedScaleClient
struct
{
namespace
string
fake
*
testing
.
Fake
}
func
(
f
*
fakeNamespacedScaleClient
)
Get
(
resource
schema
.
GroupResource
,
name
string
)
(
*
autoscalingapi
.
Scale
,
error
)
{
obj
,
err
:=
f
.
fake
.
Invokes
(
testing
.
NewGetSubresourceAction
(
resource
.
WithVersion
(
""
),
f
.
namespace
,
"scale"
,
name
),
&
autoscalingapi
.
Scale
{})
if
err
!=
nil
{
return
nil
,
err
}
return
obj
.
(
*
autoscalingapi
.
Scale
),
err
}
func
(
f
*
fakeNamespacedScaleClient
)
Update
(
resource
schema
.
GroupResource
,
scale
*
autoscalingapi
.
Scale
)
(
*
autoscalingapi
.
Scale
,
error
)
{
obj
,
err
:=
f
.
fake
.
Invokes
(
testing
.
NewUpdateSubresourceAction
(
resource
.
WithVersion
(
""
),
f
.
namespace
,
"scale"
,
scale
),
&
autoscalingapi
.
Scale
{})
if
err
!=
nil
{
return
nil
,
err
}
return
obj
.
(
*
autoscalingapi
.
Scale
),
err
}
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