|
30 | 30 | using FluentAssertions;
|
31 | 31 | using MongoDB.Bson;
|
32 | 32 | using MongoDB.Bson.TestHelpers.JsonDrivenTests;
|
33 |
| -using MongoDB.TestHelpers.XunitExtensions; |
34 | 33 | using MongoDB.Driver.Core;
|
35 | 34 | using MongoDB.Driver.Core.Authentication.External;
|
36 | 35 | using MongoDB.Driver.Core.Bindings;
|
|
44 | 43 | using MongoDB.Driver.Encryption;
|
45 | 44 | using MongoDB.Driver.TestHelpers;
|
46 | 45 | using MongoDB.Libmongocrypt;
|
| 46 | +using MongoDB.TestHelpers.XunitExtensions; |
47 | 47 | using Xunit;
|
48 | 48 | using Xunit.Abstractions;
|
49 | 49 | using Xunit.Sdk;
|
@@ -2272,6 +2272,29 @@ public void RewrapTest(
|
2272 | 2272 | }
|
2273 | 2273 | }
|
2274 | 2274 |
|
| 2275 | + [Fact] |
| 2276 | + public void RewrapManyDataKeyOptions_ctor_should_validate_provider_is_set() |
| 2277 | + { |
| 2278 | + // rewrap prose test case 2 |
| 2279 | + var exception = Record.Exception(() => new RewrapManyDataKeyOptions(null, new BsonDocument())); |
| 2280 | + exception.Should().BeOfType<ArgumentNullException>().Subject.ParamName.Should().Be("provider"); |
| 2281 | + |
| 2282 | + exception = Record.Exception(() => new RewrapManyDataKeyOptions("", new BsonDocument())); |
| 2283 | + exception.Should().BeOfType<ArgumentException>().Subject.ParamName.Should().Be("provider"); |
| 2284 | + } |
| 2285 | + |
| 2286 | + [Fact] |
| 2287 | + public void RewrapManyDataKeyOptions_with_should_validate_provider_is_set() |
| 2288 | + { |
| 2289 | + // rewrap prose test case 2 |
| 2290 | + var subject = new RewrapManyDataKeyOptions("provider", new BsonDocument()); |
| 2291 | + var exception = Record.Exception(() => subject.With(provider: null)); |
| 2292 | + exception.Should().BeOfType<ArgumentNullException>().Subject.ParamName.Should().Be("provider"); |
| 2293 | + |
| 2294 | + exception = Record.Exception(() => subject.With(provider: "")); |
| 2295 | + exception.Should().BeOfType<ArgumentException>().Subject.ParamName.Should().Be("provider"); |
| 2296 | + } |
| 2297 | + |
2275 | 2298 | [Theory]
|
2276 | 2299 | [ParameterAttributeData]
|
2277 | 2300 | public void ViewAreProhibitedTest([Values(false, true)] bool async)
|
|
0 commit comments