|
8 | 8 |
|
9 | 9 | namespace Ydb.Sdk.Tests.Query; |
10 | 10 |
|
| 11 | +// TODO: Fix flap tests |
| 12 | +// https://github.com/ydb-platform/ydb-dotnet-sdk/issues/66 |
11 | 13 | [Trait("Category", "Integration")] |
12 | 14 | public class TestQueryIntegration |
13 | 15 | { |
@@ -38,7 +40,8 @@ public TestQueryIntegration() |
38 | 40 | // Assert.Equal(StatusCode.Success, dropResponse.Status.StatusCode); |
39 | 41 | // } |
40 | 42 |
|
41 | | - [Fact] |
| 43 | + // [Fact] |
| 44 | + // https://github.com/ydb-platform/ydb-dotnet-sdk/issues/66 |
42 | 45 | public async Task TestSimpleSelect() |
43 | 46 | { |
44 | 47 | await using var driver = await Driver.CreateInitialized(_driverConfig, _loggerFactory); |
@@ -113,7 +116,8 @@ private async Task ExecSchemeQueryOnTableClient(TableClient client, string query |
113 | 116 | response.Status.EnsureSuccess(); |
114 | 117 | } |
115 | 118 |
|
116 | | - [Fact] |
| 119 | + // [Fact] |
| 120 | + // https://github.com/ydb-platform/ydb-dotnet-sdk/issues/66 |
117 | 121 | public async Task TestSimpleCrud() |
118 | 122 | { |
119 | 123 | await using var driver = await Driver.CreateInitialized(_driverConfig, _loggerFactory); |
@@ -199,11 +203,12 @@ public async Task TestDoTxRollback() |
199 | 203 | Assert.Equal(StatusCode.ClientInternalError, response.Status.StatusCode); |
200 | 204 | } |
201 | 205 |
|
202 | | - [Theory] |
203 | | - [InlineData(StatusCode.ClientInternalError, StatusCode.Success, 2, true)] |
204 | | - [InlineData(StatusCode.ClientInternalError, StatusCode.ClientInternalError, 1, false)] |
205 | | - [InlineData(StatusCode.InternalError, StatusCode.InternalError, 1, true)] |
206 | | - [InlineData(StatusCode.Aborted, StatusCode.Success, 2, false)] |
| 206 | + // [Theory] |
| 207 | + // [InlineData(StatusCode.ClientInternalError, StatusCode.Success, 2, true)] |
| 208 | + // [InlineData(StatusCode.ClientInternalError, StatusCode.ClientInternalError, 1, false)] |
| 209 | + // [InlineData(StatusCode.InternalError, StatusCode.InternalError, 1, true)] |
| 210 | + // [InlineData(StatusCode.Aborted, StatusCode.Success, 2, false)] |
| 211 | + // https://github.com/ydb-platform/ydb-dotnet-sdk/issues/66 |
207 | 212 | public async Task TestIdempotency(StatusCode statusCode, StatusCode expectedStatusCode, int expectedAttempts, |
208 | 213 | bool isIdempotent) |
209 | 214 | { |
@@ -236,7 +241,8 @@ public async Task TestIdempotency(StatusCode statusCode, StatusCode expectedStat |
236 | 241 | Assert.Equal(expectedAttempts, attempts); |
237 | 242 | } |
238 | 243 |
|
239 | | - [Fact] |
| 244 | + // [Fact] |
| 245 | + // https://github.com/ydb-platform/ydb-dotnet-sdk/issues/66 |
240 | 246 | public async Task TestReaders() |
241 | 247 | { |
242 | 248 | await using var driver = await Driver.CreateInitialized(_driverConfig, _loggerFactory); |
|
0 commit comments