12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- # encoding: utf-8
- require 'spec_helper'
- describe AgentsExporter do
- describe "#as_json" do
- let(:name) { "My set of Agents" }
- let(:description) { "These Agents work together nicely!" }
- let(:guid) { "some-guid" }
- let(:tag_fg_color) { "#ffffff" }
- let(:tag_bg_color) { "#000000" }
- let(:source_url) { "http://yourhuginn.com/scenarios/2/export.json" }
- let(:agent_list) { [agents(:jane_weather_agent), agents(:jane_rain_notifier_agent)] }
- let(:exporter) { AgentsExporter.new(
- :agents => agent_list, :name => name, :description => description, :source_url => source_url,
- :guid => guid, :tag_fg_color => tag_fg_color, :tag_bg_color => tag_bg_color) }
- it "outputs a structure containing name, description, the date, all agents & their links" do
- data = exporter.as_json
- expect(data[:name]).to eq(name)
- expect(data[:description]).to eq(description)
- expect(data[:source_url]).to eq(source_url)
- expect(data[:guid]).to eq(guid)
- expect(data[:tag_fg_color]).to eq(tag_fg_color)
- expect(data[:tag_bg_color]).to eq(tag_bg_color)
- expect(Time.parse(data[:exported_at])).to be_within(2).of(Time.now.utc)
- expect(data[:links]).to eq([{ :source => 0, :receiver => 1 }])
- expect(data[:agents]).to eq(agent_list.map { |agent| exporter.agent_as_json(agent) })
- expect(data[:agents].all? { |agent_json| agent_json[:guid].present? && agent_json[:type].present? && agent_json[:name].present? }).to be_truthy
- expect(data[:agents][0]).not_to have_key(:propagate_immediately) # can't receive events
- expect(data[:agents][1]).not_to have_key(:schedule) # can't be scheduled
- end
- it "does not output links to other agents outside of the incoming set" do
- Link.create!(:source_id => agents(:jane_weather_agent).id, :receiver_id => agents(:jane_website_agent).id)
- Link.create!(:source_id => agents(:jane_website_agent).id, :receiver_id => agents(:jane_rain_notifier_agent).id)
- expect(exporter.as_json[:links]).to eq([{ :source => 0, :receiver => 1 }])
- end
- end
- describe "#filename" do
- it "strips special characters" do
- expect(AgentsExporter.new(:name => "ƏfooƐƕƺbar").filename).to eq("foo-bar.json")
- end
- it "strips punctuation" do
- expect(AgentsExporter.new(:name => "foo,bar").filename).to eq("foo-bar.json")
- end
- it "strips leading and trailing dashes" do
- expect(AgentsExporter.new(:name => ",foo,").filename).to eq("foo.json")
- end
- it "has a default when options[:name] is nil" do
- expect(AgentsExporter.new(:name => nil).filename).to eq("exported-agents.json")
- end
- it "has a default when the result is empty" do
- expect(AgentsExporter.new(:name => "").filename).to eq("exported-agents.json")
- expect(AgentsExporter.new(:name => "Ə").filename).to eq("exported-agents.json")
- expect(AgentsExporter.new(:name => "-").filename).to eq("exported-agents.json")
- expect(AgentsExporter.new(:name => ",,").filename).to eq("exported-agents.json")
- end
- end
- end
|