aboutsummaryrefslogtreecommitdiff
path: root/e2e/console.test.js
blob: 6f6341f872051a75e5ca917c2927d4dc11ef1725 (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
const express = require('express');
const lanthan = require('lanthan');
const path = require('path');
const assert = require('assert');
const eventually = require('./eventually');

const Key = lanthan.Key;

const newApp = () => {
  let app = express();
  app.get('/', (req, res) => {
    res.send(`<!DOCTYPEhtml>
<html lang="en">
  <head>
    <title>Hello, world!</title>
  </head>
</html">`);
  });
  return app;
};


describe("console test", () => {
  const port = 12321;
  let http;
  let firefox;
  let session;
  let browser;
  let tab;
  let body;

  before(async() => {
    firefox = await lanthan.firefox();
    await firefox.session.installAddonFromPath(path.join(__dirname, '..'));
    session = firefox.session;
    browser = firefox.browser;
    http = newApp().listen(port);
  });

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

  beforeEach(async() => {
    await session.navigateTo(`http://127.0.0.1:${port}`);
    body = await session.findElementByCSS('body');
  });

  it('open console with :', async() => {
    await body.sendKeys(':');

    await session.switchToFrame(0);
    
    let input = await session.findElementByCSS('input');
    assert.equal(await input.isDisplayed(), true);
  });

  it('open console with open command by o', async() => {
    await body.sendKeys('o');

    await session.switchToFrame(0);
    let value = await session.executeScript(() => document.querySelector('input').value);
    assert.equal(value, 'open ');
  });

  it('open console with open command and current URL by O', async() => {
    await body.sendKeys(Key.Shift, 'o');

    await session.switchToFrame(0);
    let value = await session.executeScript(() => document.querySelector('input').value);
    assert.equal(value, `open http://127.0.0.1:${port}/`);
  });

  it('open console with tabopen command by t', async() => {
    await body.sendKeys('t');

    await session.switchToFrame(0);
    let value = await session.executeScript(() => document.querySelector('input').value);
    assert.equal(value, 'tabopen ');
  });

  it('open console with tabopen command and current URL by T', async() => {
    await body.sendKeys(Key.Shift, 't');

    await session.switchToFrame(0);
    let value = await session.executeScript(() => document.querySelector('input').value);
    assert.equal(value, `tabopen http://127.0.0.1:${port}/`);
  });

  it('open console with winopen command by w', async() => {
    await body.sendKeys('w');

    await session.switchToFrame(0);
    let value = await session.executeScript(() => document.querySelector('input').value);
    assert.equal(value, 'winopen ');
  });

  it('open console with winopen command and current URL by W', async() => {
    await body.sendKeys(Key.Shift, 'W');

    await session.switchToFrame(0);
    let value = await session.executeScript(() => document.querySelector('input').value);
    assert.equal(value, `winopen http://127.0.0.1:${port}/`);
  });

  it('open console with buffer command by b', async() => {
    await body.sendKeys('b');

    await session.switchToFrame(0);
    let value = await session.executeScript(() => document.querySelector('input').value);
    assert.equal(value, `buffer `);
  });

  it('open console with addbookmark command with title by a', async() => {
    await body.sendKeys('a');

    await session.switchToFrame(0);
    let value = await session.executeScript(() => document.querySelector('input').value);
    assert.equal(value, `addbookmark Hello, world!`);
  });
});