Created
June 13, 2018 15:35
-
-
Save astrotars/e092b0540b226db8cfb3f4d125ddc722 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nock from 'nock'; | |
import { expect, request } from 'chai'; | |
import api from '../../src/server'; | |
import Article from '../../src/models/article'; | |
import config from '../../src/config'; | |
import { dropDBs, loadFixture, withLogin } from '../utils.js'; | |
describe('Article controller', () => { | |
let article; | |
before(async () => { | |
await dropDBs(); | |
await loadFixture('initial-data', 'articles'); | |
article = await Article.findOne({}); | |
expect(article).to.not.be.null; | |
expect(article.rss).to.not.be.null; | |
}); | |
describe('get', () => { | |
it('should return the right article via /articles/:articleId', async () => { | |
let response = await withLogin(request(api).get(`/articles/${article.id}`)); | |
expect(response).to.have.status(200); | |
}); | |
}); | |
describe('get parsed article', () => { | |
it('should return the parsed version of the article', async () => { | |
const response = await withLogin( | |
request(api).get(`/articles/${article.id}`).query({ type: 'parsed' }) | |
); | |
expect(response).to.have.status(200); | |
}); | |
}); | |
describe('list', () => { | |
it('should return the list of articles', async () => { | |
let response = await withLogin(request(api).get('/articles')); | |
expect(response).to.have.status(200); | |
}); | |
}); | |
describe('list from personalization', () => { | |
after(function () { | |
nock.cleanAll(); | |
}); | |
it('should return the list of articles', async () => { | |
nock(config.stream.baseUrl) | |
.get(/winds_article_recommendations/) | |
.reply(200, { results: [{foreign_id:`article:${article.id}`}] }); | |
const response = await withLogin( | |
request(api).get('/articles').query({ | |
type: 'recommended', | |
}) | |
); | |
expect(response).to.have.status(200); | |
expect(response.body.length).to.be.at.least(1); | |
expect(response.body[0].url).to.eq(article.url); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment