-
Notifications
You must be signed in to change notification settings - Fork 2
/
SerializationTests.cs
84 lines (75 loc) · 2.99 KB
/
SerializationTests.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
using Microsoft.VisualStudio.TestTools.UnitTesting;
using DSM.Metadata.States;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace DSM.Tests
{
[TestClass]
public partial class SerializationActionTests : TestBase
{
[TestMethod]
[TestScaffold]
public async Task JsonSerialization(ScaffoldFactoryDelegate factory, string _)
{
var json = @"{
'id': 'test',
'states': [
{
'id': 'loop',
'type': 'atomic',
'onentry': {
'actions': [
{
'type': 'foreach',
'currentitemlocation': 'arrayItem',
'valueexpression': 'items',
'actions': [
{
'type': 'assign',
'target': 'sum',
'valueexpression': 'sum + arrayItem'
},
{
'type': 'log',
'messageexpression': '""item = "" + arrayItem'
}
]
}
]
},
'transitions': [
{
'conditionexpression': 'sum >= 15',
'target': 'done'
}
]
},
{
'id': 'done',
'type': 'final',
'onentry': {
'actions': [
{
'type': 'log',
'messageexpression': '""item = "" + arrayItem'
}
]
}
}
]
}";
var machine = StateMachine<Dictionary<string, object>>.FromJson(json);
Assert.IsNotNull(machine);
var data = new Dictionary<string, object>
{
{ "items", new [] { 1, 2, 3, 4, 5 } },
{ "sum", 0 }
};
var tuple = factory(machine, null, null);
var context = tuple.Item1;
await context.RunAsync(data);
var sum = (int) data["sum"];
Assert.IsTrue(sum >= 15);
}
}
}