UNPKG

@coding-blocks/jsonapi-server

Version:

A config driven NodeJS framework implementing json:api

228 lines (227 loc) 8.42 kB
<!doctype html> <html lang="en"> <head> <title>Code coverage report for lib/routes/find.js</title> <meta charset="utf-8" /> <link rel="stylesheet" href="../../prettify.css" /> <link rel="stylesheet" href="../../base.css" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <style type='text/css'> .coverage-summary .sorter { background-image: url(../../sort-arrow-sprite.png); } </style> </head> <body> <div class='wrapper'> <div class='pad1'> <h1> <a href="../../index.html">All files</a> / <a href="index.html">lib/routes</a> find.js </h1> <div class='clearfix'> <div class='fl pad1y space-right2'> <span class="strong">33.33% </span> <span class="quiet">Statements</span> <span class='fraction'>8/24</span> </div> <div class='fl pad1y space-right2'> <span class="strong">0% </span> <span class="quiet">Branches</span> <span class='fraction'>0/4</span> </div> <div class='fl pad1y space-right2'> <span class="strong">0% </span> <span class="quiet">Functions</span> <span class='fraction'>0/9</span> </div> <div class='fl pad1y space-right2'> <span class="strong">34.78% </span> <span class="quiet">Lines</span> <span class='fraction'>8/23</span> </div> </div> </div> <div class='status-line low'></div> <pre><table class="coverage"> <tr><td class="line-count quiet">1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55</td><td class="line-coverage quiet"><span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">1x</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">1x</span> <span class="cline-any cline-yes">1x</span> <span class="cline-any cline-yes">1x</span> <span class="cline-any cline-yes">1x</span> <span class="cline-any cline-yes">1x</span> <span class="cline-any cline-yes">1x</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">1x</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">'use strict' const findRoute = module.exports = { } &nbsp; const async = require('async') const helper = require('./helper.js') const router = require('../router.js') const filter = require('../filter.js') const postProcess = require('../postProcess.js') const responseHelper = require('../responseHelper.js') &nbsp; findRoute.register = <span class="fstat-no" title="function not covered" >()</span> =&gt; { <span class="cstat-no" title="statement not covered" > router.bindRoute({</span> verb: 'get', path: ':type/:id' }, <span class="fstat-no" title="function not covered" >(r</span>equest, resourceConfig, res) =&gt; { let resource let response &nbsp; <span class="cstat-no" title="statement not covered" > async.waterfall([</span> <span class="fstat-no" title="function not covered" > ca</span>llback =&gt; { <span class="cstat-no" title="statement not covered" > helper.verifyRequest(request, resourceConfig, res, 'find', callback)</span> }, function <span class="fstat-no" title="function not covered" >parseAndValidateFilter </span>(callback) { <span class="cstat-no" title="statement not covered" > return callback(filter.parseAndValidate(request))</span> }, <span class="fstat-no" title="function not covered" > ca</span>llback =&gt; { <span class="cstat-no" title="statement not covered" > resourceConfig.handlers.find(request, callback)</span> }, <span class="fstat-no" title="function not covered" > (r</span>esult, callback) =&gt; { <span class="cstat-no" title="statement not covered" > resource = result</span> <span class="cstat-no" title="statement not covered" > postProcess.fetchForeignKeys(request, resource, resourceConfig.attributes, callback)</span> }, <span class="fstat-no" title="function not covered" > ca</span>llback =&gt; { <span class="cstat-no" title="statement not covered" > responseHelper._enforceSchemaOnObject(resource, resourceConfig.attributes, callback)</span> }, <span class="fstat-no" title="function not covered" > (s</span>anitisedData, callback) =&gt; { <span class="cstat-no" title="statement not covered" > if (!sanitisedData) {</span> <span class="cstat-no" title="statement not covered" > return callback({ // eslint-disable-line standard/no-callback-literal</span> status: '404', code: 'EVERSION', title: 'Resource is not valid', detail: 'The requested resource does not conform to the API specification. This is usually the result of a versioning change.' }) } <span class="cstat-no" title="statement not covered" > response = responseHelper._generateResponse(request, resourceConfig, sanitisedData)</span> <span class="cstat-no" title="statement not covered" > response.included = [ ]</span> <span class="cstat-no" title="statement not covered" > postProcess.handle(request, response, callback)</span> } ], <span class="fstat-no" title="function not covered" >er</span>r =&gt; { <span class="cstat-no" title="statement not covered" > if (err) <span class="cstat-no" title="statement not covered" >return helper.handleError(request, res, err)</span></span> <span class="cstat-no" title="statement not covered" > return router.sendResponse(res, response, 200)</span> }) }) } &nbsp;</pre></td></tr> </table></pre> <div class='push'></div><!-- for sticky footer --> </div><!-- /wrapper --> <div class='footer quiet pad2 space-top1 center small'> Code coverage generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Sat Jan 27 2018 19:59:16 GMT+0530 (IST) </div> </div> <script src="../../prettify.js"></script> <script> window.onload = function () { if (typeof prettyPrint === 'function') { prettyPrint(); } }; </script> <script src="../../sorter.js"></script> </body> </html>