2011-02-04 04:13:41 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Impression do
|
2011-02-13 19:18:34 +00:00
|
|
|
fixtures :articles,:impressions,:posts
|
2011-02-04 04:13:41 +00:00
|
|
|
|
|
|
|
before(:each) do
|
|
|
|
@article = Article.find(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should save a blank impression for an Article that has 10 impressions" do
|
|
|
|
@article.impressions.create
|
2011-02-17 14:53:01 +00:00
|
|
|
@article.impressions.size.should eq 12
|
2011-02-04 04:13:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should save an impression with a message" do
|
2011-02-13 19:18:34 +00:00
|
|
|
@article.impressions.create(:message=>"test message")
|
2011-02-04 04:13:41 +00:00
|
|
|
@article.impressions.last.message.should eq "test message"
|
|
|
|
end
|
|
|
|
|
2011-02-17 14:53:01 +00:00
|
|
|
it "should return the impression count with no date range specified" do
|
|
|
|
@article.impression_count.should eq 11
|
2011-02-04 04:13:41 +00:00
|
|
|
end
|
|
|
|
|
2011-02-17 14:53:01 +00:00
|
|
|
it "should return unique impression count with no date range specified" do
|
|
|
|
@article.unique_impression_count.should eq 9
|
2011-02-04 04:13:41 +00:00
|
|
|
end
|
|
|
|
|
2011-02-17 14:53:01 +00:00
|
|
|
it "should return impression count with only start date specified" do
|
2011-02-04 04:13:41 +00:00
|
|
|
@article.impression_count("2011-01-01").should eq 8
|
|
|
|
end
|
|
|
|
|
2011-02-17 14:53:01 +00:00
|
|
|
it "should return impression count with whole date range specified" do
|
2011-02-04 04:13:41 +00:00
|
|
|
@article.impression_count("2011-01-01","2011-01-02").should eq 7
|
|
|
|
end
|
|
|
|
|
2011-02-17 14:53:01 +00:00
|
|
|
it "should return unique impression count with only start date specified" do
|
2011-02-04 04:13:41 +00:00
|
|
|
@article.unique_impression_count("2011-01-01").should eq 7
|
|
|
|
end
|
|
|
|
|
2011-02-17 14:53:01 +00:00
|
|
|
it "should return unique impression count with date range specified" do
|
2011-02-04 04:13:41 +00:00
|
|
|
@article.unique_impression_count("2011-01-01","2011-01-02").should eq 7
|
|
|
|
end
|
2011-02-17 14:53:01 +00:00
|
|
|
|
|
|
|
it "should return unique impression count using ip address (which in turn eliminates duplicate request_hashes)" do
|
|
|
|
@article.unique_impression_count_ip.should eq 8
|
|
|
|
end
|
2011-02-04 04:13:41 +00:00
|
|
|
end
|