public async stt::Task MutateRemarketingActionsAsync()
        {
            moq::Mock <RemarketingActionService.RemarketingActionServiceClient> mockGrpcClient = new moq::Mock <RemarketingActionService.RemarketingActionServiceClient>(moq::MockBehavior.Strict);
            MutateRemarketingActionsRequest request = new MutateRemarketingActionsRequest
            {
                CustomerId = "customer_id3b3724cb",
                Operations =
                {
                    new RemarketingActionOperation(),
                },
            };
            MutateRemarketingActionsResponse expectedResponse = new MutateRemarketingActionsResponse
            {
                Results =
                {
                    new MutateRemarketingActionResult(),
                },
                PartialFailureError = new gr::Status(),
            };

            mockGrpcClient.Setup(x => x.MutateRemarketingActionsAsync(request, moq::It.IsAny <grpccore::CallOptions>())).Returns(new grpccore::AsyncUnaryCall <MutateRemarketingActionsResponse>(stt::Task.FromResult(expectedResponse), null, null, null, null));
            RemarketingActionServiceClient   client = new RemarketingActionServiceClientImpl(mockGrpcClient.Object, null);
            MutateRemarketingActionsResponse responseCallSettings = await client.MutateRemarketingActionsAsync(request.CustomerId, request.Operations, gaxgrpc::CallSettings.FromCancellationToken(st::CancellationToken.None));

            Assert.AreEqual(expectedResponse, responseCallSettings);
            MutateRemarketingActionsResponse responseCancellationToken = await client.MutateRemarketingActionsAsync(request.CustomerId, request.Operations, st::CancellationToken.None);

            Assert.AreEqual(expectedResponse, responseCancellationToken);
            mockGrpcClient.VerifyAll();
        }
Exemplo n.º 2
0
        public async Task MutateRemarketingActionsAsync3()
        {
            Mock <RemarketingActionService.RemarketingActionServiceClient> mockGrpcClient = new Mock <RemarketingActionService.RemarketingActionServiceClient>(MockBehavior.Strict);
            MutateRemarketingActionsRequest request = new MutateRemarketingActionsRequest
            {
                CustomerId = "customerId-1772061412",
                Operations = { },
            };
            MutateRemarketingActionsResponse expectedResponse = new MutateRemarketingActionsResponse();

            mockGrpcClient.Setup(x => x.MutateRemarketingActionsAsync(request, It.IsAny <CallOptions>()))
            .Returns(new Grpc.Core.AsyncUnaryCall <MutateRemarketingActionsResponse>(Task.FromResult(expectedResponse), null, null, null, null));
            RemarketingActionServiceClient   client   = new RemarketingActionServiceClientImpl(mockGrpcClient.Object, null);
            MutateRemarketingActionsResponse response = await client.MutateRemarketingActionsAsync(request);

            Assert.AreEqual(expectedResponse, response);
            mockGrpcClient.VerifyAll();
        }
Exemplo n.º 3
0
        public async Task MutateRemarketingActionsAsync()
        {
            Mock <RemarketingActionService.RemarketingActionServiceClient> mockGrpcClient = new Mock <RemarketingActionService.RemarketingActionServiceClient>(MockBehavior.Strict);
            MutateRemarketingActionsRequest expectedRequest = new MutateRemarketingActionsRequest
            {
                CustomerId     = "customerId-1772061412",
                Operations     = { },
                PartialFailure = true,
                ValidateOnly   = false,
            };
            MutateRemarketingActionsResponse expectedResponse = new MutateRemarketingActionsResponse();

            mockGrpcClient.Setup(x => x.MutateRemarketingActionsAsync(expectedRequest, It.IsAny <CallOptions>()))
            .Returns(new Grpc.Core.AsyncUnaryCall <MutateRemarketingActionsResponse>(Task.FromResult(expectedResponse), null, null, null, null));
            RemarketingActionServiceClient client = new RemarketingActionServiceClientImpl(mockGrpcClient.Object, null);
            string customerId = "customerId-1772061412";
            IEnumerable <RemarketingActionOperation> operations = new List <RemarketingActionOperation>();
            bool partialFailure = true;
            bool validateOnly   = false;
            MutateRemarketingActionsResponse response = await client.MutateRemarketingActionsAsync(customerId, operations, partialFailure, validateOnly);

            Assert.AreEqual(expectedResponse, response);
            mockGrpcClient.VerifyAll();
        }