-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathindex.spec.js
51 lines (43 loc) · 1.32 KB
/
index.spec.js
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
var proxyquire = require('proxyquire'),
expect = require("chai").expect,
CrawlerMock,
UrlMock,
DbUrlListMock,
htmlLinkParserMock,
robotsParserMock,
sitemapsParserMock,
index;
CrawlerMock = function () {};
UrlMock = function () {};
DbUrlListMock = function () {};
htmlLinkParserMock = function () {};
robotsParserMock = function () {};
sitemapsParserMock = function () {};
index = proxyquire("../lib/index", {
"./Crawler": CrawlerMock,
"./Url": UrlMock,
"./DbUrlList": DbUrlListMock,
"./handlers/htmlLinkParser": htmlLinkParserMock,
"./handlers/robotsParser": robotsParserMock,
"./handlers/sitemapsParser": sitemapsParserMock
});
describe("index", function () {
it("exposes Crawler", function () {
expect(index.Crawler).to.equal(CrawlerMock);
});
it("exposes Url", function () {
expect(index.Url).to.equal(UrlMock);
});
it("exposes DbUrlList", function () {
expect(index.DbUrlList).to.equal(DbUrlListMock);
});
it("exposes htmlLinkParser", function () {
expect(index.handlers.htmlLinkParser).to.equal(htmlLinkParserMock);
});
it("exposes robotsParser", function () {
expect(index.handlers.robotsParser).to.equal(robotsParserMock);
});
it("exposes sitemapsParser", function () {
expect(index.handlers.sitemapsParser).to.equal(sitemapsParserMock);
});
});