forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOleDbCommandTests.cs
280 lines (260 loc) · 12 KB
/
OleDbCommandTests.cs
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Data;
using System.IO;
using System.Runtime.CompilerServices;
using Xunit;
namespace System.Data.OleDb.Tests
{
[Collection("System.Data.OleDb")] // not let tests run in parallel
public class OleDbCommandTests : OleDbTestBase
{
[ConditionalFact(Helpers.IsDriverAvailable)]
public void UpdatedRowSource_SetInvalidValue_Throws()
{
const int InvalidValue = 50;
using (var cmd = (OleDbCommand)OleDbFactory.Instance.CreateCommand())
{
Assert.Equal(UpdateRowSource.Both, cmd.UpdatedRowSource);
cmd.UpdatedRowSource = UpdateRowSource.FirstReturnedRecord;
Assert.Equal(UpdateRowSource.FirstReturnedRecord, cmd.UpdatedRowSource);
if (PlatformDetection.IsFullFramework)
{
AssertExtensions.Throws<ArgumentOutOfRangeException>(
() => cmd.UpdatedRowSource = (UpdateRowSource)InvalidValue,
$"The {nameof(UpdateRowSource)} enumeration value, {InvalidValue}, is invalid.\r\nParameter name: {nameof(UpdateRowSource)}"
);
}
else
{
AssertExtensions.Throws<ArgumentOutOfRangeException>(
() => cmd.UpdatedRowSource = (UpdateRowSource)InvalidValue,
$"The {nameof(UpdateRowSource)} enumeration value, {InvalidValue}, is invalid. (Parameter \'{nameof(UpdateRowSource)}\')"
);
}
}
}
[ConditionalFact(Helpers.IsDriverAvailable)]
public void CommandTimeout_SetInvalidValue_Throws()
{
const int InvalidValue = -1;
using (var cmd = new OleDbCommand(default, connection, transaction))
{
if (PlatformDetection.IsFullFramework)
{
AssertExtensions.Throws<ArgumentException>(
() => cmd.CommandTimeout = InvalidValue,
$"Invalid CommandTimeout value {InvalidValue}; the value must be >= 0.\r\nParameter name: {nameof(cmd.CommandTimeout)}"
);
}
else
{
AssertExtensions.Throws<ArgumentException>(
() => cmd.CommandTimeout = InvalidValue,
$"Invalid CommandTimeout value {InvalidValue}; the value must be >= 0. (Parameter \'{nameof(cmd.CommandTimeout)}\')"
);
}
}
}
[ConditionalFact(Helpers.IsDriverAvailable)]
public void ResetCommandTimeout_ResetsToDefault()
{
using (var cmd = new OleDbCommand(default, connection, transaction))
{
const int DefaultValue = 30;
Assert.Equal(DefaultValue, cmd.CommandTimeout);
cmd.CommandTimeout = DefaultValue + 50;
Assert.Equal(DefaultValue + 50, cmd.CommandTimeout);
cmd.ResetCommandTimeout();
Assert.Equal(DefaultValue, cmd.CommandTimeout);
}
}
[ConditionalFact(Helpers.IsDriverAvailable)]
public void CommandType_SetInvalidValue_Throws()
{
const int InvalidValue = 0;
using (var cmd = (OleDbCommand)OleDbFactory.Instance.CreateCommand())
{
if (PlatformDetection.IsFullFramework)
{
AssertExtensions.Throws<ArgumentOutOfRangeException>(
() => cmd.CommandType = (CommandType)InvalidValue,
$"The CommandType enumeration value, {InvalidValue}, is invalid.\r\nParameter name: {nameof(cmd.CommandType)}"
);
}
else
{
AssertExtensions.Throws<ArgumentOutOfRangeException>(
() => cmd.CommandType = (CommandType)InvalidValue,
$"The CommandType enumeration value, {InvalidValue}, is invalid. (Parameter \'{nameof(cmd.CommandType)}\')"
);
}
}
}
[OuterLoop]
[ConditionalFact(Helpers.IsDriverAvailable)]
public void Prepare_ClosedConnection_Throws()
{
RunTest((command, tableName) => {
command.CommandText = @"SELECT * FROM " + tableName;
connection.Close();
AssertExtensions.Throws<InvalidOperationException>(
() => command.Prepare(),
$"{nameof(command.Prepare)} requires an open and available Connection. The connection's current state is closed."
);
connection.Open(); // reopen when done
});
}
[OuterLoop]
[ConditionalFact(Helpers.IsDriverAvailable)]
public void Prepare_MultipleCases_ThrowsForInvalidQuery()
{
RunTest((command, tableName) => {
Assert.Equal(ConnectionState.Open, connection.State);
command.CommandText = "INVALID_STATEMENT";
AssertExtensions.Throws<OleDbException>(
() => command.Prepare(),
"Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'."
);
command.CommandText = @"UPDATE " + tableName + " SET NumPlants ? WHERE Firstname = ?";
AssertExtensions.Throws<OleDbException>(
() => command.Prepare(),
$"Syntax error in UPDATE statement."
);
});
}
[OuterLoop]
[ConditionalFact(Helpers.IsDriverAvailable)]
public void Prepare_InsertMultipleItems_UseTableDirectToVerify()
{
RunTest((command, tableName) => {
command.CommandText = @"INSERT INTO " + tableName + " (Firstname, NumPlants) VALUES (?, ?)";
command.Prepare(); // Good to use when command used multiple times
command.Parameters.Add(command.CreateParameter());
command.Parameters.Add(command.CreateParameter());
object[] newItems = new object[] {
new { Firstname = "John", NumPlants = 7 },
new { Firstname = "Mark", NumPlants = 12 },
new { Firstname = "Nick", NumPlants = 6 }
};
foreach (dynamic item in newItems)
{
command.Parameters[0].Value = item.Firstname;
command.Parameters[1].Value = item.NumPlants;
command.ExecuteNonQuery();
}
var currentCommandType = command.CommandType;
command.CommandType = CommandType.TableDirect;
command.CommandText = tableName;
using (OleDbDataReader reader = command.ExecuteReader())
{
Assert.True(reader.Read(), "skip existing row");
Assert.True(reader.Read(), "skip existing row");
foreach (dynamic item in newItems)
{
Assert.True(reader.Read(), "validate new row");
Assert.Equal(item.Firstname, reader["Firstname"]);
Assert.Equal(item.NumPlants, reader["NumPlants"]);
}
object x;
AssertExtensions.Throws<IndexOutOfRangeException>(() => x = reader["MissingColumn"], "MissingColumn");
}
command.CommandType = currentCommandType;
});
}
[OuterLoop]
[ConditionalFact(Helpers.IsDriverAvailable)]
public void Parameters_AddNullParameter_Throws()
{
RunTest((command, tableName) => {
if (PlatformDetection.IsFullFramework)
{
AssertExtensions.Throws<ArgumentNullException>(
() => command.Parameters.Add(null),
$"The {nameof(OleDbParameterCollection)} only accepts non-null {nameof(OleDbParameter)} type objects.\r\nParameter name: value"
);
}
else
{
AssertExtensions.Throws<ArgumentNullException>(
() => command.Parameters.Add(null),
$"The {nameof(OleDbParameterCollection)} only accepts non-null {nameof(OleDbParameter)} type objects. (Parameter \'value\')"
);
}
command.CommandText = "SELECT * FROM " + tableName + " WHERE NumPlants = ?";
command.Parameters.Add(new OleDbParameter("@p1", 7));
using (OleDbDataReader reader = command.ExecuteReader())
{
Assert.True(reader.Read());
Assert.Equal("John", reader["Firstname"]);
Assert.Equal(7, reader["NumPlants"]);
Assert.False(reader.Read(), "Expected to find only one item");
}
});
}
[OuterLoop]
[ConditionalFact(Helpers.IsDriverAvailable)]
public void ExecuteNonQuery_NullConnection_Throws()
{
RunTest((command, tableName) => {
command.CommandText = @"SELECT * FROM " + tableName;
var currentConnection = command.Connection;
command.Connection = null;
AssertExtensions.Throws<InvalidOperationException>(
() => command.ExecuteNonQuery(),
$"{nameof(command.ExecuteNonQuery)}: {nameof(command.Connection)} property has not been initialized."
);
command.Connection = currentConnection;
});
}
[OuterLoop]
[ConditionalFact(Helpers.IsDriverAvailable)]
public void CommandType_InvalidType_Throws()
{
RunTest((command, tableName) => {
using (var innerCommand = new OleDbCommand(cmdText: @"SELECT * FROM " + tableName))
{
Assert.Throws<ArgumentOutOfRangeException>(() => innerCommand.CommandType = (CommandType)0);
}
});
}
[OuterLoop]
[ConditionalFact(Helpers.IsDriverAvailable)]
public void ExecuteScalar_Select_ComputesSumAndCount()
{
RunTest((command, tableName) => {
command.CommandText = @"SELECT Count(*) FROM " + tableName;
Assert.Equal(2, Convert.ToInt32(command.ExecuteScalar()));
command.CommandText = @"SELECT Sum(NumPlants) FROM " + tableName;
Assert.Equal(13, Convert.ToInt32(command.ExecuteScalar()));
});
}
private void RunTest(Action<OleDbCommand, string> testAction, [CallerMemberName] string memberName = null)
{
string tableName = Helpers.GetTableName(memberName);
Assert.False(File.Exists(Path.Combine(TestDirectory, tableName)));
command.CommandText =
@"CREATE TABLE " + tableName + @" (
Firstname NVARCHAR(5),
NumPlants INT)";
command.ExecuteNonQuery();
Assert.True(File.Exists(Path.Combine(TestDirectory, tableName)));
command.CommandText =
@"INSERT INTO " + tableName + @" (
Firstname,
NumPlants)
VALUES ( 'John', 7 );";
command.ExecuteNonQuery();
command.CommandText =
@"INSERT INTO " + tableName + @" (
Firstname,
NumPlants)
VALUES ( 'Sam', 6 );";
command.ExecuteNonQuery();
testAction(command, tableName);
command.CommandText = @"DROP TABLE " + tableName;
command.ExecuteNonQuery();
}
}
}