aboutsummaryrefslogtreecommitdiff
path: root/e2e/completion_set.test.ts
blob: 929f6495c90d311acad0f3a3cce5176f56e5842d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import * as path from "path";
import * as assert from "assert";

import eventually from "./eventually";
import { Builder, Lanthan } from "lanthan";
import { WebDriver } from "selenium-webdriver";
import Page from "./lib/Page";

describe("completion on set commands", () => {
  let lanthan: Lanthan;
  let webdriver: WebDriver;
  let page: Page;

  before(async () => {
    lanthan = await Builder.forBrowser("firefox")
      .spyAddon(path.join(__dirname, ".."))
      .build();
    webdriver = lanthan.getWebDriver();
  });

  after(async () => {
    if (lanthan) {
      await lanthan.quit();
    }
  });

  beforeEach(async () => {
    page = await Page.navigateTo(webdriver, `about:blank`);
  });

  it('should show all property names by "set" command with empty params', async () => {
    const console = await page.showConsole();
    await console.inputKeys("set ");

    await eventually(async () => {
      const groups = await console.getCompletions();
      const items = groups[0].items;
      assert.strictEqual(items.length, 5);
      assert.ok(items[0].text.startsWith("hintchars"));
      assert.ok(items[1].text.startsWith("smoothscroll"));
      assert.ok(items[2].text.startsWith("nosmoothscroll"));
      assert.ok(items[3].text.startsWith("complete"));
      assert.ok(items[4].text.startsWith("colorscheme"));
    });
  });

  it('should show filtered property names by "set" command', async () => {
    const console = await page.showConsole();
    await console.inputKeys("set no");

    await eventually(async () => {
      const groups = await console.getCompletions();
      const items = groups[0].items;
      assert.strictEqual(items.length, 1);
      assert.ok(items[0].text.includes("nosmoothscroll"));
    });
  });
});