require 'test_helper' module Garb module Management class WebPropertyTest < MiniTest::Unit::TestCase context "the WebProperty class" do should "turn entries for path into array of web properties" do feed = stub(:entries => ["entry1"]) Feed.stubs(:new).returns(feed) WebProperty.stubs(:new_from_entry) WebProperty.all assert_received(Feed, :new) {|e| e.with(Session, '/accounts/~all/webproperties')} assert_received(feed, :entries) assert_received(WebProperty, :new_from_entry) {|e| e.with("entry1", Session)} end should "find all web properties for a given account" do WebProperty.stubs(:all) WebProperty.for_account(stub(:session => Session, :path => '/accounts/123456')) assert_received(WebProperty, :all) do |e| e.with(Session, '/accounts/123456/webproperties') end end end context "a WebProperty" do setup do entry = { "link" => [{"rel" => "self", "href" => Feed::BASE_URL+"/accounts/1189765/webproperties/UA-1189765-1"}], "dxp:property" => [ {"name" => "ga:accountId", "value" => "1189765"}, {"name" => "ga:webPropertyId", "value" => 'UA-1189765-1'} ] } @web_property = WebProperty.new_from_entry(entry, Session) end should "have an id" do assert_equal "UA-1189765-1", @web_property.id end should "have an account_id" do assert_equal "1189765", @web_property.account_id end should "have profiles" do Profile.stubs(:for_web_property) @web_property.profiles assert_received(Profile, :for_web_property) {|e| e.with(@web_property)} end end end end end