navigation.js
2.66 KB
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
describe("Spooky provides Casper's navigation functions", function () {
var context = {};
var hooks = require('../util/hooks');
var FIXTURE_URL = hooks.FIXTURE_URL;
beforeEach(hooks.before(context));
describe('spooky.back', function () {
it("moves back a step in the browser's history", function (done) {
context.spooky.start();
context.spooky.thenOpen(FIXTURE_URL + '/1.html');
context.spooky.thenOpen(FIXTURE_URL + '/2.html');
context.spooky.back();
context.spooky.then(function () {
this.echo(this.getCurrentUrl());
});
function onConsole(line) {
if (line === FIXTURE_URL + '/1.html') {
context.spooky.removeListener('console', onConsole);
done();
return;
}
}
context.spooky.on('console', onConsole);
context.spooky.run();
});
});
describe('spooky.forward', function () {
it("moves forward a step in the browser's history", function (done) {
context.spooky.start();
context.spooky.thenOpen(FIXTURE_URL + '/1.html');
context.spooky.thenOpen(FIXTURE_URL + '/2.html');
context.spooky.thenOpen(FIXTURE_URL + '/3.html');
context.spooky.back();
context.spooky.back();
context.spooky.forward();
context.spooky.then(function () {
this.echo(this.getCurrentUrl());
});
function onConsole(line) {
if (line === FIXTURE_URL + '/2.html') {
context.spooky.removeListener('console', onConsole);
done();
return;
}
}
context.spooky.on('console', onConsole);
context.spooky.run();
});
});
describe('spooky.open', function () {
it('opens a given location in the browser', function (done) {
context.spooky.start();
context.spooky.open(FIXTURE_URL + '/1.html');
context.spooky.then(function () {
this.echo(this.getCurrentUrl());
});
function onConsole(line) {
if (line === FIXTURE_URL + '/1.html') {
context.spooky.removeListener('console', onConsole);
done();
return;
}
}
context.spooky.on('console', onConsole);
context.spooky.run();
});
// TODO: figure out how to test settings object
});
afterEach(hooks.after(context));
});