open-consul/ui/packages/consul-ui/tests/unit/utils/routing/walk-test.js

43 lines
896 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { walk } from 'consul-ui/utils/routing/walk';
import { module, test } from 'qunit';
import sinon from 'sinon';
module('Unit | Utility | routing/walk', function () {
test('it walks down deep routes', function (assert) {
const route = sinon.stub();
const Router = {
route: function (name, options, cb) {
route();
if (cb) {
cb.apply(this, []);
}
},
};
walk.apply(Router, [
{
route: {
_options: {
path: '/:path',
},
next: {
_options: {
path: '/:path',
},
inside: {
_options: {
path: '/*path',
},
},
},
},
},
]);
assert.equal(route.callCount, 3);
});
});