- Count deprecations and print them to the console following QUnit runs
- In GitHub actions, write the same information as a job summary
- Add documentation to `discourse-common/lib/deprecated`
- Introduce `id` and `url` options to `deprecated`
- Introduce `withSilencedDeprecations` helper to allow testing deprecated code paths without making noise in the logs
This was previously reverted in 47035693b7.
179 lines
4.9 KiB
JavaScript
179 lines
4.9 KiB
JavaScript
import {
|
|
default as deprecated,
|
|
withSilencedDeprecations,
|
|
} from "discourse-common/lib/deprecated";
|
|
import DeprecationCounter from "discourse/tests/helpers/deprecation-counter";
|
|
import { module, test } from "qunit";
|
|
import Sinon from "sinon";
|
|
|
|
module("Unit | Utility | deprecated", function (hooks) {
|
|
hooks.beforeEach(function () {
|
|
this.warnStub = Sinon.stub(console, "warn");
|
|
this.counterStub = Sinon.stub(
|
|
DeprecationCounter.prototype,
|
|
"incrementDeprecation"
|
|
);
|
|
});
|
|
|
|
test("works with just a message", function (assert) {
|
|
deprecated("My message");
|
|
assert.strictEqual(
|
|
this.warnStub.callCount,
|
|
1,
|
|
"console warn was called once"
|
|
);
|
|
assert.deepEqual(
|
|
this.warnStub.args[0],
|
|
["Deprecation notice: My message"],
|
|
"console.warn is called with the correct arguments"
|
|
);
|
|
assert.strictEqual(
|
|
this.counterStub.callCount,
|
|
1,
|
|
"incrementDeprecation was called once"
|
|
);
|
|
assert.deepEqual(
|
|
this.counterStub.args[0],
|
|
["discourse.(unknown)"],
|
|
"incrementDeprecation is called with the correct arguments"
|
|
);
|
|
});
|
|
|
|
test("works with a message and id", function (assert) {
|
|
deprecated("My message", { id: "discourse.my_deprecation_id" });
|
|
assert.strictEqual(
|
|
this.warnStub.callCount,
|
|
1,
|
|
"console warn was called once"
|
|
);
|
|
assert.deepEqual(
|
|
this.warnStub.args[0],
|
|
[
|
|
"Deprecation notice: My message [deprecation id: discourse.my_deprecation_id]",
|
|
],
|
|
"console.warn is called with the correct arguments"
|
|
);
|
|
assert.strictEqual(
|
|
this.counterStub.callCount,
|
|
1,
|
|
"incrementDeprecation was called once"
|
|
);
|
|
assert.deepEqual(
|
|
this.counterStub.args[0],
|
|
["discourse.my_deprecation_id"],
|
|
"incrementDeprecation is called with the correct arguments"
|
|
);
|
|
});
|
|
|
|
test("works with all other metadata", async function (assert) {
|
|
deprecated("My message", {
|
|
id: "discourse.my_deprecation_id",
|
|
dropFrom: "v100",
|
|
since: "v1",
|
|
url: "https://example.com",
|
|
});
|
|
assert.strictEqual(
|
|
this.warnStub.callCount,
|
|
1,
|
|
"console warn was called once"
|
|
);
|
|
assert.deepEqual(
|
|
this.warnStub.args[0],
|
|
[
|
|
"Deprecation notice: My message [deprecated since Discourse v1] [removal in Discourse v100] [deprecation id: discourse.my_deprecation_id] [info: https://example.com]",
|
|
],
|
|
"console.warn is called with the correct arguments"
|
|
);
|
|
assert.strictEqual(
|
|
this.counterStub.callCount,
|
|
1,
|
|
"incrementDeprecation was called once"
|
|
);
|
|
assert.deepEqual(
|
|
this.counterStub.args[0],
|
|
["discourse.my_deprecation_id"],
|
|
"incrementDeprecation is called with the correct arguments"
|
|
);
|
|
});
|
|
|
|
test("works with raiseError", function (assert) {
|
|
assert.throws(
|
|
() =>
|
|
deprecated("My message", {
|
|
id: "discourse.my_deprecation_id",
|
|
raiseError: true,
|
|
}),
|
|
"Deprecation notice: My message [deprecation id: discourse.my_deprecation_id]"
|
|
);
|
|
assert.strictEqual(
|
|
this.counterStub.callCount,
|
|
1,
|
|
"incrementDeprecation was called once"
|
|
);
|
|
assert.deepEqual(
|
|
this.counterStub.args[0],
|
|
["discourse.my_deprecation_id"],
|
|
"incrementDeprecation is called with the correct arguments"
|
|
);
|
|
});
|
|
|
|
test("can silence individual deprecations in tests", function (assert) {
|
|
withSilencedDeprecations("discourse.one", () =>
|
|
deprecated("message", { id: "discourse.one" })
|
|
);
|
|
assert.strictEqual(
|
|
this.warnStub.callCount,
|
|
0,
|
|
"console.warn is not called"
|
|
);
|
|
assert.strictEqual(
|
|
this.counterStub.callCount,
|
|
0,
|
|
"counter is not incremented"
|
|
);
|
|
|
|
deprecated("message", { id: "discourse.one" });
|
|
assert.strictEqual(
|
|
this.warnStub.callCount,
|
|
1,
|
|
"console.warn is called outside the silenced function"
|
|
);
|
|
assert.strictEqual(
|
|
this.counterStub.callCount,
|
|
1,
|
|
"counter is incremented outside the silenced function"
|
|
);
|
|
|
|
withSilencedDeprecations("discourse.one", () =>
|
|
deprecated("message", { id: "discourse.two" })
|
|
);
|
|
assert.strictEqual(
|
|
this.warnStub.callCount,
|
|
2,
|
|
"console.warn is called for a different deprecation"
|
|
);
|
|
assert.strictEqual(
|
|
this.counterStub.callCount,
|
|
2,
|
|
"counter is incremented for a different deprecation"
|
|
);
|
|
});
|
|
|
|
test("can silence multiple deprecations in tests", function (assert) {
|
|
withSilencedDeprecations(["discourse.one", "discourse.two"], () => {
|
|
deprecated("message", { id: "discourse.one" });
|
|
deprecated("message", { id: "discourse.two" });
|
|
});
|
|
assert.strictEqual(
|
|
this.warnStub.callCount,
|
|
0,
|
|
"console.warn is not called"
|
|
);
|
|
assert.strictEqual(
|
|
this.counterStub.callCount,
|
|
0,
|
|
"counter is not incremented"
|
|
);
|
|
});
|
|
});
|