Skip to content

Commit 0c39973

Browse files
Merge pull request #148 from matteobortolazzo/dev
Fix tests
2 parents 8c09f3b + d70cd83 commit 0c39973

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/CouchDB.Driver/Types/CouchDocument.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected CouchDocument()
4646

4747
// This must be for serialization only field
4848
[DataMember]
49-
[JsonProperty("_attachments")]
49+
[JsonProperty("_attachments", NullValueHandling = NullValueHandling.Ignore)]
5050
private Dictionary<string, CouchAttachment> AttachmentsParsed { get; set; }
5151

5252
[JsonIgnore]

tests/CouchDB.Driver.UnitTests/CouchDbContext_Tests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ await context.OtherRebels.AddAsync(new OtherRebel
106106
var result = await context.OtherRebels.ToListAsync();
107107
Assert.NotEmpty(result);
108108
Assert.Equal("Luke", result[0].Name);
109-
Assert.Equal(@"{""_conflicts"":[],""name"":""Leia"",""age"":0,""split_discriminator"":""SimpleRebel""}", httpTest.CallLog[0].RequestBody);
110-
Assert.Equal(@"{""_conflicts"":[],""rebel_bith_date"":""0001-01-01T00:00:00"",""name"":""Luke"",""age"":0,""isJedi"":false,""species"":0,""guid"":""00000000-0000-0000-0000-000000000000"",""split_discriminator"":""OtherRebel""}", httpTest.CallLog[1].RequestBody);
109+
Assert.Equal(@"{""_conflicts"":[],""name"":""Leia"",""age"":0,""split_discriminator"":""SimpleRebel"",""_attachments"":{}}", httpTest.CallLog[0].RequestBody);
110+
Assert.Equal(@"{""_conflicts"":[],""rebel_bith_date"":""0001-01-01T00:00:00"",""name"":""Luke"",""age"":0,""isJedi"":false,""species"":0,""guid"":""00000000-0000-0000-0000-000000000000"",""split_discriminator"":""OtherRebel"",""_attachments"":{}}", httpTest.CallLog[1].RequestBody);
111111
Assert.Equal(@"{""selector"":{""split_discriminator"":""OtherRebel""}}", httpTest.CallLog[2].RequestBody);
112112
}
113113

tests/CouchDB.Driver.UnitTests/Settings_Tests.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public async Task PropertyNullValueHandling_NotSet()
206206

207207
var call = httpTest.CallLog.First();
208208
Assert.NotNull(call);
209-
Assert.Equal(@"{""_conflicts"":[],""age"":0,""isJedi"":false,""species"":0,""guid"":""00000000-0000-0000-0000-000000000000""}", call.RequestBody);
209+
Assert.Equal(@"{""_conflicts"":[],""age"":0,""isJedi"":false,""species"":0,""guid"":""00000000-0000-0000-0000-000000000000"",""_attachments"":{}}", call.RequestBody);
210210
}
211211

212212
[Fact]
@@ -222,7 +222,7 @@ public async Task PropertyNullValueHandling_Includes()
222222

223223
var call = httpTest.CallLog.First();
224224
Assert.NotNull(call);
225-
Assert.Equal(@"{""_conflicts"":[],""name"":null,""surname"":null,""age"":0,""isJedi"":false,""species"":0,""guid"":""00000000-0000-0000-0000-000000000000"",""skills"":null,""battles"":null,""vehicle"":null}", call.RequestBody);
225+
Assert.Equal(@"{""_conflicts"":[],""name"":null,""surname"":null,""age"":0,""isJedi"":false,""species"":0,""guid"":""00000000-0000-0000-0000-000000000000"",""skills"":null,""battles"":null,""vehicle"":null,""_attachments"":{}}", call.RequestBody);
226226
}
227227

228228
[Fact]
@@ -238,7 +238,7 @@ public async Task PropertyNullValueHandling_Ignore()
238238

239239
var call = httpTest.CallLog.First();
240240
Assert.NotNull(call);
241-
Assert.Equal(@"{""_conflicts"":[],""age"":0,""isJedi"":false,""species"":0,""guid"":""00000000-0000-0000-0000-000000000000""}", call.RequestBody);
241+
Assert.Equal(@"{""_conflicts"":[],""age"":0,""isJedi"":false,""species"":0,""guid"":""00000000-0000-0000-0000-000000000000"",""_attachments"":{}}", call.RequestBody);
242242
}
243243

244244
#endregion

0 commit comments

Comments
 (0)