95d27e7f58
- this is a small part of a bit of cleanup of our test files - the goal is to make the existing tests clearer with a view to making it easier to write more tests - this makes the test structure follow the codebase structure more closely - eventually we will colocate the frontend tests with the frontend code
81 lines
2.4 KiB
JavaScript
81 lines
2.4 KiB
JavaScript
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const rewire = require('rewire');
|
|
const urlUtils = require('../../../../core/shared/url-utils');
|
|
const testUtils = require('../../../utils');
|
|
|
|
let getAmpUrl = rewire('../../../../core/frontend/meta/amp-url');
|
|
|
|
describe('getAmpUrl', function () {
|
|
let getUrlStub;
|
|
|
|
beforeEach(function () {
|
|
getUrlStub = sinon.stub();
|
|
|
|
getAmpUrl = rewire('../../../../core/frontend/meta/amp-url');
|
|
getAmpUrl.__set__('getUrl', getUrlStub);
|
|
|
|
sinon.stub(urlUtils, 'urlJoin');
|
|
sinon.stub(urlUtils, 'urlFor').withArgs('home', true).returns('http://localhost:9999');
|
|
});
|
|
|
|
afterEach(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
it('should return amp url for post', function () {
|
|
const post = testUtils.DataGenerator.forKnex.createPost();
|
|
|
|
// @TODO: WTF?
|
|
post.context = ['post'];
|
|
|
|
getUrlStub.withArgs(post, false).returns('url');
|
|
urlUtils.urlJoin.withArgs('http://localhost:9999', 'url', 'amp/').returns('url');
|
|
|
|
should.exist(getAmpUrl(post));
|
|
|
|
urlUtils.urlJoin.calledOnce.should.be.true();
|
|
urlUtils.urlFor.calledOnce.should.be.true();
|
|
getUrlStub.calledOnce.should.be.true();
|
|
});
|
|
|
|
it('should not return amp url for tag', function () {
|
|
const tag = testUtils.DataGenerator.forKnex.createTag();
|
|
|
|
// @TODO: WTF?
|
|
tag.context = ['tag'];
|
|
|
|
should.not.exist(getAmpUrl(tag));
|
|
|
|
urlUtils.urlJoin.called.should.be.false();
|
|
urlUtils.urlFor.called.should.be.false();
|
|
getUrlStub.called.should.be.false();
|
|
});
|
|
|
|
it('should not return amp url for author', function () {
|
|
const author = testUtils.DataGenerator.forKnex.createUser();
|
|
|
|
// @TODO: WTF?
|
|
author.context = ['author'];
|
|
|
|
should.not.exist(getAmpUrl(author));
|
|
|
|
urlUtils.urlJoin.called.should.be.false();
|
|
urlUtils.urlFor.called.should.be.false();
|
|
getUrlStub.called.should.be.false();
|
|
});
|
|
|
|
it('should not return amp url for amp post', function () {
|
|
const post = testUtils.DataGenerator.forKnex.createPost();
|
|
|
|
// @TODO: WTF?
|
|
post.context = ['amp', 'post'];
|
|
|
|
should.not.exist(getAmpUrl(post));
|
|
|
|
urlUtils.urlJoin.called.should.be.false();
|
|
urlUtils.urlFor.called.should.be.false();
|
|
getUrlStub.called.should.be.false();
|
|
});
|
|
});
|