forked from ravendb/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAsger.cs
61 lines (58 loc) · 2.19 KB
/
Asger.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
using System.Transactions;
using Raven.Abstractions.Commands;
using Raven.Abstractions.Data;
using Raven.Json.Linq;
using Raven.Tests.Common;
using Xunit;
namespace Raven.Tests.MailingList
{
public class Asger : RavenTest
{
[Fact]
public void putting_and_patching_in_same_transaction()
{
using (var store = NewDocumentStore(requestedStorage: "esent"))
{
Assert.DoesNotThrow(() =>
{
using (var tx = new TransactionScope())
{
store.DatabaseCommands.Batch(new ICommandData[]
{
new PutCommandData
{
Key = "RebusSubscriptions/TheMessage",
Metadata = new RavenJObject
{
{
"Raven-Entity-Name",
"RebusSubscriptions"
},
},
Document = new RavenJObject
{
{"Endpoints", new RavenJArray()}
}
},
new PatchCommandData
{
Key = "RebusSubscriptions/TheMessage",
Patches = new[]
{
new PatchRequest
{
Type = PatchCommandType.Add,
Name = "Endpoints",
Value = new
RavenJValue("application_queue"),
}
}
}
});
tx.Complete();
}
});
}
}
}
}