rats-search/tests/strategies/1337x.disabled.js
2019-03-06 14:31:34 +03:00

28 lines
1.1 KiB
JavaScript

const { assert } = require('chai')
const Strategy = require('../../src/background/strategies/1337x.js')
describe("1337x", () => {
let strategy = new Strategy();
it("findHash", async function() {
this.timeout(8000);
const data = await strategy.findHash('1734BCCAA7B05BD4D77B86E17820C840BF0C2EF5')
assert.equal(data.name, 'DEgITx - Discography (01.10.2016) FLAC')
assert.equal(data.poster, 'http://i58.fastpic.ru/big/2014/0224/62/eec1c9dc98892d5a88b46ade2edc7662.jpg')
assert.equal(data.x1337ThreadId, 1821018)
assert(data.description.includes('licensed under Creative Commons'))
assert.equal(data.contentCategory, 'Music')
})
it("properFilmPoster", async function() {
this.timeout(8000);
const data = await strategy.findHash('BA696FB753078807B696A6F1DA5D8DD24F43BE04')
assert.equal(data.name, 'Tears of the Sun (2003) [720p] [BluRay] [YTS.ME] [YIFY]')
assert.equal(data.poster, 'https://lx1.dyncdn.cc/cdn/89/891b2655428e3016e1fe648539e22220.jpg')
})
it("notFound", async function() {
assert(!await strategy.findHash('1734BCCAA7B05BD4D77B86E17820C840BF0C2EF6'))
})
});