-
Notifications
You must be signed in to change notification settings - Fork 879
/
Copy pathMetadataTests.cs
133 lines (114 loc) · 4.34 KB
/
MetadataTests.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
// Copyright 2024 Confluent 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.
//
// Refer to LICENSE for more information.
using System.Collections.Generic;
using Xunit;
namespace Confluent.SchemaRegistry.UnitTests;
public class MetadataTests
{
[Fact]
public void MetadataWithSameContentShouldBeEqualAndHaveSameHashCode()
{
var metadata1 = CreateMetadata(
tags: new Dictionary<string, ISet<string>>
{
{ "key1", new HashSet<string> { "value1", "value2" } },
{ "key2", new HashSet<string> { "value3", "value4" } }
},
properties: new Dictionary<string, string>
{
{ "key1", "value1" },
{ "key2", "value2" }
},
sensitive: new HashSet<string> { "sensitive1", "sensitive2" }
);
var metadata2 = CreateMetadata(
tags: new Dictionary<string, ISet<string>>
{
{ "key2", new HashSet<string> { "value4", "value3" } },
{ "key1", new HashSet<string> { "value2", "value1" } },
},
properties: new Dictionary<string, string>
{
{ "key2", "value2" },
{ "key1", "value1" },
},
sensitive: new HashSet<string> { "sensitive2", "sensitive1" }
);
Assert.True(metadata1.Equals(metadata2));
Assert.True(metadata2.Equals(metadata1));
Assert.Equal(metadata1.GetHashCode(), metadata2.GetHashCode());
}
[Fact]
public void MetadataEqualsShouldBeFalseWhenTagsDiffer()
{
var metadata1 = CreateMetadata(
tags: new Dictionary<string, ISet<string>> { { "key", new HashSet<string> { "a", "b" } } });
var metadata2 = CreateMetadata(
tags: new Dictionary<string, ISet<string>> { { "key", new HashSet<string> { "a", "c" } } });
Assert.NotEqual(metadata1, metadata2);
Assert.NotEqual(metadata1.GetHashCode(), metadata2.GetHashCode());
}
[Fact]
public void MetadataEqualsShouldBeFalseWhenPropertiesDiffer()
{
var metadata1 = CreateMetadata(
properties: new Dictionary<string, string> { { "key", "value1" } });
var metadata2 = CreateMetadata(
properties: new Dictionary<string, string> { { "key", "value2" } });
Assert.NotEqual(metadata1, metadata2);
Assert.NotEqual(metadata1.GetHashCode(), metadata2.GetHashCode());
}
[Fact]
public void MetadataEqualsShouldBeFalseWhenSensitiveSetDiffers()
{
var metadata1 = CreateMetadata(
sensitive: new HashSet<string> { "secret1" });
var metadata2 = CreateMetadata(
sensitive: new HashSet<string> { "secret2" });
Assert.NotEqual(metadata1, metadata2);
Assert.NotEqual(metadata1.GetHashCode(), metadata2.GetHashCode());
}
[Fact]
public void MetadataEqualsShouldBeFalseWhenComparedToNull()
{
var metadata = CreateMetadata();
Assert.False(metadata.Equals(null));
}
[Fact]
public void MetadataEqualsShouldBeFalseWhenComparedToDifferentType()
{
var metadata = CreateMetadata();
// ReSharper disable once SuspiciousTypeConversion.Global
Assert.False(metadata.Equals("not metadata"));
}
[Fact]
public void MetadataEqualsShouldBeTrueWhenComparedToSelf()
{
var metadata = CreateMetadata();
Assert.True(metadata.Equals(metadata));
}
private static Metadata CreateMetadata(
Dictionary<string, ISet<string>> tags = null,
Dictionary<string, string> properties = null,
HashSet<string> sensitive = null)
{
return new Metadata(
tags ?? new Dictionary<string, ISet<string>>(),
properties ?? new Dictionary<string, string>(),
sensitive ?? new HashSet<string>()
);
}
}