-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathWebSocketTests.cs
141 lines (120 loc) · 3.6 KB
/
WebSocketTests.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
134
135
136
137
138
139
140
141
using System;
using System.Diagnostics;
using System.Threading.Tasks;
using Coinbase.Pro.WebSockets;
using Coinbase.Pro.Models;
using Newtonsoft.Json.Linq;
using NUnit.Framework;
namespace Coinbase.Tests.IntegrationTests
{
[Explicit]
public class WebSocketTests : IntegrationTests
{
private CoinbaseProWebSocket socket;
[SetUp]
public void BeforeEachTest()
{
socket = new CoinbaseProWebSocket(new WebSocketConfig
{
UseTimeApi = true,
ApiKey = this.secrets.ApiKey,
Secret = this.secrets.ApiSecret,
Passphrase = this.secrets.ApiPassphrase,
SocketUri = "wss://ws-feed-public.sandbox.pro.coinbase.com"
});
}
[Test]
public async Task connect()
{
var result = await socket.ConnectAsync();
if( !result.Success )
{
throw new Exception("Connection error.");
}
//https://docs.pro.coinbase.com/?r=1#protocol-overview
// Request
// Subscribe to ETH-USD and ETH-EUR with the level2, heartbeat and ticker channels,
// plus receive the ticker entries for ETH-BTC and ETH-USD
var sub = new Subscription
{
ProductIds =
{
"BTC-USD",
"ETH-USD"
},
Channels =
{
"level2",
"heartbeat",
JObject.FromObject(
new Channel
{
Name = "ticker",
ProductIds = {"ETH-BTC", "ETH-USD"}
})
}
};
await socket.SubscribeAsync(sub);
socket.RawSocket.MessageReceived += RawSocket_MessageReceived;
await Task.Delay(TimeSpan.FromMinutes(1));
}
private void RawSocket_MessageReceived(object sender, WebSocket4Net.MessageReceivedEventArgs e)
{
Console.WriteLine(e.Message);
Debug.WriteLine(e.Message);
if( WebSocketHelper.TryParse(e.Message, out var msg) )
{
if( msg is HeartbeatEvent hbe )
{
hbe.Dump();
}
}
}
[Test]
public async Task connect_simple()
{
var result = await socket.ConnectAsync();
if( !result.Success )
{
throw new Exception("Connect error.");
}
var sub = new Subscription
{
ProductIds =
{
"ETH-USD",
},
Channels =
{
"heartbeat",
}
};
await socket.SubscribeAsync(sub);
socket.RawSocket.MessageReceived += RawSocket_MessageReceived;
await Task.Delay(TimeSpan.FromMinutes(1));
}
[Test]
public async Task subscribe_with_error()
{
var result = await socket.ConnectAsync();
if (!result.Success)
{
throw new Exception("Connect error.");
}
socket.RawSocket.MessageReceived += RawSocket_MessageReceived;
var sub = new Subscription
{
ProductIds =
{
"ZZZ-YYY",
},
Channels =
{
"heartbeat",
}
};
await socket.SubscribeAsync(sub);
await Task.Delay(TimeSpan.FromMinutes(1));
}
}
}