Add support to the ManualEventAgent for Liquid formatting and multiple Events

Andrew Cantino 9 years ago
parent
commit
3b176912a3

+ 4 - 1
app/models/agents/manual_event_agent.rb

@@ -18,7 +18,10 @@ module Agents
18 18
 
19 19
     def handle_details_post(params)
20 20
       if params['payload']
21
-        create_event(:payload => params['payload'])
21
+        json = interpolate_options(JSON.parse(params['payload']))
22
+        [json['payloads'] || json].flatten.each do |payload|
23
+          create_event(:payload => payload)
24
+        end
22 25
         { :success => true }
23 26
       else
24 27
         { :success => false, :error => "You must provide a JSON payload" }

+ 13 - 2
app/views/agents/agent_views/manual_event_agent/_show.html.erb

@@ -1,4 +1,15 @@
1
-<h3>Manually Create Events</h3>
1
+<p>
2
+  Use this form to manually emit Events from this Agent (usually for testing).
3
+</p>
4
+
5
+<p>
6
+  If you add a top-level key called <code>payloads</code> that points to an array of objects, they will be emitted as a series
7
+  of Events.  Otherwise, everything entered will be emitted as a single Event.
8
+</p>
9
+
10
+<p>
11
+  Liquid formatting is supported.
12
+</p>
2 13
 
3 14
 <h4 id='event-creation-status'></h4>
4 15
 
@@ -22,7 +33,7 @@
22 33
       $.ajax({
23 34
         url: $form.attr('action'),
24 35
         method: "post",
25
-        data: { payload: JSON.parse($form.find("textarea").val()) },
36
+        data: { payload: $form.find("textarea").val() },
26 37
         dataType: "JSON",
27 38
         success: function(json) {
28 39
           if (json.success) {

+ 43 - 0
spec/models/agents/manual_event_agent_spec.rb

@@ -0,0 +1,43 @@
1
+require 'rails_helper'
2
+
3
+describe Agents::ManualEventAgent do
4
+  before do
5
+    @checker = Agents::ManualEventAgent.new(name: "My Manual Event Agent")
6
+    @checker.user = users(:jane)
7
+    @checker.save!
8
+  end
9
+
10
+  describe "#handle_details_post" do
11
+    it "emits an event with the given payload" do
12
+      expect {
13
+        json = { 'foo' => "bar" }.to_json
14
+        expect(@checker.handle_details_post({ 'payload' => json })).to eq({ success: true })
15
+      }.to change { @checker.events.count }.by(1)
16
+      expect(@checker.events.last.payload).to eq({ 'foo' => 'bar' })
17
+    end
18
+
19
+    it "emits multiple events when given a magic 'payloads' key" do
20
+      expect {
21
+        json = { 'payloads' => [{ 'key' => 'value1' }, { 'key' => 'value2' }] }.to_json
22
+        expect(@checker.handle_details_post({ 'payload' => json })).to eq({ success: true })
23
+      }.to change { @checker.events.count }.by(2)
24
+      events = @checker.events.order('id desc')
25
+      expect(events[0].payload).to eq({ 'key' => 'value2' })
26
+      expect(events[1].payload).to eq({ 'key' => 'value1' })
27
+    end
28
+
29
+    it "supports Liquid formatting" do
30
+      expect {
31
+        json = { 'key' => "{{ 'now' | date: '%Y' }}", 'nested' => { 'lowercase' => "{{ 'uppercase' | upcase }}" } }.to_json
32
+        expect(@checker.handle_details_post({ 'payload' => json })).to eq({ success: true })
33
+      }.to change { @checker.events.count }.by(1)
34
+      expect(@checker.events.last.payload).to eq({ 'key' => Time.now.year.to_s, 'nested' => { 'lowercase' => 'UPPERCASE' } })
35
+    end
36
+
37
+    it "errors when not given a JSON payload" do
38
+      expect {
39
+        expect(@checker.handle_details_post({ 'foo' =>'bar' })).to eq({ success: false, error: "You must provide a JSON payload" })
40
+      }.not_to change { @checker.events.count }
41
+    end
42
+  end
43
+end