aboutsummaryrefslogtreecommitdiff
path: root/e2e/follow_properties.test.ts
blob: 47556a28f15fc1580bcd4ff9d75827985bbab732 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
import express from 'express';
import * as path from 'path';
import * as assert from 'assert';
import * as http from 'http';

import eventually from './eventually';
import { Builder, Lanthan } from 'lanthan';
import { WebDriver, WebElement, By, Key } from 'selenium-webdriver';
import { Console } from './lib/Console';

const newApp = () => {
  let app = express();

  app.get('/', (_req, res) => {
    res.send(`<!DOCTYPEhtml>
<html lang="en">
  <body>
    <a href="/">link1</a>
    <a href="/">link2</a>
    <a href="/">link3</a>
    <a href="/">link4</a>
    <a href="/">link5</a>
  </body>
</html">`);
  });
  return app;
};

describe('follow properties test', () => {
  const port = 12321;
  let http: http.Server;
  let lanthan: Lanthan;
  let webdriver: WebDriver;
  let browser: any;
  let body: WebElement;

  before(async() => {
    http = newApp().listen(port);

    lanthan = await Builder
      .forBrowser('firefox')
      .spyAddon(path.join(__dirname, '..'))
      .build();
    webdriver = lanthan.getWebDriver();
    browser = lanthan.getWebExtBrowser();

    await browser.storage.local.set({ settings: {
      source: 'json',
      json: `{
        "keymaps": {
          ":": { "type": "command.show" },
          "f": { "type": "follow.start", "newTab": false },
          "F": { "type": "follow.start", "newTab": true, "background": false },
          "<C-F>": { "type": "follow.start", "newTab": true, "background": true }
        },
        "search": {
          "default": "google",
          "engines": { "google": "https://google.com/search?q={}" }
        },
        "properties": {
          "hintchars": "jk"
        }
      }`,
    }});
  });

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

  beforeEach(async() => {
    await webdriver.navigate().to(`http://127.0.0.1:${port}/`);
    body = await webdriver.findElement(By.css('body'));
  });

  afterEach(async() => {
    let tabs = await browser.tabs.query({});
    for (let tab of tabs.slice(1)) {
      await browser.tabs.remove(tab.id);
    }
  });

  it('should show hints with hintchars by settings', async () => {
    await body.sendKeys('f');
    await eventually(async() => {
      let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
      assert.equal(hints.length, 5);

      assert.equal(await hints[0].getText(), 'J');
      assert.equal(await hints[1].getText(), 'K');
      assert.equal(await hints[2].getText(), 'JJ');
      assert.equal(await hints[3].getText(), 'JK');
      assert.equal(await hints[4].getText(), 'KJ');
    });

    await body.sendKeys('j');

    await eventually(async() => {
      let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));

      assert.equal(await hints[0].getCssValue('display'), 'block');
      assert.equal(await hints[1].getCssValue('display'), 'none');
      assert.equal(await hints[2].getCssValue('display'), 'block');
      assert.equal(await hints[3].getCssValue('display'), 'block');
      assert.equal(await hints[4].getCssValue('display'), 'none');
    });
  });

  it('should open tab in background by background:false', async () => {
    await body.sendKeys(Key.SHIFT, 'f');
    await eventually(async() => {
      let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
      assert.equal(hints.length, 5);
    });
    await body.sendKeys('jj');

    await eventually(async() => {
      let tabs = await browser.tabs.query({});
      assert.equal(tabs[0].active, false);
      assert.equal(tabs[1].active, true);
    });
  });

  it('should open tab in background by background:true', async () => {
    await body.sendKeys(Key.CONTROL, 'f');
    await eventually(async() => {
      let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
      assert.equal(hints.length, 5);
    });
    await body.sendKeys('jj');

    await eventually(async() => {
      let tabs = await browser.tabs.query({});
      assert.equal(tabs[0].active, true);
      assert.equal(tabs[1].active, false);
    });
  });

  it('should show hints with hintchars by settings', async () => {
    let c = new Console(webdriver);

    await body.sendKeys(':');
    await webdriver.switchTo().frame(0);
    await c.sendKeys('set hintchars=abc', Key.ENTER);
    await new Promise(resolve => setTimeout(resolve, 100));
    await (webdriver.switchTo() as any).parentFrame();

    await body.sendKeys('f');
    await eventually(async() => {
      let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
      assert.equal(hints.length, 5);

      assert.equal(await hints[0].getText(), 'A');
      assert.equal(await hints[1].getText(), 'B');
      assert.equal(await hints[2].getText(), 'C');
      assert.equal(await hints[3].getText(), 'AA');
      assert.equal(await hints[4].getText(), 'AB');
    });

    await body.sendKeys('a');
    await eventually(async() => {
      let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));

      assert.equal(await hints[0].getCssValue('display'), 'block');
      assert.equal(await hints[1].getCssValue('display'), 'none');
      assert.equal(await hints[2].getCssValue('display'), 'none');
      assert.equal(await hints[3].getCssValue('display'), 'block');
      assert.equal(await hints[4].getCssValue('display'), 'block');
    });
  });
});