Merge branch 'v2.1-dev' as v2.1.2
[squeep-api-dingus] / test / lib / router.js
index 8a9d1e26f8e1e502cc5b0e164bb78d56ec457785..4047b16ad3ba4dd74e4ba2e9f6929c4b4d62f626 100644 (file)
@@ -1,12 +1,10 @@
-/* eslint-disable capitalized-comments */
-/* eslint-env mocha */
 'use strict';
 
-const assert = require('assert');
-const sinon = require('sinon'); // eslint-disable-line node/no-unpublished-require
+const assert = require('node:assert');
+const sinon = require('sinon');
 const Router = require('../../lib/router');
 const PathParameter = require('../../lib/router/path-parameter');
-const { DingusError } = require('../../lib/errors');
+const { DingusError, RouterNoPathError, RouterNoMethodError } = require('../../lib/errors');
 
 const noExpectedException = 'did not get expected exception';
 
@@ -260,7 +258,7 @@ describe('Router', function () {
         router.on('FLARP', urlPath, stubHandler);
         assert.fail('expected an exception');
       } catch (e) {
-        assert.strictEqual(e.name, 'DingusError');
+        assert(e instanceof DingusError);
         assert.strictEqual(e.message, 'invalid method \'FLARP\'');
       }
     });
@@ -311,8 +309,7 @@ describe('Router', function () {
         router.lookup(method, path, ctx);
         assert.fail(noExpectedException);
       } catch (e) {
-        assert(e instanceof DingusError);
-        assert.strictEqual(e.message, 'NoPath');
+        assert(e instanceof RouterNoPathError);
       }
     });
     it('finds handler', function () {
@@ -353,8 +350,7 @@ describe('Router', function () {
         router.lookup(method, path, ctx);
         assert.fail(noExpectedException);
       } catch (e) {
-        assert(e instanceof DingusError);
-        assert.strictEqual(e.message, 'NoMethod');
+        assert(e instanceof RouterNoMethodError);
       }
     });
     it('does not lookup non-existent path', async function () {
@@ -365,8 +361,7 @@ describe('Router', function () {
         router.lookup(method, path, ctx);
         assert.fail(noExpectedException);
       } catch (e) {
-        assert(e instanceof DingusError);
-        assert.strictEqual(e.message, 'NoPath');
+        assert(e instanceof RouterNoPathError);
       }
     });