forked from GoogleCloudPlatform/k8s-config-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
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 GoogleCloudPlatform#1192 from justinsb/mockgcp_tag…
…s_tagkey mockgcp: add mock for TagsTagKey
- Loading branch information
Showing
12 changed files
with
956 additions
and
84 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
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,73 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// 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 httpmux | ||
|
||
import ( | ||
"strings" | ||
|
||
"google.golang.org/protobuf/encoding/protojson" | ||
"google.golang.org/protobuf/proto" | ||
"google.golang.org/protobuf/reflect/protoreflect" | ||
"google.golang.org/protobuf/reflect/protoregistry" | ||
"k8s.io/klog/v2" | ||
) | ||
|
||
func MarshalAsJSON(obj proto.Message) ([]byte, error) { | ||
return protojson.MarshalOptions{Resolver: &protoResolver{}}.Marshal(obj) | ||
} | ||
|
||
type protoResolver struct { | ||
} | ||
|
||
var _ protoregistry.ExtensionTypeResolver = &protoResolver{} | ||
|
||
func (r *protoResolver) FindExtensionByName(message protoreflect.FullName) (protoreflect.ExtensionType, error) { | ||
return protoregistry.GlobalTypes.FindExtensionByName(r.remapName(message)) | ||
} | ||
|
||
func (r *protoResolver) FindExtensionByNumber(message protoreflect.FullName, field protoreflect.FieldNumber) (protoreflect.ExtensionType, error) { | ||
return protoregistry.GlobalTypes.FindExtensionByNumber(r.remapName(message), field) | ||
} | ||
|
||
var _ protoregistry.MessageTypeResolver = &protoResolver{} | ||
|
||
func (r *protoResolver) FindMessageByName(message protoreflect.FullName) (protoreflect.MessageType, error) { | ||
return protoregistry.GlobalTypes.FindMessageByName(r.remapName(message)) | ||
} | ||
|
||
func (r *protoResolver) FindMessageByURL(url string) (protoreflect.MessageType, error) { | ||
if strings.HasPrefix(url, "type.googleapis.com/google.") { | ||
s := "type.googleapis.com/mockgcp." + strings.TrimPrefix(url, "type.googleapis.com/google.") | ||
mt, err := protoregistry.GlobalTypes.FindMessageByURL(s) | ||
if err != nil { | ||
klog.Warningf("FindMessageByURL(%q) failed: %v", s, err) | ||
} else { | ||
return mt, nil | ||
} | ||
} | ||
|
||
return protoregistry.GlobalTypes.FindMessageByURL(url) | ||
} | ||
|
||
func (r *protoResolver) remapName(name protoreflect.FullName) protoreflect.FullName { | ||
// Remap names with a prefix of "google."" to be "mockgcp.", so we can find them. | ||
|
||
s := string(name) | ||
if strings.HasPrefix(s, "google.") { | ||
s = "mockgcp." + strings.TrimPrefix(s, "google.") | ||
return protoreflect.FullName(s) | ||
} | ||
return name | ||
} |
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
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,75 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// 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 operations | ||
|
||
import ( | ||
"context" | ||
"net/http" | ||
|
||
"cloud.google.com/go/longrunning/autogen/longrunningpb" | ||
"github.com/GoogleCloudPlatform/k8s-config-connector/mockgcp/common/httpmux" | ||
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime" | ||
"google.golang.org/grpc" | ||
"google.golang.org/grpc/codes" | ||
"google.golang.org/grpc/status" | ||
"k8s.io/klog/v2" | ||
) | ||
|
||
func (s *Operations) RegisterOperationsHandler(prefix string) func(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error { | ||
return func(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error { | ||
forwardResponseOptions := mux.GetForwardResponseOptions() | ||
|
||
// GET /{prefix}/operations/{name} | ||
if err := mux.HandlePath("GET", "/"+prefix+"/operations/{name}", func(w http.ResponseWriter, r *http.Request, pathParams map[string]string) { | ||
ctx := r.Context() | ||
name := pathParams["name"] | ||
req := &longrunningpb.GetOperationRequest{Name: "operations/" + name} | ||
op, err := s.GetOperation(ctx, req) | ||
if err != nil { | ||
if status.Code(err) == codes.NotFound { | ||
klog.Infof("operation not found %+v", req) | ||
w.WriteHeader(http.StatusNotFound) | ||
return | ||
} | ||
klog.Warningf("error getting operation %T: %v", err, err) | ||
w.WriteHeader(http.StatusInternalServerError) | ||
return | ||
} | ||
|
||
w.Header().Set("Content-Type", "application/json") | ||
w.WriteHeader(http.StatusOK) | ||
|
||
for _, forwardResponseOption := range forwardResponseOptions { | ||
err := forwardResponseOption(ctx, w, op) | ||
if err != nil { | ||
klog.Warningf("error running forwardResponseOption %T: %v", forwardResponseOption, err) | ||
w.WriteHeader(http.StatusInternalServerError) | ||
return | ||
} | ||
} | ||
|
||
b, err := httpmux.MarshalAsJSON(op) | ||
if err != nil { | ||
klog.Warningf("error converting to proto %T: %v", err, err) | ||
w.WriteHeader(http.StatusInternalServerError) | ||
return | ||
} | ||
w.Write(b) | ||
}); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
} |
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
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
Oops, something went wrong.