mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:54:31 +08:00
180 lines
6.1 KiB
JavaScript
180 lines
6.1 KiB
JavaScript
import DiscourseURL from "discourse/lib/url";
|
|
import ClickTrack from "discourse/lib/click-track";
|
|
|
|
var windowOpen, win, redirectTo;
|
|
|
|
QUnit.module("lib:click-track-edit-history", {
|
|
beforeEach() {
|
|
// Prevent any of these tests from navigating away
|
|
win = { focus: function() {} };
|
|
redirectTo = sandbox.stub(DiscourseURL, "redirectTo");
|
|
windowOpen = sandbox.stub(window, "open").returns(win);
|
|
sandbox.stub(win, "focus");
|
|
|
|
fixture().html(
|
|
`<div id="topic" data-topic-id="1337">
|
|
</div>
|
|
<div id="revisions" data-post-id="42" class="">
|
|
<div class="row">
|
|
<div class="span8">
|
|
<a href="http://www.google.com">google.com</a>
|
|
<a class="lightbox back" href="http://www.google.com">google.com</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 class="no-track-link" href="http://www.google.com">google.com</a>
|
|
<a id="same-site" href="http://discuss.domain.com">forum</a>
|
|
<a class="attachment" href="http://discuss.domain.com/uploads/default/1234/1532357280.txt">log.txt</a>
|
|
<a class="hashtag" href="http://discuss.domain.com">#hashtag</a>
|
|
</div>
|
|
<div class="span8 offset1">
|
|
<a href="http://www.google.com">google.com</a>
|
|
<a class="lightbox back" href="http://www.google.com">google.com</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 class="no-track-link" href="http://www.google.com">google.com</a>
|
|
<a id="same-site" href="http://discuss.domain.com">forum</a>
|
|
<a class="attachment" href="http://discuss.domain.com/uploads/default/1234/1532357280.txt">log.txt</a>
|
|
<a class="hashtag" href="http://discuss.domain.com">#hashtag</a>
|
|
</div>
|
|
</div>
|
|
</div>`
|
|
);
|
|
}
|
|
});
|
|
|
|
var track = ClickTrack.trackClick;
|
|
|
|
// test
|
|
var generateClickEventOn = function(selector) {
|
|
return $.Event("click", { currentTarget: fixture(selector)[0] });
|
|
};
|
|
|
|
QUnit.test("does not track clicks on lightboxes", assert => {
|
|
var clickEvent = generateClickEventOn(".lightbox");
|
|
sandbox.stub(clickEvent, "preventDefault");
|
|
assert.ok(track(clickEvent));
|
|
assert.ok(!clickEvent.preventDefault.calledOnce);
|
|
});
|
|
|
|
QUnit.test("it calls preventDefault when clicking on an a", assert => {
|
|
var clickEvent = generateClickEventOn("a");
|
|
sandbox.stub(clickEvent, "preventDefault");
|
|
track(clickEvent);
|
|
assert.ok(clickEvent.preventDefault.calledOnce);
|
|
assert.ok(DiscourseURL.redirectTo.calledOnce);
|
|
});
|
|
|
|
QUnit.test("does not track clicks when forcibly disabled", assert => {
|
|
assert.ok(track(generateClickEventOn(".no-track-link")));
|
|
});
|
|
|
|
QUnit.test("does not track clicks on back buttons", assert => {
|
|
assert.ok(track(generateClickEventOn(".back")));
|
|
});
|
|
|
|
QUnit.test("does not track clicks on category badges", assert => {
|
|
assert.ok(track(generateClickEventOn(".hashtag")));
|
|
});
|
|
|
|
QUnit.test("removes the href and put it as a data attribute", assert => {
|
|
track(generateClickEventOn("a"));
|
|
|
|
var $link = fixture("a").first();
|
|
assert.ok($link.hasClass("no-href"));
|
|
assert.equal($link.data("href"), "http://www.google.com");
|
|
assert.blank($link.attr("href"));
|
|
assert.ok($link.data("auto-route"));
|
|
assert.ok(DiscourseURL.redirectTo.calledOnce);
|
|
});
|
|
|
|
asyncTestDiscourse("restores the href after a while", function(assert) {
|
|
assert.expect(1);
|
|
|
|
track(generateClickEventOn("a"));
|
|
|
|
const done = assert.async();
|
|
setTimeout(function() {
|
|
done();
|
|
assert.equal(fixture("a").attr("href"), "http://www.google.com");
|
|
}, 75);
|
|
});
|
|
|
|
var testOpenInANewTab = function(description, clickEventModifier) {
|
|
test(description, function(assert) {
|
|
var clickEvent = generateClickEventOn("a");
|
|
clickEventModifier(clickEvent);
|
|
sandbox.stub(clickEvent, "preventDefault");
|
|
assert.ok(track(clickEvent));
|
|
assert.ok(!clickEvent.preventDefault.calledOnce);
|
|
});
|
|
};
|
|
|
|
testOpenInANewTab("it opens in a new tab when pressing shift", function(
|
|
clickEvent
|
|
) {
|
|
clickEvent.shiftKey = true;
|
|
});
|
|
|
|
testOpenInANewTab("it opens in a new tab when pressing meta", function(
|
|
clickEvent
|
|
) {
|
|
clickEvent.metaKey = true;
|
|
});
|
|
|
|
testOpenInANewTab("it opens in a new tab when pressing ctrl", function(
|
|
clickEvent
|
|
) {
|
|
clickEvent.ctrlKey = true;
|
|
});
|
|
|
|
testOpenInANewTab("it opens in a new tab on middle click", function(
|
|
clickEvent
|
|
) {
|
|
clickEvent.button = 2;
|
|
});
|
|
|
|
QUnit.test("tracks via AJAX if we're on the same site", assert => {
|
|
sandbox.stub(DiscourseURL, "routeTo");
|
|
sandbox.stub(DiscourseURL, "origin").returns("http://discuss.domain.com");
|
|
|
|
assert.ok(!track(generateClickEventOn("#same-site")));
|
|
assert.ok(DiscourseURL.routeTo.calledOnce);
|
|
});
|
|
|
|
QUnit.test("does not track via AJAX for attachments", assert => {
|
|
sandbox.stub(DiscourseURL, "routeTo");
|
|
sandbox.stub(DiscourseURL, "origin").returns("http://discuss.domain.com");
|
|
|
|
assert.ok(!track(generateClickEventOn(".attachment")));
|
|
assert.ok(DiscourseURL.redirectTo.calledOnce);
|
|
});
|
|
|
|
QUnit.test("tracks custom urls when opening in another window", assert => {
|
|
var clickEvent = generateClickEventOn("a");
|
|
sandbox
|
|
.stub(Discourse.User, "currentProp")
|
|
.withArgs("external_links_in_new_tab")
|
|
.returns(true);
|
|
assert.ok(!track(clickEvent));
|
|
assert.ok(
|
|
windowOpen.calledWith(
|
|
"/clicks/track?url=http%3A%2F%2Fwww.google.com&post_id=42&topic_id=1337",
|
|
"_blank"
|
|
)
|
|
);
|
|
});
|
|
|
|
QUnit.test("tracks custom urls when opening in another window", assert => {
|
|
var clickEvent = generateClickEventOn("a");
|
|
assert.ok(!track(clickEvent));
|
|
assert.ok(
|
|
redirectTo.calledWith(
|
|
"/clicks/track?url=http%3A%2F%2Fwww.google.com&post_id=42&topic_id=1337"
|
|
)
|
|
);
|
|
});
|