-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathlongpolling_submission_test.exs
88 lines (67 loc) · 2.69 KB
/
longpolling_submission_test.exs
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
defmodule RigInboundGateway.LongpollingSubmissionTest do
@moduledoc """
Assures that RIG doesn't change events.
"""
# Cannot be async because the extractor configuration is modified:
use ExUnit.Case, async: false
alias HTTPoison
alias Jason
alias RigCloudEvents.CloudEvent
alias RigInboundGateway.ExtractorConfig
alias LongpollingClient
@hostname "localhost"
@eventhub_port Confex.fetch_env!(:rig, RigInboundGatewayWeb.Endpoint)[:http][:port]
def setup do
on_exit(&ExtractorConfig.restore/0)
end
defp update_subscriptions(connection_id, subscriptions, jwt \\ nil) do
url =
"http://#{@hostname}:#{@eventhub_port}/_rig/v1/connection/longpolling/#{connection_id}/subscriptions"
body = Jason.encode!(%{"subscriptions" => subscriptions})
headers =
[{"content-type", "application/json"}] ++
if is_nil(jwt), do: [], else: [{"authorization", "Bearer #{jwt}"}]
%HTTPoison.Response{status_code: 204} = HTTPoison.put!(url, body, headers)
:ok
end
defp submit_event(%CloudEvent{json: json}) do
url = "http://#{@hostname}:#{@eventhub_port}/_rig/v1/events"
%HTTPoison.Response{status_code: 202} =
HTTPoison.post!(url, json, [{"content-type", "application/json"}])
:ok
end
defp connection_id(welcome_event)
defp connection_id(%{"data" => %{"connection_token" => connection_id}}), do: connection_id
test "An event's top-level properties are retained also when not related to any CloudEvents spec." do
ExtractorConfig.set(%{})
{:ok, cookies} = LongpollingClient.connect()
{:ok, events, cookies} = LongpollingClient.read_events(cookies)
welcome_event = Enum.at(events, 0)
# Subscribe to greeting events:
:ok = connection_id(welcome_event) |> update_subscriptions([%{"eventType" => "greeting"}])
{:ok, _events, cookies} = LongpollingClient.read_events(cookies)
# CloudEvents with extra top-level attributes not mentioned in any spec:
event_0_1 =
CloudEvent.parse!(%{
"additional top-level property" => true,
"cloudEventsVersion" => "0.1",
"eventType" => "greeting",
"source" => Atom.to_string(__MODULE__),
"eventID" => "1"
})
event_0_2 =
CloudEvent.parse!(%{
"additional top-level property" => true,
"specversion" => "0.2",
"type" => "greeting",
"source" => Atom.to_string(__MODULE__),
"id" => "2"
})
for event <- [event_0_1, event_0_2] do
:ok = submit_event(event)
# The received event still has that additional property:
{:ok, events, _cookies} = LongpollingClient.read_events(cookies)
assert %{"additional top-level property" => true} = Enum.at(events, 0)
end
end
end