2015-04-01 18:23:27 +02:00
import ClickTrack from "discourse/lib/click-track";
2014-07-30 18:56:01 -04:00
var windowOpen,
win,
redirectTo;
2015-08-07 15:08:27 -04:00
module("lib:click-track", {
2013-06-19 15:06:23 -04:00
setup: function() {
// Prevent any of these tests from navigating away
2014-07-30 18:56:01 -04:00
win = {focus: function() { } };
redirectTo = sandbox.stub(Discourse.URL, "redirectTo");
sandbox.stub(Discourse, "ajax");
windowOpen = sandbox.stub(window, "open").returns(win);
sandbox.stub(win, "focus");
2013-06-19 15:06:23 -04:00
2013-11-08 20:30:20 +01:00
fixture().html([
2013-06-19 15:06:23 -04:00
'<div id="topic" id="1337">',
' <article data-post-id="42" data-user-id="3141">',
' <a href="http://www.google.com">google.com</a>',
' <a class="lightbox back quote-other-topic" href="http://www.google.com">google.com</a>',
' <a id="with-badge" data-user-id="314" href="http://www.google.com">google.com<span class="badge">1</span></a>',
' <a id="with-badge-but-not-mine" href="http://www.google.com">google.com<span class="badge">1</span></a>',
' <div class="onebox-result">',
' <a id="inside-onebox" href="http://www.google.com">google.com<span class="badge">1</span></a>',
' <a id="inside-onebox-forced" class="track-link" href="http://www.google.com">google.com<span class="badge">1</span></a>',
' </div>',
' <a id="same-site" href="http://discuss.domain.com">forum</a>',
2013-07-10 22:59:16 +02:00
' <a class="attachment" href="http://discuss.domain.com/uploads/default/1234/1532357280.txt">log.txt</a>',
2013-06-19 15:06:23 -04:00
' </article>',
'</div>'].join("\n"));
}
});
2015-04-01 18:23:27 +02:00
var track = ClickTrack.trackClick;
2013-06-19 15:06:23 -04:00
2013-06-21 14:06:20 -04:00
// test
2013-06-19 15:06:23 -04:00
var generateClickEventOn = function(selector) {
2013-11-08 20:30:20 +01:00
return $.Event("click", { currentTarget: fixture(selector)[0] });
2013-06-21 14:06:20 -04:00
};
2013-06-19 15:06:23 -04:00
test("does not track clicks on lightboxes", function() {
var clickEvent = generateClickEventOn('.lightbox');
2014-07-30 18:56:01 -04:00
sandbox.stub(clickEvent, "preventDefault");
2013-06-19 15:06:23 -04:00
ok(track(clickEvent));
ok(!clickEvent.preventDefault.calledOnce);
});
test("it calls preventDefault when clicking on an a", function() {
var clickEvent = generateClickEventOn('a');
2014-07-30 18:56:01 -04:00
sandbox.stub(clickEvent, "preventDefault");
2013-06-19 15:06:23 -04:00
track(clickEvent);
ok(clickEvent.preventDefault.calledOnce);
ok(Discourse.URL.redirectTo.calledOnce);
});
test("does not track clicks on back buttons", function() {
2013-06-21 14:06:20 -04:00
ok(track(generateClickEventOn('.back')));
2013-06-19 15:06:23 -04:00
});
test("does not track clicks on quote buttons", function() {
2013-06-21 14:06:20 -04:00
ok(track(generateClickEventOn('.quote-other-topic')));
2013-06-19 15:06:23 -04:00
});
test("removes the href and put it as a data attribute", function() {
track(generateClickEventOn('a'));
2013-11-08 20:30:20 +01:00
var $link = fixture('a').first();
2013-06-19 15:06:23 -04:00
ok($link.hasClass('no-href'));
equal($link.data('href'), 'http://www.google.com');
blank($link.attr('href'));
ok($link.data('auto-route'));
ok(Discourse.URL.redirectTo.calledOnce);
});
2015-02-09 17:49:59 +01:00
asyncTest("restores the href after a while", function() {
expect(1);
track(generateClickEventOn('a'));
setTimeout(function() {
start();
equal(fixture('a').attr('href'), "http://www.google.com");
}, 75);
});
2013-06-19 15:06:23 -04:00
var badgeClickCount = function(id, expected) {
track(generateClickEventOn('#' + id));
2013-11-08 20:30:20 +01:00
var $badge = $('span.badge', fixture('#' + id).first());
2013-06-19 15:06:23 -04:00
equal(parseInt($badge.html(), 10), expected);
};
test("does not update badge clicks on my own link", function() {
2014-07-30 18:56:01 -04:00
sandbox.stub(Discourse.User, 'currentProp').withArgs('id').returns(314);
2013-06-19 15:06:23 -04:00
badgeClickCount('with-badge', 1);
});
test("does not update badge clicks in my own post", function() {
2014-07-30 18:56:01 -04:00
sandbox.stub(Discourse.User, 'currentProp').withArgs('id').returns(3141);
2013-06-19 15:06:23 -04:00
badgeClickCount('with-badge-but-not-mine', 1);
});
test("updates badge counts correctly", function() {
badgeClickCount('inside-onebox', 1);
badgeClickCount('inside-onebox-forced', 2);
badgeClickCount('with-badge', 2);
});
var trackRightClick = function() {
2013-06-21 14:06:20 -04:00
var clickEvent = generateClickEventOn('a');
2013-06-19 15:06:23 -04:00
clickEvent.which = 3;
return track(clickEvent);
};
test("right clicks change the href", function() {
ok(trackRightClick());
2013-11-08 20:30:20 +01:00
equal(fixture('a').first().prop('href'), "http://www.google.com/");
2013-06-19 15:06:23 -04:00
});
test("right clicks are tracked", function() {
Discourse.SiteSettings.track_external_right_clicks = true;
trackRightClick();
2013-11-08 20:30:20 +01:00
equal(fixture('a').first().attr('href'), "/clicks/track?url=http%3A%2F%2Fwww.google.com&post_id=42");
2013-06-19 15:06:23 -04:00
});
2014-03-13 11:03:19 +05:30
test("preventDefault is not called for right clicks", function() {
var clickEvent = generateClickEventOn('a');
clickEvent.which = 3;
2014-07-30 18:56:01 -04:00
sandbox.stub(clickEvent, "preventDefault");
2014-03-13 11:03:19 +05:30
ok(track(clickEvent));
ok(!clickEvent.preventDefault.calledOnce);
});
2013-06-19 15:06:23 -04:00
2014-03-13 11:03:19 +05:30
var testOpenInANewTab = function(description, clickEventModifier) {
test(description, function() {
var clickEvent = generateClickEventOn('a');
clickEventModifier(clickEvent);
2014-07-30 18:56:01 -04:00
sandbox.stub(clickEvent, "preventDefault");
2014-03-13 11:03:19 +05:30
ok(track(clickEvent));
ok(Discourse.ajax.calledOnce);
ok(!clickEvent.preventDefault.calledOnce);
});
2013-06-19 15:06:23 -04:00
};
2014-03-13 11:03:19 +05:30
testOpenInANewTab("it opens in a new tab when pressing shift", function(clickEvent) {
2013-06-19 15:06:23 -04:00
clickEvent.shiftKey = true;
});
2014-03-13 11:03:19 +05:30
testOpenInANewTab("it opens in a new tab when pressing meta", function(clickEvent) {
2013-06-19 15:06:23 -04:00
clickEvent.metaKey = true;
});
2014-03-13 11:03:19 +05:30
testOpenInANewTab("it opens in a new tab when pressing ctrl", function(clickEvent) {
2013-06-19 15:06:23 -04:00
clickEvent.ctrlKey = true;
});
2014-03-13 11:03:19 +05:30
testOpenInANewTab("it opens in a new tab on middle click", function(clickEvent) {
2013-06-19 15:06:23 -04:00
clickEvent.which = 2;
});
test("tracks via AJAX if we're on the same site", function() {
2014-07-30 18:56:01 -04:00
sandbox.stub(Discourse.URL, "routeTo");
sandbox.stub(Discourse.URL, "origin").returns("http://discuss.domain.com");
2013-06-19 15:06:23 -04:00
ok(!track(generateClickEventOn('#same-site')));
ok(Discourse.ajax.calledOnce);
ok(Discourse.URL.routeTo.calledOnce);
});
2013-07-10 22:59:16 +02:00
test("does not track via AJAX for attachments", function() {
2014-07-30 18:56:01 -04:00
sandbox.stub(Discourse.URL, "routeTo");
sandbox.stub(Discourse.URL, "origin").returns("http://discuss.domain.com");
2013-07-10 22:59:16 +02:00
ok(!track(generateClickEventOn('.attachment')));
ok(Discourse.URL.redirectTo.calledOnce);
});
2013-06-19 15:06:23 -04:00
test("tracks custom urls when opening in another window", function() {
var clickEvent = generateClickEventOn('a');
2014-07-30 18:56:01 -04:00
sandbox.stub(Discourse.User, "currentProp").withArgs('external_links_in_new_tab').returns(true);
2013-06-19 15:06:23 -04:00
ok(!track(clickEvent));
2014-07-30 18:56:01 -04:00
ok(windowOpen.calledWith('/clicks/track?url=http%3A%2F%2Fwww.google.com&post_id=42', '_blank'));
2013-06-19 15:06:23 -04:00
});
test("tracks custom urls when opening in another window", function() {
var clickEvent = generateClickEventOn('a');
ok(!track(clickEvent));
2014-07-30 18:56:01 -04:00
ok(redirectTo.calledWith('/clicks/track?url=http%3A%2F%2Fwww.google.com&post_id=42'));
2013-06-19 15:06:23 -04:00
});