mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
cbe18eb0df
Set Discourse-Track-View to either "0" or "false" to exclude request
63 lines
1.7 KiB
Ruby
63 lines
1.7 KiB
Ruby
require "spec_helper"
|
|
require_dependency "middleware/request_tracker"
|
|
|
|
describe Middleware::RequestTracker do
|
|
|
|
def env(opts={})
|
|
{
|
|
"HTTP_HOST" => "http://test.com",
|
|
"REQUEST_URI" => "/path?bla=1",
|
|
"REQUEST_METHOD" => "GET",
|
|
"rack.input" => ""
|
|
}.merge(opts)
|
|
end
|
|
|
|
context "log_request" do
|
|
before do
|
|
freeze_time Time.now
|
|
ApplicationRequest.clear_cache!
|
|
end
|
|
|
|
def log_tracked_view(val)
|
|
data = Middleware::RequestTracker.get_data(env(
|
|
"HTTP_DISCOURSE_TRACK_VIEW" => val
|
|
), ["200",{"Content-Type" => 'text/html'}])
|
|
|
|
Middleware::RequestTracker.log_request(data)
|
|
end
|
|
|
|
it "can exclude/include based on custom header" do
|
|
log_tracked_view("true")
|
|
log_tracked_view("1")
|
|
log_tracked_view("false")
|
|
log_tracked_view("0")
|
|
ApplicationRequest.write_cache!
|
|
|
|
ApplicationRequest.page_view_anon.first.count.should == 2
|
|
end
|
|
|
|
it "can log requests correctly" do
|
|
|
|
data = Middleware::RequestTracker.get_data(env(
|
|
"HTTP_USER_AGENT" => "AdsBot-Google (+http://www.google.com/adsbot.html)"
|
|
), ["200",{"Content-Type" => 'text/html'}])
|
|
|
|
Middleware::RequestTracker.log_request(data)
|
|
|
|
data = Middleware::RequestTracker.get_data(env(
|
|
"HTTP_DISCOURSE_TRACK_VIEW" => "1"
|
|
), ["200",{}])
|
|
|
|
Middleware::RequestTracker.log_request(data)
|
|
|
|
ApplicationRequest.write_cache!
|
|
|
|
ApplicationRequest.http_total.first.count.should == 2
|
|
ApplicationRequest.http_2xx.first.count.should == 2
|
|
|
|
ApplicationRequest.page_view_anon.first.count.should == 1
|
|
ApplicationRequest.page_view_crawler.first.count.should == 1
|
|
end
|
|
end
|
|
end
|