-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathCosmosSourceSettingsTests.cs
More file actions
90 lines (75 loc) · 2.43 KB
/
CosmosSourceSettingsTests.cs
File metadata and controls
90 lines (75 loc) · 2.43 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
using Cosmos.DataTransfer.Interfaces;
namespace Cosmos.DataTransfer.CosmosExtension.UnitTests;
[TestClass]
public class CosmosSourceSettingsTests
{
[TestMethod]
public void GetValidationErrors_WithNoConnection_ReturnsError()
{
var settings = new CosmosSourceSettings
{
Database = "db",
Container = "container",
};
var validationErrors = settings.GetValidationErrors();
Assert.AreEqual(1, validationErrors.Count(v => v.Contains(nameof(CosmosSinkSettings.ConnectionString))));
}
[TestMethod]
public void GetValidationErrors_WithNoRbacConnection_ReturnsError()
{
var settings = new CosmosSourceSettings
{
UseRbacAuth = true,
Database = "db",
Container = "container",
};
var validationErrors = settings.GetValidationErrors();
Assert.AreEqual(1, validationErrors.Count(v => v.Contains(nameof(CosmosSinkSettings.AccountEndpoint))));
}
[TestMethod]
public void Validate_WithConnectionString_Succeeds()
{
var settings = new CosmosSourceSettings
{
ConnectionString = "AccountEndpoint=https://localhost:8081/;AccountKey=",
Database = "db",
Container = "container",
};
settings.Validate();
}
[TestMethod]
public void Validate_WithAccountEndpoint_Succeeds()
{
var settings = new CosmosSourceSettings
{
UseRbacAuth = true,
AccountEndpoint = "https://localhost:8081/",
Database = "db",
Container = "container",
};
settings.Validate();
}
[TestMethod]
public void UseDefaultProxyCredentials_DefaultsToFalse()
{
var settings = new CosmosSourceSettings
{
ConnectionString = "AccountEndpoint=https://localhost:8081/;AccountKey=",
Database = "db",
Container = "container",
};
Assert.IsFalse(settings.UseDefaultProxyCredentials);
}
[TestMethod]
public void UseDefaultProxyCredentials_CanBeSetToTrue()
{
var settings = new CosmosSourceSettings
{
ConnectionString = "AccountEndpoint=https://localhost:8081/;AccountKey=",
Database = "db",
Container = "container",
UseDefaultProxyCredentials = true,
};
Assert.IsTrue(settings.UseDefaultProxyCredentials);
}
}