-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathSessionExecuteAsyncTests.cs
More file actions
132 lines (117 loc) · 5.01 KB
/
SessionExecuteAsyncTests.cs
File metadata and controls
132 lines (117 loc) · 5.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
//
// Copyright (C) DataStax Inc.
//
// 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.
//
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using NUnit.Framework;
namespace Cassandra.IntegrationTests.Core
{
public class SessionExecuteAsyncTests : SimulacronTest
{
public override void OneTimeSetUp()
{
base.OneTimeSetUp();
const int minThreads = 32;
ThreadPool.SetMinThreads(minThreads, minThreads);
}
[Test]
public void SessionExecuteAsyncCQLQueryToSync()
{
var task = Session.ExecuteAsync(new SimpleStatement("SELECT * FROM system.local"));
//forcing it to execute sync for testing purposes
var rowset = task.Result;
Assert.True(rowset.Any(), "Returned result should contain rows.");
}
[Test]
public void SessionExecuteAsyncPreparedToSync()
{
TestCluster.PrimeFluent(
b => b.WhenQuery(
"SELECT key FROM system.local WHERE key = ?",
when => when.WithParam("local"))
.ThenRowsSuccess(new[] {"key"}, r => r.WithRow("local")));
var statement = Session.Prepare("SELECT key FROM system.local WHERE key = ?");
var task = Session.ExecuteAsync(statement.Bind("local"));
//forcing it to execute sync for testing purposes
var rowset = task.Result;
Assert.True(rowset.Any(), "Returned result should contain rows.");
}
[Test]
public void SessionExecuteAsyncSyntaxErrorQuery()
{
//Execute an invalid query
TestCluster.PrimeFluent(
b => b.WhenQuery("SELECT WILL FAIL")
.ThenSyntaxError("msg"));
var task = Session.ExecuteAsync(new SimpleStatement("SELECT WILL FAIL"));
task.ContinueWith(t =>
{
Assert.NotNull(t.Exception);
}, TaskContinuationOptions.OnlyOnFaulted);
task.ContinueWith(t =>
{
Assert.Fail("Task should not have continued");
}, TaskContinuationOptions.OnlyOnRanToCompletion);
Exception exThrown = null;
try
{
task.Wait();
}
catch (Exception ex)
{
exThrown = ex;
}
Assert.NotNull(exThrown);
Assert.IsInstanceOf<AggregateException>(exThrown);
Assert.IsInstanceOf<SyntaxError>(((AggregateException)exThrown).InnerExceptions.First());
}
[Test]
public void SessionExecuteAsyncCQLQueriesParallel()
{
var task1 = Session.ExecuteAsync(new SimpleStatement("select * FROM system.local"));
var task2 = Session.ExecuteAsync(new SimpleStatement("select key from system.local"));
var task3 = Session.ExecuteAsync(new SimpleStatement("select tokens from system.local"));
//forcing the calling thread to wait for all the parallel task to finish
Task.WaitAll(task1, task2, task3);
Assert.NotNull(task1.Result.First().GetValue<string>("key"));
Assert.NotNull(task2.Result.First().GetValue<string>("key"));
Assert.NotNull(task3.Result.First().GetValue<string[]>("tokens"));
}
[Test]
public async Task SessionExecuteAsyncCQLQueriesParallelAndSlowResponseProcessingInUserThread()
{
const int sleepTimeMs = 3_000;
const int maxExpectedWaitingTimeMs = 5_000;
for (var i = 0; i < 3; i++)
{
var sw = Stopwatch.StartNew();
var tasks = Enumerable.Range(0, 10)
.Select(_ => Task.Run(async () =>
{
var statement = new SimpleStatement("SELECT * FROM system.local");
await Session.ExecuteAsync(statement).ConfigureAwait(false);
Thread.Sleep(sleepTimeMs);
}))
.ToArray();
await Task.WhenAll(tasks).ConfigureAwait(false);
sw.Stop();
Assert.Less(sw.ElapsedMilliseconds, maxExpectedWaitingTimeMs);
}
}
}
}