@@ -25,7 +25,7 @@ public InteropTests(ITestOutputHelper output)
25
25
_output = output ;
26
26
}
27
27
28
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
28
+ [ Fact ]
29
29
public Task EmptyUnary ( ) => InteropTestCase ( "empty_unary" ) ;
30
30
31
31
[ Fact ]
@@ -36,20 +36,20 @@ public InteropTests(ITestOutputHelper output)
36
36
[ QuarantinedTest ]
37
37
public Task ClientStreaming ( ) => InteropTestCase ( "client_streaming" ) ;
38
38
39
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
39
+ [ Fact ]
40
40
public Task ServerStreaming ( ) => InteropTestCase ( "server_streaming" ) ;
41
41
42
42
[ Fact ]
43
43
[ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/22101" ) ]
44
44
public Task PingPong ( ) => InteropTestCase ( "ping_pong" ) ;
45
45
46
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
46
+ [ Fact ]
47
47
public Task EmptyStream ( ) => InteropTestCase ( "empty_stream" ) ;
48
48
49
49
[ Fact ]
50
50
public Task CancelAfterBegin ( ) => InteropTestCase ( "cancel_after_begin" ) ;
51
51
52
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
52
+ [ Fact ]
53
53
public Task CancelAfterFirstResponse ( ) => InteropTestCase ( "cancel_after_first_response" ) ;
54
54
55
55
[ Fact ]
@@ -59,30 +59,31 @@ public InteropTests(ITestOutputHelper output)
59
59
[ QuarantinedTest ]
60
60
public Task CustomMetadata ( ) => InteropTestCase ( "custom_metadata" ) ;
61
61
62
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
62
+ [ Fact ]
63
63
public Task StatusCodeAndMessage ( ) => InteropTestCase ( "status_code_and_message" ) ;
64
64
65
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
65
+ [ Fact ]
66
66
public Task SpecialStatusMessage ( ) => InteropTestCase ( "special_status_message" ) ;
67
67
68
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
68
+ [ Fact ]
69
69
public Task UnimplementedService ( ) => InteropTestCase ( "unimplemented_service" ) ;
70
70
71
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
71
+ [ Fact ]
72
72
public Task UnimplementedMethod ( ) => InteropTestCase ( "unimplemented_method" ) ;
73
73
74
74
[ Fact ]
75
- [ QuarantinedTest ]
75
+ [ QuarantinedTest ( "Server is getting 'identity' encoding. Will resolve in gRPC project when updated SDK is available." ) ]
76
76
public Task ClientCompressedUnary ( ) => InteropTestCase ( "client_compressed_unary" ) ;
77
77
78
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
78
+ [ Fact ]
79
+ [ QuarantinedTest ( "Server is getting 'identity' encoding. Will resolve in gRPC project when updated SDK is available." ) ]
79
80
public Task ClientCompressedStreaming ( ) => InteropTestCase ( "client_compressed_streaming" ) ;
80
81
81
82
[ Fact ]
82
83
[ QuarantinedTest ]
83
84
public Task ServerCompressedUnary ( ) => InteropTestCase ( "server_compressed_unary" ) ;
84
85
85
- [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/24902" ) ]
86
+ [ Fact ]
86
87
public Task ServerCompressedStreaming ( ) => InteropTestCase ( "server_compressed_streaming" ) ;
87
88
88
89
private async Task InteropTestCase ( string name )
0 commit comments