59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* global describe expect it */
 | 
						|
 | 
						|
const { createRedirects } = require('./create-redirects');
 | 
						|
 | 
						|
const testLocations = {
 | 
						|
  api: 'https://api.example.com',
 | 
						|
  newsProxy: 'https://news.example.com',
 | 
						|
  forumProxy: 'https://forum.example.com'
 | 
						|
};
 | 
						|
 | 
						|
describe('createRedirects', () => {
 | 
						|
  it('is a function', () => {
 | 
						|
    expect(typeof createRedirects).toEqual('function');
 | 
						|
  });
 | 
						|
 | 
						|
  it('returns a string', () => {
 | 
						|
    expect(typeof createRedirects(testLocations)).toEqual('string');
 | 
						|
  });
 | 
						|
 | 
						|
  it('replaces instances of `#{{...}}` with the locations provided', () => {
 | 
						|
    expect.assertions(4);
 | 
						|
 | 
						|
    const apiPlaceholderRE = /#\{\{API\}\}/;
 | 
						|
    const newsPlaceholderRE = /#\{\{NEWS\}\}/;
 | 
						|
    const forumPlaceholderRE = /#\{\{FORUM\}\}/;
 | 
						|
    const redirects = createRedirects(testLocations);
 | 
						|
 | 
						|
    const hasApiPlaceholder = apiPlaceholderRE.test(redirects);
 | 
						|
    const hasNewsPlaceholder = newsPlaceholderRE.test(redirects);
 | 
						|
    const hasForumPlaceholder = forumPlaceholderRE.test(redirects);
 | 
						|
 | 
						|
    expect(hasApiPlaceholder).toBe(false);
 | 
						|
    expect(hasNewsPlaceholder).toBe(false);
 | 
						|
    expect(hasForumPlaceholder).toBe(false);
 | 
						|
 | 
						|
    const { forumProxy } = testLocations;
 | 
						|
    expect(redirects.includes(`${forumProxy}`)).toBe(true);
 | 
						|
  });
 | 
						|
 | 
						|
  it('throws when any location is missing', () => {
 | 
						|
    expect.assertions(3);
 | 
						|
 | 
						|
    const api = 'api';
 | 
						|
    const newsProxy = 'newsProxy';
 | 
						|
    const forumProxy = 'forumProxy';
 | 
						|
 | 
						|
    const noApi = { forumProxy, newsProxy };
 | 
						|
    const noNews = { api, forumProxy };
 | 
						|
    const noForum = { api, newsProxy };
 | 
						|
 | 
						|
    expect(() => createRedirects(noApi)).toThrow();
 | 
						|
    expect(() => createRedirects(noNews)).toThrow();
 | 
						|
    expect(() => createRedirects(noForum)).toThrow();
 | 
						|
  });
 | 
						|
 | 
						|
  it('matches the snapshot', () =>
 | 
						|
    expect(createRedirects(testLocations)).toMatchSnapshot());
 | 
						|
});
 |