UNPKG

akamai-nginx

Version:

generate nginx config from akamai property

35 lines (25 loc) 1.21 kB
'use strict'; var _assert = require('assert'); var _assert2 = _interopRequireDefault(_assert); var _mocha = require('mocha'); var _contentType = require('../../src/criteria/contentType.js'); var _fs = require('fs'); var _fs2 = _interopRequireDefault(_fs); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } (0, _mocha.describe)('CriteriaContentType', function () { (0, _mocha.describe)('match any', function () { (0, _mocha.it)('should return expected lua', function (done) { _fs2.default.readFile(__dirname + '/contentType.papi.json', 'utf8', function (err, options) { if (err) { throw err; } var opts = JSON.parse(options); var expected = 'matches(ngx.header["Content-Type"], swapVars("' + opts.values[0] + '")) or matches(ngx.header["Content-Type"], swapVars("' + opts.values[1] + '"))'; var criteria = new _contentType.CriteriaContentType(opts); var actual = criteria.process(true, '*'); _assert2.default.equal(actual, expected); done(); }); }); }); });