How to use useAbsoluteUrls method in mountebank

Best JavaScript code snippet using mountebank

middlewareTest.js

Source:middlewareTest.js Github

copy

Full Screen

...18 response.send = send;19 response.setHeader = setHeader;20 });21 it('should not change header if not location header', function () {22 var middlewareFn = middleware.useAbsoluteUrls(9000);23 middlewareFn(request, response, next);24 response.setHeader('name', 'value');25 assert.ok(setHeader.wasCalledWith('name', 'value'));26 });27 it('should default location header to localhost with given port if no host header', function () {28 request.headers.host = '';29 var middlewareFn = middleware.useAbsoluteUrls(9000);30 middlewareFn(request, response, next);31 response.setHeader('location', '/');32 assert.ok(setHeader.wasCalledWith('location', 'http://localhost:9000/'));33 });34 it('should match location header regardless of case', function () {35 request.headers.host = '';36 var middlewareFn = middleware.useAbsoluteUrls(9000);37 middlewareFn(request, response, next);38 response.setHeader('LOCATION', '/');39 assert.ok(setHeader.wasCalledWith('LOCATION', 'http://localhost:9000/'));40 });41 it('should use the host header if present', function () {42 request.headers.host = 'mountebank.com';43 var middlewareFn = middleware.useAbsoluteUrls(9000);44 middlewareFn(request, response, next);45 response.setHeader('location', '/');46 assert.ok(setHeader.wasCalledWith('location', 'http://mountebank.com/'));47 });48 it('should do nothing if no response body links are present', function () {49 var middlewareFn = middleware.useAbsoluteUrls(9000);50 middlewareFn(request, response, next);51 response.send({ key: 'value' });52 assert.ok(send.wasCalledWith({ key: 'value' }));53 });54 it('should change response body links', function () {55 var middlewareFn = middleware.useAbsoluteUrls(9000);56 middlewareFn(request, response, next);57 response.send({ key: 'value', _links: { rel: { href: '/' } } });58 assert.ok(send.wasCalledWith({ key: 'value', _links: { rel: { href: 'http://localhost:9000/' } } }));59 });60 it('should change response nested body links', function () {61 var middlewareFn = middleware.useAbsoluteUrls(9000);62 middlewareFn(request, response, next);63 response.send({ key: { _links: { rel: { href: '/' } } } });64 assert.ok(send.wasCalledWith({ key: { _links: { rel: { href: 'http://localhost:9000/' } } } }));65 });66 it('should ignore null and undefined values', function () {67 var middlewareFn = middleware.useAbsoluteUrls(9000);68 middlewareFn(request, response, next);69 response.send({ first: null, second: undefined });70 assert.ok(send.wasCalledWith({ first: null }));71 });72 it('should not change html responses', function () {73 var middlewareFn = middleware.useAbsoluteUrls(9000);74 middlewareFn(request, response, next);75 response.send('<html _links="/"></html>');76 assert.ok(send.wasCalledWith('<html _links="/"></html>'));77 });78 });79 describe('#validateImposterExists', function () {80 it('should return 404 if imposter does not exist', function () {81 var middlewareFn = middleware.createImposterValidator({});82 request.params.id = 1;83 middlewareFn(request, response, next);84 assert.strictEqual(response.statusCode, 404);85 });86 it('should call next if imposter exists', function () {87 var imposters = { 1: {} },...

Full Screen

Full Screen

AdapterTest.js

Source:AdapterTest.js Github

copy

Full Screen

1'use strict';2let should = require('chai').should();3let Adapter = require('../../../src/adapters/base/Adapter')4describe('isBlacklisted', () => {5 let adapter;6 7 beforeEach(() => {8 adapter = new Adapter(); 9 });10 11 describe('when matching', () => {12 13 it('should return false', () => {14 let blacklist = ['sold'];15 adapter.blacklist = blacklist;16 17 adapter.isBlacklisted('bla foo sold bla').should.be.true;18 });19 20 it('should return false with multiple items', () => {21 let blacklist = ['sold', 'priceless'];22 adapter.blacklist = blacklist;23 24 adapter.isBlacklisted('bla foo sol priceless bla').should.be.true;25 });26 27 it('should ignore case', () => {28 let blacklist = ['soLD', 'PRICEless'];29 adapter.blacklist = blacklist;30 31 adapter.isBlacklisted('bla foo sold priceless bla').should.be.true;32 });33 34 });35 36 describe('when not matching', () => {37 38 it('should return false', () => {39 let blacklist = ['sold'];40 adapter.blacklist = blacklist;41 42 adapter.isBlacklisted('bla foo').should.be.false;43 });44 45 it('should return false for an empty array', () => {46 let blacklist = [];47 adapter.blacklist = blacklist;48 49 adapter.isBlacklisted('bla sold foo').should.be.false;50 });51 52 });53});54describe('extractUrl', () => {55 56 it('should extract the url correctly', () => {57 let text = '/expose/123.html';58 let baseUrl = 'https://www.google.de';59 let urlSuffix = '/abc?page=1';60 let useAbsoluteUrls = false;61 62 new Adapter().extractUrl(text, baseUrl, urlSuffix, useAbsoluteUrls).should.equal('https://www.google.de/expose/123.html');63 });64 65 it('should work when no urlSuffix is given', () => {66 let text = '/expose/123.html';67 let baseUrl = 'https://www.google.de';68 let urlSuffix = '';69 let useAbsoluteUrls = false;70 71 new Adapter().extractUrl(text, baseUrl, urlSuffix, useAbsoluteUrls).should.equal('https://www.google.de/expose/123.html');72 });73 74 it('should work for absolute urls', () => {75 let text = 'https://www.yahoo.de/expose/123.html';76 let baseUrl = 'https://www.google.de';77 let urlSuffix = '';78 let useAbsoluteUrls = true;79 80 new Adapter().extractUrl(text, baseUrl, urlSuffix, useAbsoluteUrls).should.equal('https://www.yahoo.de/expose/123.html');81 });82 83 it('should work when no url is given', () => {84 let text = '';85 let baseUrl = 'https://www.google.de';86 let urlSuffix = '/abc?page=1';87 let useAbsoluteUrls = false;88 89 new Adapter().extractUrl(text, baseUrl, urlSuffix, useAbsoluteUrls).should.equal('https://www.google.de/abc?page=1');90 });91 92});93describe('preparePageUrl', () => {94 95 it('should place the page at the right position', () => {96 let baseUrl = 'http://www.cuffaro-immobilien.de/immobilien/page/INSERTPAGE/?post_type=immomakler';97 98 new Adapter('cuffaro', baseUrl).preparePageUrl(15, baseUrl).should.equal('http://www.cuffaro-immobilien.de/immobilien/page/15/?post_type=immomakler');99 });100 101 it('should place the page at the end', () => {102 let baseUrl = 'http://www.cuffaro-immobilien.de/immobilien/page/?p=INSERTPAGE';103 104 new Adapter('cuffaro', baseUrl).preparePageUrl(0, baseUrl).should.equal('http://www.cuffaro-immobilien.de/immobilien/page/?p=0');105 });106 ...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1var mb = require('mountebank');2var port = 2525;3var imposter = {4 {5 {6 equals: {7 }8 }9 {10 is: {11 }12 }13 }14};15mb.create({ port: port, ipWhitelist: ['*'] }, imposter).then(function (server) {16 server.useAbsoluteUrls();17 server.get('/path', function (req, res) {18 res.send('Hello world!');19 });20});21mb imposter --port 2525 --protocol http --stub '{"predicates":[{"equals":{"method":"GET","path":"/"}}],"responses":[{"is":{"statusCode":200,"body":"Hello world!"}}]}'

Full Screen

Using AI Code Generation

copy

Full Screen

1var mb = require('mountebank');2var options = {3};4var mb = mb.create(options);5mb.start()6 .then(function () {7 console.log('mountebank is running');8 })9 .then(function () {10 return mb.post('/imposters', {11 stubs: [{12 responses: [{13 is: {14 headers: {15 },16 }17 }]18 }]19 });20 })21 .then(function (response) {22 return mb.get('/imposters/' + response.body.port + '?replayable=true');23 })24 .then(function (response) {25 console.log(response.body);26 })27 .then(function () {28 return mb.stop();29 })30 .then(function () {31 console.log('mountebank has stopped');32 })33 .catch(function (error) {34 console.error(error);35 });

Full Screen

Using AI Code Generation

copy

Full Screen

1var mb = require('mountebank');2mb.useAbsoluteUrls();3mb.start({4}, function () {5 console.log('mountebank started');6});

Full Screen

Using AI Code Generation

copy

Full Screen

1var mb = require('mountebank');2var imposter = mb.create({ port: 2525, allowInjection: true });3imposter.useAbsoluteUrls();4imposter.post('/test', function (request, response) {5 response.send(200, { message: 'Hello World' });6});7imposter.start();8The API is documented in the [API docs](

Full Screen

Using AI Code Generation

copy

Full Screen

1const mb = require('mountebank');2const port = 2525;3const imposterPort = 4545;4mb.create({port: port, pidfile: "mb.pid", logfile: "mb.log", ipWhitelist: ["*"]}, function () {5 mb.startImposter({protocol: 'http', port: imposterPort, stubs: [6 {7 {8 is: {9 headers: {10 },11 body: JSON.stringify({12 })13 }14 }15 }16 ]}, function (error, imposter) {17 mb.useAbsoluteUrls({port: imposterPort}, function () {18 console.log("Imposter running on port", imposterPort);19 });20 });21});22### create(options, callback)

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run mountebank automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful