Search in sources :

Example 6 with ValidateSchemaResponse

use of com.google.pubsub.v1.ValidateSchemaResponse in project java-pubsub by googleapis.

the class SchemaServiceClientTest method validateSchemaTest.

@Test
public void validateSchemaTest() throws Exception {
    ValidateSchemaResponse expectedResponse = ValidateSchemaResponse.newBuilder().build();
    mockSchemaService.addResponse(expectedResponse);
    ProjectName parent = ProjectName.of("[PROJECT]");
    Schema schema = Schema.newBuilder().build();
    ValidateSchemaResponse actualResponse = client.validateSchema(parent, schema);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<AbstractMessage> actualRequests = mockSchemaService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    ValidateSchemaRequest actualRequest = ((ValidateSchemaRequest) actualRequests.get(0));
    Assert.assertEquals(parent.toString(), actualRequest.getParent());
    Assert.assertEquals(schema, actualRequest.getSchema());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : ValidateSchemaResponse(com.google.pubsub.v1.ValidateSchemaResponse) AbstractMessage(com.google.protobuf.AbstractMessage) ProjectName(com.google.pubsub.v1.ProjectName) Schema(com.google.pubsub.v1.Schema) ValidateSchemaRequest(com.google.pubsub.v1.ValidateSchemaRequest) Test(org.junit.Test)

Example 7 with ValidateSchemaResponse

use of com.google.pubsub.v1.ValidateSchemaResponse in project gapic-generator-java by googleapis.

the class SyncValidateSchemaProjectnameSchema method syncValidateSchemaProjectnameSchema.

public static void syncValidateSchemaProjectnameSchema() throws Exception {
    // It may require modifications to work in your environment.
    try (SchemaServiceClient schemaServiceClient = SchemaServiceClient.create()) {
        ProjectName parent = ProjectName.of("[PROJECT]");
        Schema schema = Schema.newBuilder().build();
        ValidateSchemaResponse response = schemaServiceClient.validateSchema(parent, schema);
    }
}
Also used : ValidateSchemaResponse(com.google.pubsub.v1.ValidateSchemaResponse) ProjectName(com.google.pubsub.v1.ProjectName) Schema(com.google.pubsub.v1.Schema) SchemaServiceClient(com.google.cloud.pubsub.v1.SchemaServiceClient)

Example 8 with ValidateSchemaResponse

use of com.google.pubsub.v1.ValidateSchemaResponse in project gapic-generator-java by googleapis.

the class SyncValidateSchemaStringSchema method syncValidateSchemaStringSchema.

public static void syncValidateSchemaStringSchema() throws Exception {
    // It may require modifications to work in your environment.
    try (SchemaServiceClient schemaServiceClient = SchemaServiceClient.create()) {
        String parent = ProjectName.of("[PROJECT]").toString();
        Schema schema = Schema.newBuilder().build();
        ValidateSchemaResponse response = schemaServiceClient.validateSchema(parent, schema);
    }
}
Also used : ValidateSchemaResponse(com.google.pubsub.v1.ValidateSchemaResponse) Schema(com.google.pubsub.v1.Schema) SchemaServiceClient(com.google.cloud.pubsub.v1.SchemaServiceClient)

Aggregations

ValidateSchemaResponse (com.google.pubsub.v1.ValidateSchemaResponse)8 Schema (com.google.pubsub.v1.Schema)6 ValidateSchemaRequest (com.google.pubsub.v1.ValidateSchemaRequest)6 SchemaServiceClient (com.google.cloud.pubsub.v1.SchemaServiceClient)4 AbstractMessage (com.google.protobuf.AbstractMessage)4 Test (org.junit.Test)4 ProjectName (com.google.pubsub.v1.ProjectName)3 ByteString (com.google.protobuf.ByteString)2