Home Manual Reference Source Test Repository

test/e2e/api.spec.js

  1. import path from 'path';
  2. import assert from 'assert';
  3. import sinon from 'sinon';
  4. import fs from 'fs-extra';
  5.  
  6. import { simpleSite } from '../utils';
  7.  
  8. import Reptar from '../../lib/index';
  9. import { ApiService } from '../../lib/server/api';
  10. import cache from '../../lib/cache';
  11. import Config from '../../lib/config/index';
  12. import log from '../../lib/log';
  13.  
  14. log.setSilent(true);
  15.  
  16. describe('api', function test() {
  17. this.timeout(5000);
  18.  
  19. const generatedOutputDir = path.join(simpleSite.src, '_site');
  20.  
  21. let sandbox;
  22. let instance;
  23. let apiService;
  24. let request;
  25. let reply;
  26.  
  27. before(async () => {
  28. sandbox = sinon.sandbox.create();
  29.  
  30. // Don't actually save cache to file system.
  31. sandbox.stub(cache, 'save');
  32.  
  33. fs.removeSync(generatedOutputDir);
  34.  
  35. sandbox.spy(Reptar.prototype, 'update');
  36. sandbox.spy(Config.prototype, 'update');
  37.  
  38. instance = new Reptar({
  39. rootPath: simpleSite.src,
  40. showSpinner: false,
  41. });
  42. await instance.update();
  43.  
  44. apiService = ApiService(instance);
  45. });
  46.  
  47. beforeEach(() => {
  48. request = {
  49. query: {},
  50. payload: {},
  51. params: {},
  52. };
  53. reply = sandbox.spy();
  54. });
  55.  
  56. afterEach(() => {
  57. reply.reset();
  58. });
  59.  
  60. after(() => {
  61. sandbox.restore();
  62. });
  63.  
  64. describe('config handlers', () => {
  65. beforeEach(() => apiService.config.get(request, reply));
  66.  
  67. it('returns the config object', () => {
  68. assert(reply.firstCall.calledWith(instance.config.get()));
  69. });
  70. });
  71.  
  72. describe('files.get handler', () => {
  73. let response;
  74.  
  75. function commonAssertions({ expectedLength }) {
  76. it('returns an array', () => {
  77. assert.equal(typeof response.length, 'number');
  78. });
  79.  
  80. it(`returns ${expectedLength} items`, () => {
  81. assert.equal(response.length, expectedLength);
  82. });
  83. }
  84.  
  85. afterEach(() => {
  86. response = undefined;
  87. });
  88.  
  89. describe('without any query params', () => {
  90. beforeEach(async () => {
  91. await apiService.files.get(request, reply);
  92. response = reply.firstCall.args[0];
  93. });
  94.  
  95. commonAssertions({
  96. expectedLength: 15,
  97. });
  98. });
  99.  
  100. describe('when filtered=true', () => {
  101. beforeEach(async () => {
  102. request.query = {
  103. filtered: 'true',
  104. };
  105.  
  106. await apiService.files.get(request, reply);
  107.  
  108. response = reply.firstCall.args[0];
  109. });
  110.  
  111. commonAssertions({
  112. expectedLength: 1,
  113. });
  114.  
  115. it('every item is filtered', () => {
  116. response.forEach(file => assert.equal(file.filtered, true));
  117. });
  118. });
  119.  
  120. describe('when filtered=false', () => {
  121. beforeEach(async () => {
  122. request.query = {
  123. filtered: 'false',
  124. };
  125.  
  126. await apiService.files.get(request, reply);
  127.  
  128. response = reply.firstCall.args[0];
  129. });
  130.  
  131. commonAssertions({
  132. expectedLength: 14,
  133. });
  134.  
  135. it('every item is not filtered', () => {
  136. response.forEach(file => assert.equal(file.filtered, false));
  137. });
  138. });
  139.  
  140. describe('when skipProcessing=true', () => {
  141. beforeEach(async () => {
  142. request.query = {
  143. skipProcessing: 'true',
  144. };
  145.  
  146. await apiService.files.get(request, reply);
  147.  
  148. response = reply.firstCall.args[0];
  149. });
  150.  
  151. commonAssertions({
  152. expectedLength: 7,
  153. });
  154.  
  155. it('every item is skipProcessing', () => {
  156. response.forEach(file => assert.equal(file.skipProcessing, true));
  157. });
  158. });
  159.  
  160. describe('when skipProcessing=false', () => {
  161. beforeEach(async () => {
  162. request.query = {
  163. skipProcessing: 'false',
  164. };
  165.  
  166. await apiService.files.get(request, reply);
  167.  
  168. response = reply.firstCall.args[0];
  169. });
  170.  
  171. commonAssertions({
  172. expectedLength: 8,
  173. });
  174.  
  175. it('every item is skipProcessing', () => {
  176. response.forEach(file => assert.equal(file.skipProcessing, false));
  177. });
  178. });
  179.  
  180. describe('when assetProcessor=true', () => {
  181. beforeEach(async () => {
  182. request.query = {
  183. assetProcessor: 'true',
  184. };
  185.  
  186. await apiService.files.get(request, reply);
  187.  
  188. response = reply.firstCall.args[0];
  189. });
  190.  
  191. commonAssertions({
  192. expectedLength: 5,
  193. });
  194.  
  195. it('every item is assetProcessor', () => {
  196. response.forEach(file => assert(file.assetProcessor));
  197. });
  198. });
  199.  
  200. describe('when assetProcessor=false', () => {
  201. beforeEach(async () => {
  202. request.query = {
  203. assetProcessor: 'false',
  204. };
  205.  
  206. await apiService.files.get(request, reply);
  207.  
  208. response = reply.firstCall.args[0];
  209. });
  210.  
  211. commonAssertions({
  212. expectedLength: 10,
  213. });
  214.  
  215. it('every item is assetProcessor', () => {
  216. response.forEach(file => assert.equal(file.assetProcessor, null));
  217. });
  218. });
  219.  
  220. describe('when path does not match a file', () => {
  221. beforeEach(async () => {
  222. request.query = {
  223. path: 'badabada',
  224. };
  225.  
  226. await apiService.files.get(request, reply);
  227.  
  228. response = reply.firstCall.args[0];
  229. });
  230.  
  231. commonAssertions({
  232. expectedLength: 0,
  233. });
  234. });
  235.  
  236. describe('when path does match a file', () => {
  237. let filePath;
  238.  
  239. beforeEach(async () => {
  240. filePath = path.join(instance.config.get('path.source'), 'about.md');
  241.  
  242. request.query = {
  243. path: filePath,
  244. };
  245.  
  246. await apiService.files.get(request, reply);
  247.  
  248. response = reply.firstCall.args[0];
  249. });
  250.  
  251. commonAssertions({
  252. expectedLength: 1,
  253. });
  254.  
  255. it('the file returned is the one we requested', () => {
  256. assert.equal(response[0].path, filePath);
  257. });
  258. });
  259.  
  260. describe('when the path is relative and matches', () => {
  261. const filePath = 'about.md';
  262. let fullPath;
  263.  
  264. beforeEach(async () => {
  265. fullPath = path.join(instance.config.get('path.source'), filePath);
  266.  
  267. request.query = {
  268. path: filePath,
  269. };
  270.  
  271. await apiService.files.get(request, reply);
  272.  
  273. response = reply.firstCall.args[0];
  274. });
  275.  
  276. commonAssertions({
  277. expectedLength: 1,
  278. });
  279.  
  280. it('the file returned is the one we requested', () => {
  281. assert.equal(response[0].path, fullPath);
  282. });
  283. });
  284.  
  285. //
  286. //
  287. describe('when destination does not match a file', () => {
  288. beforeEach(async () => {
  289. request.query = {
  290. destination: 'badabada',
  291. };
  292.  
  293. await apiService.files.get(request, reply);
  294.  
  295. response = reply.firstCall.args[0];
  296. });
  297.  
  298. commonAssertions({
  299. expectedLength: 0,
  300. });
  301. });
  302.  
  303. describe('when destination does match a file', () => {
  304. const filePath = '/about.html';
  305.  
  306. beforeEach(async () => {
  307. request.query = {
  308. destination: filePath,
  309. };
  310.  
  311. await apiService.files.get(request, reply);
  312.  
  313. response = reply.firstCall.args[0];
  314. });
  315.  
  316. commonAssertions({
  317. expectedLength: 1,
  318. });
  319.  
  320. it('the file returned is the one we requested', () => {
  321. assert.equal(response[0].destination, filePath);
  322. });
  323. });
  324.  
  325. describe('when the destination is relative and matches', () => {
  326. const filePath = 'about.html';
  327.  
  328. beforeEach(async () => {
  329. request.query = {
  330. destination: filePath,
  331. };
  332.  
  333. await apiService.files.get(request, reply);
  334.  
  335. response = reply.firstCall.args[0];
  336. });
  337.  
  338. commonAssertions({
  339. expectedLength: 1,
  340. });
  341.  
  342. it('the file returned is the one we requested', () => {
  343. assert.equal(response[0].destination, `/${filePath}`);
  344. });
  345. });
  346. });
  347.  
  348. describe('collections.get handler', () => {
  349. let response;
  350.  
  351. function commonAssertions({ expectedLength }) {
  352. it('returns an array', () => {
  353. assert.equal(typeof response.length, 'number');
  354. });
  355.  
  356. it(`returns ${expectedLength} items`, () => {
  357. assert.equal(response.length, expectedLength);
  358. });
  359. }
  360.  
  361. afterEach(() => {
  362. response = undefined;
  363. });
  364.  
  365. describe('without any query params', () => {
  366. beforeEach(async () => {
  367. await apiService.collections.get(request, reply);
  368. response = reply.firstCall.args[0];
  369. });
  370.  
  371. commonAssertions({
  372. expectedLength: 2,
  373. });
  374.  
  375. it('returns an array of just collection names', () => {
  376. assert.deepEqual(response, ['post', 'tag']);
  377. });
  378. });
  379.  
  380. function commonOneCollection({ id }) {
  381. it('returns an object', () => {
  382. assert.equal(typeof response, 'object');
  383. });
  384.  
  385. it('the object matches the request id', () => {
  386. assert.equal(response.id, id);
  387. });
  388. }
  389.  
  390. describe('when requesting one collection', () => {
  391. const id = 'post';
  392.  
  393. beforeEach(async () => {
  394. request.params.id = id;
  395. await apiService.collections.get(request, reply);
  396. response = reply.firstCall.args[0];
  397. });
  398.  
  399. commonOneCollection({ id });
  400.  
  401. it('the object does not have properties that excluded by default', () => {
  402. ['pages', 'files', 'data'].forEach(prop =>
  403. assert.equal(typeof response[prop], 'undefined')
  404. );
  405. });
  406. });
  407.  
  408. describe('when requesting one collection with include param', () => {
  409. const id = 'post';
  410.  
  411. beforeEach(async () => {
  412. request.params.id = id;
  413. request.query.include = 'pages';
  414. await apiService.collections.get(request, reply);
  415. response = reply.firstCall.args[0];
  416. });
  417.  
  418. commonOneCollection({ id });
  419.  
  420. it('the object has a pages property which is an array', () => {
  421. assert.equal(typeof response.pages.length, 'number');
  422. });
  423.  
  424. it('pages has expected length', () => {
  425. assert.equal(response.pages.length, 1);
  426. });
  427.  
  428. it('the object does not have properties that excluded by default', () => {
  429. ['files', 'data'].forEach(prop =>
  430. assert.equal(typeof response[prop], 'undefined')
  431. );
  432. });
  433. });
  434.  
  435. // eslint-disable-next-line max-len
  436. describe('when requesting one collection with multiple include values', () => {
  437. const id = 'post';
  438.  
  439. beforeEach(async () => {
  440. request.params.id = id;
  441. request.query.include = 'pages,files';
  442. await apiService.collections.get(request, reply);
  443. response = reply.firstCall.args[0];
  444. });
  445.  
  446. commonOneCollection({ id });
  447.  
  448. it('the object has a pages property which is an array', () => {
  449. assert.equal(typeof response.pages.length, 'number');
  450. });
  451.  
  452. it('pages has expected length', () => {
  453. assert.equal(response.pages.length, 1);
  454. });
  455.  
  456. it('files is an object', () => {
  457. assert.equal(typeof response.files, 'object');
  458. });
  459.  
  460. it('files is not an array object', () => {
  461. assert.equal(typeof response.files.length, 'undefined');
  462. });
  463.  
  464. it('the object does not have properties that excluded by default', () => {
  465. ['data'].forEach(prop =>
  466. assert.equal(typeof response[prop], 'undefined')
  467. );
  468. });
  469. });
  470. });
  471. });