2024-07-25 21:09:06 +08:00
|
|
|
import { getOwner } from "@ember/owner";
|
2024-04-03 23:20:43 +08:00
|
|
|
import { fillIn, render } from "@ember/test-helpers";
|
|
|
|
import { hbs } from "ember-cli-htmlbars";
|
|
|
|
import { module, test } from "qunit";
|
|
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
2024-04-09 03:00:09 +08:00
|
|
|
import AutomationFabricators from "discourse/plugins/automation/admin/lib/fabricators";
|
2024-04-03 23:20:43 +08:00
|
|
|
|
|
|
|
module("Integration | Component | da-message-field", function (hooks) {
|
|
|
|
setupRenderingTest(hooks);
|
|
|
|
|
|
|
|
hooks.beforeEach(function () {
|
2024-04-09 03:00:09 +08:00
|
|
|
this.automation = new AutomationFabricators(getOwner(this)).automation();
|
2024-04-03 23:20:43 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
test("set value", async function (assert) {
|
2024-04-09 03:00:09 +08:00
|
|
|
this.field = new AutomationFabricators(getOwner(this)).field({
|
|
|
|
component: "message",
|
|
|
|
});
|
2024-04-03 23:20:43 +08:00
|
|
|
|
|
|
|
await render(
|
|
|
|
hbs`<AutomationField @automation={{this.automation}} @field={{this.field}} />`
|
|
|
|
);
|
|
|
|
await fillIn("textarea", "Hello World");
|
|
|
|
|
|
|
|
assert.strictEqual(this.field.metadata.value, "Hello World");
|
|
|
|
});
|
2024-09-05 17:18:21 +08:00
|
|
|
|
|
|
|
test("render placeholders", async function (assert) {
|
|
|
|
this.field = new AutomationFabricators(getOwner(this)).field({
|
|
|
|
component: "message",
|
|
|
|
});
|
|
|
|
this.automation.placeholders = ["foo", "bar"];
|
|
|
|
|
|
|
|
await render(
|
|
|
|
hbs`<AutomationField @automation={{this.automation}} @field={{this.field}} />`
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.dom(".placeholders-list").hasText("foo bar");
|
|
|
|
});
|
2024-04-03 23:20:43 +08:00
|
|
|
});
|