Skip to content

Commit 1c4a4d9

Browse files
authored
CSHARP-4357: Error if RewrapManyDataKey is called with masterKey and without provider (#1099)
1 parent 726ab47 commit 1c4a4d9

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

src/MongoDB.Driver/Encryption/RewrapManyDataKeyOptions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public RewrapManyDataKeyOptions(
3737
string provider,
3838
Optional<BsonDocument> masterKey = default)
3939
{
40-
_provider = Ensure.IsNotNull(provider, nameof(provider));
40+
_provider = Ensure.IsNotNullOrEmpty(provider, nameof(provider));
4141
_masterKey = masterKey.WithDefault(null);
4242
}
4343

tests/MongoDB.Driver.Tests/Specifications/client-side-encryption/prose-tests/ClientEncryptionProseTests.cs

+24-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
using FluentAssertions;
3131
using MongoDB.Bson;
3232
using MongoDB.Bson.TestHelpers.JsonDrivenTests;
33-
using MongoDB.TestHelpers.XunitExtensions;
3433
using MongoDB.Driver.Core;
3534
using MongoDB.Driver.Core.Authentication.External;
3635
using MongoDB.Driver.Core.Bindings;
@@ -44,6 +43,7 @@
4443
using MongoDB.Driver.Encryption;
4544
using MongoDB.Driver.TestHelpers;
4645
using MongoDB.Libmongocrypt;
46+
using MongoDB.TestHelpers.XunitExtensions;
4747
using Xunit;
4848
using Xunit.Abstractions;
4949
using Xunit.Sdk;
@@ -2272,6 +2272,29 @@ public void RewrapTest(
22722272
}
22732273
}
22742274

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+
22752298
[Theory]
22762299
[ParameterAttributeData]
22772300
public void ViewAreProhibitedTest([Values(false, true)] bool async)

0 commit comments

Comments
 (0)