grpc-dart/test/src/client_utils.dart

241 lines
7.7 KiB
Dart

// Copyright (c) 2017, the gRPC project authors. Please see the AUTHORS file
// for details. All rights reserved.
//
// 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.
import 'dart:async';
import 'package:grpc/src/client/call.dart';
import 'package:grpc/src/client/channel.dart';
import 'package:grpc/src/client/channel.dart';
import 'package:grpc/src/client/client.dart';
import 'package:grpc/src/client/common.dart';
import 'package:grpc/src/client/connection.dart';
import 'package:grpc/src/client/http2_connection.dart';
import 'package:grpc/src/client/method.dart';
import 'package:grpc/src/client/options.dart';
import 'package:grpc/src/shared/message.dart';
import 'package:test/test.dart';
import 'package:mockito/mockito.dart';
import 'package:grpc/src/client/transport/transport.dart';
import 'utils.dart';
typedef void ClientTestMessageHandler(List<int> message);
GrpcData validateClientDataMessage(List<int> message) {
final decoded = new GrpcData(message);
expect(decoded, new TypeMatcher<GrpcData>());
return decoded;
}
class MockTransport extends Mock implements Transport {}
class MockStream extends Mock implements GrpcTransportStream {}
class FakeConnection extends Http2ClientConnection {
var connectionError;
FakeConnection._(String host, Transport transport, ChannelOptions options,
Future<Transport> Function() connectTransport)
: super(options, connectTransport);
factory FakeConnection(
String host, Transport transport, ChannelOptions options) {
FakeConnection f;
f = FakeConnection._(host, transport, options, () async {
if (f.connectionError != null) throw f.connectionError;
return transport;
});
return f;
}
}
Duration testBackoff(Duration lastBackoff) => const Duration(milliseconds: 1);
class FakeChannelOptions implements ChannelOptions {
Duration idleTimeout = const Duration(seconds: 1);
BackoffStrategy backoffStrategy = testBackoff;
}
class FakeChannel extends ClientChannelBase {
final Http2ClientConnection connection;
final FakeChannelOptions options;
FakeChannel(String host, this.connection, this.options);
@override
Http2ClientConnection createConnection() => connection;
}
class TestClient extends Client {
static final _$unary =
new ClientMethod<int, int>('/Test/Unary', mockEncode, mockDecode);
static final _$clientStreaming = new ClientMethod<int, int>(
'/Test/ClientStreaming', mockEncode, mockDecode);
static final _$serverStreaming = new ClientMethod<int, int>(
'/Test/ServerStreaming', mockEncode, mockDecode);
static final _$bidirectional =
new ClientMethod<int, int>('/Test/Bidirectional', mockEncode, mockDecode);
TestClient(ClientChannel channel, {CallOptions options})
: super(channel, options: options);
ResponseFuture<int> unary(int request, {CallOptions options}) {
final call = $createCall(_$unary, new Stream.fromIterable([request]),
options: options);
return new ResponseFuture(call);
}
ResponseFuture<int> clientStreaming(Stream<int> request,
{CallOptions options}) {
final call = $createCall(_$clientStreaming, request, options: options);
return new ResponseFuture(call);
}
ResponseStream<int> serverStreaming(int request, {CallOptions options}) {
final call = $createCall(
_$serverStreaming, new Stream.fromIterable([request]),
options: options);
return new ResponseStream(call);
}
ResponseStream<int> bidirectional(Stream<int> request,
{CallOptions options}) {
final call = $createCall(_$bidirectional, request, options: options);
return new ResponseStream(call);
}
}
class ClientHarness {
MockTransport transport;
FakeConnection connection;
FakeChannel channel;
FakeChannelOptions channelOptions;
MockStream stream;
StreamController<List<int>> fromClient;
StreamController<GrpcMessage> toClient;
TestClient client;
void setUp() {
transport = new MockTransport();
channelOptions = new FakeChannelOptions();
connection = new FakeConnection('test', transport, channelOptions);
channel = new FakeChannel('test', connection, channelOptions);
stream = new MockStream();
fromClient = new StreamController();
toClient = new StreamController();
when(transport.makeRequest(any, any, any, any)).thenReturn(stream);
when(transport.onActiveStateChanged = captureAny).thenReturn(null);
when(stream.outgoingMessages).thenReturn(fromClient.sink);
when(stream.incomingMessages).thenAnswer((_) => toClient.stream);
client = new TestClient(channel);
}
void tearDown() {
fromClient.close();
toClient.close();
}
void sendResponseHeader({Map<String, String> headers = const {}}) {
toClient.add(new GrpcMetadata(headers));
}
void sendResponseValue(int value) {
toClient.add(new GrpcData(mockEncode(value)));
}
void sendResponseTrailer(
{Map<String, String> headers = const {}, bool closeStream = true}) {
toClient.add(new GrpcMetadata(headers));
if (closeStream) toClient.close();
}
void signalIdle() {
final ActiveStateHandler handler =
verify(transport.onActiveStateChanged = captureAny).captured.single;
expect(handler, isNotNull);
handler(false);
}
Future<void> runTest(
{Future clientCall,
dynamic expectedResult,
String expectedPath,
Duration expectedTimeout,
Map<String, String> expectedCustomHeaders,
List<ClientTestMessageHandler> serverHandlers = const [],
Function doneHandler,
bool expectDone = true}) async {
int serverHandlerIndex = 0;
void handleServerMessage(List<int> message) {
serverHandlers[serverHandlerIndex++](message);
}
final clientSubscription = fromClient.stream.listen(
expectAsync1(handleServerMessage, count: serverHandlers.length),
onError: expectAsync1((_) {}, count: 0),
onDone: expectAsync0(doneHandler ?? () {}, count: expectDone ? 1 : 0));
final result = await clientCall;
if (expectedResult != null) {
expect(result, expectedResult);
}
final capturedParameters = verify(transport.makeRequest(
captureAny, captureAny, captureAny, captureAny))
.captured;
if (expectedPath != null) {
expect(capturedParameters[0], expectedPath);
}
expect(capturedParameters[1], expectedTimeout);
final Map<String, String> headers = capturedParameters[2];
headers?.forEach((key, value) {
expect(expectedCustomHeaders[key], value);
});
await clientSubscription.cancel();
}
Future<void> expectThrows(Future future, dynamic exception) async {
try {
await future;
fail('Did not throw');
} catch (e) {
expect(e, exception);
}
}
Future<void> runFailureTest(
{Future clientCall,
dynamic expectedException,
String expectedPath,
Duration expectedTimeout,
Map<String, String> expectedCustomHeaders,
List<ClientTestMessageHandler> serverHandlers = const [],
bool expectDone = true}) async {
return runTest(
clientCall: expectThrows(clientCall, expectedException),
expectedPath: expectedPath,
expectedTimeout: expectedTimeout,
expectedCustomHeaders: expectedCustomHeaders,
serverHandlers: serverHandlers,
expectDone: expectDone,
);
}
}