Sha256: 01586b6d1e016daf2ce274b03b7738e2b5ecc13e6f167f02ff3883c77158bd9e

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

require "spec_helper"

describe IrusAnalytics::IrusClient do
  let(:test_params) { { date_stamp: "2010-10-17T03:04:42Z", client_ip_address: "127.0.0.1", user_agent: "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405",
                   item_oai_identifier: "hull:123", file_url: "https://hydra.hull.ac.uk/assets/hull:123/content", http_referer: "https://www.google.co.uk/search?q=hydra+hull%3A123&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a&channel=sb&gfe_rd=cr",
                    source_repository: "hydra.hull.ac.uk"  } }
  describe ".perform" do
    it "takes the irus_server_address and analytics_params and calls IrusAnalyticsService.send_irus_analytics method" do
    # subject.class.perform("irus-server", test_params)
    end
  end
  
  # Required due to Resque returning stringyfield hash keys
  describe ".symbolize_keys" do
     it "takes a hash that uses string keys, and returns the hash with symbol keys" do
       test_hash = { "key_1" => "Value 1", "key_2" => "Value 2", "key_3" => "Value 3"  }
       new_hash = IrusAnalytics::IrusClient.symbolize_keys(test_hash)
       expect(new_hash).to include(key_1: "Value 1", key_2: "Value 2", key_3: "Value 3")
     end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
irus_analytics-0.0.2 spec/lib/irus_analytics/irus_client_spec.rb
irus_analytics-0.0.1 spec/lib/irus_analytics/irus_client_spec.rb