summaryrefslogtreecommitdiff
path: root/src/tests/efl_mono/EoPromises.cs
blob: 0c7c2e95e8b39211eede93b9fcd4891ebe3f1993 (plain)
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
using System;
using System.Threading.Tasks;
using System.Threading;

namespace TestSuite
{

class TestEoPromises
{
    public static void test_simple_task_run()
    {
        efl.ILoop loop = efl.App.GetLoopMain();
        eina.Future future = loop.Idle();

        bool callbackCalled = false;
        int ret_code = 1992;

        future.Then((eina.Value value) => {
            callbackCalled = true;
            eina.Value v = new eina.Value(eina.ValueType.Int32);
            v.Set(ret_code);
            loop.Quit(v);
            return value;
        });
        eina.Value ret_value = loop.Begin();

        Test.Assert(callbackCalled, "Future loop callback must have been called.");

        Test.AssertEquals(ret_value.GetValueType(), eina.ValueType.Int32);

        int ret_from_value;
        Test.Assert(ret_value.Get(out ret_from_value));
        Test.AssertEquals(ret_from_value, ret_code);

    }

    public static void test_object_promise()
    {
        efl.ILoop loop = efl.App.GetLoopMain();
        test.Testing obj = new test.Testing();

        eina.Future future = obj.GetFuture();

        bool callbackCalled = false;
        int receivedValue = -1;
        int sentValue = 1984;
        future.Then((eina.Value value) => {
            callbackCalled = true;
            Test.AssertEquals(value.GetValueType(), eina.ValueType.Int32);
            value.Get(out receivedValue);

            return value;
        });

        obj.FulfillPromise(sentValue);

        loop.Iterate();
        Test.Assert(callbackCalled, "Future callback must have been called.");
        Test.AssertEquals(receivedValue, sentValue);
    }

    public static void test_object_promise_cancel()
    {
        efl.ILoop loop = efl.App.GetLoopMain();
        test.Testing obj = new test.Testing();

        eina.Future future = obj.GetFuture();

        bool callbackCalled = false;
        eina.Error receivedError = -1;
        eina.Error sentError = 120;
        future.Then((eina.Value value) => {
            callbackCalled = true;
            Test.AssertEquals(value.GetValueType(), eina.ValueType.Error);
            value.Get(out receivedError);

            return value;
        });

        obj.RejectPromise(sentError);

        loop.Iterate();
        Test.Assert(callbackCalled, "Future callback must have been called.");
        Test.AssertEquals(receivedError, sentError);
    }

}

class LoopConsumer
{
    public static async Task Consume(efl.ILoop loop)
    {
        Task<eina.Value> task = loop.IdleAsync();
        eina.Value v = await task;
        loop.Quit(v);
    }
}

class TestLoopEoAsyncMethods
{
    public static void test_simple_async()
    {
        efl.ILoop loop = efl.App.GetLoopMain();
        Task t = LoopConsumer.Consume(loop);

        loop.Begin();
        Test.Assert(t.Wait(1000), "Task should have been completed in time.");
    }
}

class TestEoAsyncMethods
{

    public static void test_async_fulfill()
    {
        efl.ILoop loop = efl.App.GetLoopMain();
        test.ITesting obj = new test.Testing();

        Task<eina.Value> task = obj.GetFutureAsync();

        int sentValue = 1337;

        obj.FulfillPromise(sentValue);
        loop.Iterate();

        eina.Value v = task.Result;
        Test.AssertEquals(v.GetValueType(), eina.ValueType.Int32);

        int receivedValue;
        v.Get(out receivedValue);
        Test.AssertEquals(receivedValue, sentValue);
    }

    public static void test_async_cancel()
    {
        efl.ILoop loop = efl.App.GetLoopMain();
        test.ITesting obj = new test.Testing();

        CancellationTokenSource cancelSrc = new CancellationTokenSource();
        Task<eina.Value> task = obj.GetFutureAsync(cancelSrc.Token);

        cancelSrc.Cancel();
        loop.Iterate();

        bool raised = false;
        try
        {
            eina.Value v = task.Result;
        }
        catch (AggregateException ae)
        {
            raised = true;
            ae.Handle((x) =>
            {
                Test.Assert(x is TaskCanceledException, "AggregateException must have been TaskCanceledException");
                return true;
            });
        }

        Test.Assert(raised, "AggregateException must have been raised.");
    }

    public static void test_async_reject()
    {
        efl.ILoop loop = efl.App.GetLoopMain();
        test.ITesting obj = new test.Testing();

        Task<eina.Value> task = obj.GetFutureAsync();

        eina.Error sentError = 1337;
        obj.RejectPromise(sentError);

        loop.Iterate();

        bool raised = false;
        try
        {
            eina.Value v = task.Result;
        }
        catch (AggregateException ae)
        {
            raised = true;
            ae.Handle((x) =>
            {
                Test.Assert(x is efl.FutureException, "AggregateException must have been TaskCanceledException");
                efl.FutureException ex = x as efl.FutureException;
                Test.AssertEquals(ex.Error, sentError);
                return true;
            });
        }

        Test.Assert(raised, "AggregateException must have been raised.");
    }
}
}