discourse/test/javascripts/acceptance/topic-anonymous-test.js.es6

49 lines
1.4 KiB
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("Topic - Anonymous");
2017-06-14 13:57:58 -04:00
QUnit.test("Enter a Topic", assert => {
visit("/t/internationalization-localization/280/1");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok(exists("#topic"), "The topic was rendered");
assert.ok(exists("#topic .cooked"), "The topic has cooked posts");
2018-06-15 11:03:24 -04:00
assert.ok(
find(".shared-draft-notice").length === 0,
"no shared draft unless there's a dest category id"
);
});
});
2017-06-14 13:57:58 -04:00
QUnit.test("Enter without an id", assert => {
visit("/t/internationalization-localization");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok(exists("#topic"), "The topic was rendered");
});
});
2017-06-14 13:57:58 -04:00
QUnit.test("Enter a 404 topic", assert => {
visit("/t/not-found/404");
andThen(() => {
assert.ok(!exists("#topic"), "The topic was not rendered");
2018-06-15 11:03:24 -04:00
assert.ok(
find(".not-found").text() === "not found",
"it renders the error message"
);
});
});
2017-06-14 13:57:58 -04:00
QUnit.test("Enter without access", assert => {
visit("/t/i-dont-have-access/403");
andThen(() => {
assert.ok(!exists("#topic"), "The topic was not rendered");
assert.ok(exists(".topic-error"), "An error message is displayed");
});
});
2017-06-14 13:57:58 -04:00
QUnit.test("Enter with 500 errors", assert => {
visit("/t/throws-error/500");
andThen(() => {
assert.ok(!exists("#topic"), "The topic was not rendered");
assert.ok(exists(".topic-error"), "An error message is displayed");
});
});