-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update gapic-generator-java with mock service generation fixes (#…
…979) - [ ] Regenerate this pull request now. PiperOrigin-RevId: 457524730 Source-Link: googleapis/googleapis@917e7f2 Source-Link: https://github.com/googleapis/googleapis-gen/commit/2497f9a069d3f6b2d6810d5a4e239cda1e7e5a39 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjQ5N2Y5YTA2OWQzZjZiMmQ2ODEwZDVhNGUyMzljZGExZTdlNWEzOSJ9
- Loading branch information
1 parent
d4e8fb7
commit e5f3ca5
Showing
19 changed files
with
350 additions
and
30 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
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
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
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
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
59 changes: 59 additions & 0 deletions
59
...gle-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicy.java
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,59 @@ | ||
/* | ||
* Copyright 2022 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 | ||
* | ||
* https://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 com.google.cloud.aiplatform.v1beta1; | ||
|
||
import com.google.api.core.BetaApi; | ||
import com.google.api.gax.grpc.testing.MockGrpcService; | ||
import com.google.protobuf.AbstractMessage; | ||
import io.grpc.ServerServiceDefinition; | ||
import java.util.List; | ||
import javax.annotation.Generated; | ||
|
||
@BetaApi | ||
@Generated("by gapic-generator-java") | ||
public class MockIAMPolicy implements MockGrpcService { | ||
private final MockIAMPolicyImpl serviceImpl; | ||
|
||
public MockIAMPolicy() { | ||
serviceImpl = new MockIAMPolicyImpl(); | ||
} | ||
|
||
@Override | ||
public List<AbstractMessage> getRequests() { | ||
return serviceImpl.getRequests(); | ||
} | ||
|
||
@Override | ||
public void addResponse(AbstractMessage response) { | ||
serviceImpl.addResponse(response); | ||
} | ||
|
||
@Override | ||
public void addException(Exception exception) { | ||
serviceImpl.addException(exception); | ||
} | ||
|
||
@Override | ||
public ServerServiceDefinition getServiceDefinition() { | ||
return serviceImpl.bindService(); | ||
} | ||
|
||
@Override | ||
public void reset() { | ||
serviceImpl.reset(); | ||
} | ||
} |
127 changes: 127 additions & 0 deletions
127
...cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicyImpl.java
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,127 @@ | ||
/* | ||
* Copyright 2022 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 | ||
* | ||
* https://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 com.google.cloud.aiplatform.v1beta1; | ||
|
||
import com.google.api.core.BetaApi; | ||
import com.google.iam.v1.GetIamPolicyRequest; | ||
import com.google.iam.v1.IAMPolicyGrpc.IAMPolicyImplBase; | ||
import com.google.iam.v1.Policy; | ||
import com.google.iam.v1.SetIamPolicyRequest; | ||
import com.google.iam.v1.TestIamPermissionsRequest; | ||
import com.google.iam.v1.TestIamPermissionsResponse; | ||
import com.google.protobuf.AbstractMessage; | ||
import io.grpc.stub.StreamObserver; | ||
import java.util.ArrayList; | ||
import java.util.LinkedList; | ||
import java.util.List; | ||
import java.util.Queue; | ||
import javax.annotation.Generated; | ||
|
||
@BetaApi | ||
@Generated("by gapic-generator-java") | ||
public class MockIAMPolicyImpl extends IAMPolicyImplBase { | ||
private List<AbstractMessage> requests; | ||
private Queue<Object> responses; | ||
|
||
public MockIAMPolicyImpl() { | ||
requests = new ArrayList<>(); | ||
responses = new LinkedList<>(); | ||
} | ||
|
||
public List<AbstractMessage> getRequests() { | ||
return requests; | ||
} | ||
|
||
public void addResponse(AbstractMessage response) { | ||
responses.add(response); | ||
} | ||
|
||
public void setResponses(List<AbstractMessage> responses) { | ||
this.responses = new LinkedList<Object>(responses); | ||
} | ||
|
||
public void addException(Exception exception) { | ||
responses.add(exception); | ||
} | ||
|
||
public void reset() { | ||
requests = new ArrayList<>(); | ||
responses = new LinkedList<>(); | ||
} | ||
|
||
@Override | ||
public void testIamPermissions( | ||
TestIamPermissionsRequest request, | ||
StreamObserver<TestIamPermissionsResponse> responseObserver) { | ||
Object response = responses.poll(); | ||
if (response instanceof TestIamPermissionsResponse) { | ||
requests.add(request); | ||
responseObserver.onNext(((TestIamPermissionsResponse) response)); | ||
responseObserver.onCompleted(); | ||
} else if (response instanceof Exception) { | ||
responseObserver.onError(((Exception) response)); | ||
} else { | ||
responseObserver.onError( | ||
new IllegalArgumentException( | ||
String.format( | ||
"Unrecognized response type %s for method TestIamPermissions, expected %s or %s", | ||
response == null ? "null" : response.getClass().getName(), | ||
TestIamPermissionsResponse.class.getName(), | ||
Exception.class.getName()))); | ||
} | ||
} | ||
|
||
@Override | ||
public void setIamPolicy(SetIamPolicyRequest request, StreamObserver<Policy> responseObserver) { | ||
Object response = responses.poll(); | ||
if (response instanceof Policy) { | ||
requests.add(request); | ||
responseObserver.onNext(((Policy) response)); | ||
responseObserver.onCompleted(); | ||
} else if (response instanceof Exception) { | ||
responseObserver.onError(((Exception) response)); | ||
} else { | ||
responseObserver.onError( | ||
new IllegalArgumentException( | ||
String.format( | ||
"Unrecognized response type %s for method SetIamPolicy, expected %s or %s", | ||
response == null ? "null" : response.getClass().getName(), | ||
Policy.class.getName(), | ||
Exception.class.getName()))); | ||
} | ||
} | ||
|
||
@Override | ||
public void getIamPolicy(GetIamPolicyRequest request, StreamObserver<Policy> responseObserver) { | ||
Object response = responses.poll(); | ||
if (response instanceof Policy) { | ||
requests.add(request); | ||
responseObserver.onNext(((Policy) response)); | ||
responseObserver.onCompleted(); | ||
} else if (response instanceof Exception) { | ||
responseObserver.onError(((Exception) response)); | ||
} else { | ||
responseObserver.onError( | ||
new IllegalArgumentException( | ||
String.format( | ||
"Unrecognized response type %s for method GetIamPolicy, expected %s or %s", | ||
response == null ? "null" : response.getClass().getName(), | ||
Policy.class.getName(), | ||
Exception.class.getName()))); | ||
} | ||
} | ||
} |
59 changes: 59 additions & 0 deletions
59
...gle-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLocations.java
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,59 @@ | ||
/* | ||
* Copyright 2022 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 | ||
* | ||
* https://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 com.google.cloud.aiplatform.v1beta1; | ||
|
||
import com.google.api.core.BetaApi; | ||
import com.google.api.gax.grpc.testing.MockGrpcService; | ||
import com.google.protobuf.AbstractMessage; | ||
import io.grpc.ServerServiceDefinition; | ||
import java.util.List; | ||
import javax.annotation.Generated; | ||
|
||
@BetaApi | ||
@Generated("by gapic-generator-java") | ||
public class MockLocations implements MockGrpcService { | ||
private final MockLocationsImpl serviceImpl; | ||
|
||
public MockLocations() { | ||
serviceImpl = new MockLocationsImpl(); | ||
} | ||
|
||
@Override | ||
public List<AbstractMessage> getRequests() { | ||
return serviceImpl.getRequests(); | ||
} | ||
|
||
@Override | ||
public void addResponse(AbstractMessage response) { | ||
serviceImpl.addResponse(response); | ||
} | ||
|
||
@Override | ||
public void addException(Exception exception) { | ||
serviceImpl.addException(exception); | ||
} | ||
|
||
@Override | ||
public ServerServiceDefinition getServiceDefinition() { | ||
return serviceImpl.bindService(); | ||
} | ||
|
||
@Override | ||
public void reset() { | ||
serviceImpl.reset(); | ||
} | ||
} |
Oops, something went wrong.