Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
6a28554b00
|
|||
50c236ca4d
|
|||
b708d66586
|
|||
d1145e5f63
|
|||
487965b9aa
|
|||
108ae8f6fc
|
|||
7d0df02299
|
|||
26bbc075cf | |||
41d9424940 | |||
41a0f1839f |
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"extends": ["conventions", "prettier"],
|
"extends": ["conventions", "prettier"],
|
||||||
"plugins": ["prettier", "import", "unicorn"],
|
"plugins": ["prettier", "import", "unicorn"],
|
||||||
|
"parser": "@typescript-eslint/parser",
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"project": "./tsconfig.json"
|
"project": "./tsconfig.json"
|
||||||
},
|
},
|
||||||
|
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,6 +1,6 @@
|
|||||||
<!-- Please first discuss the change you wish to make via issue before making a change. It might avoid a waste of your time. -->
|
<!-- Please first discuss the change you wish to make via issue before making a change. It might avoid a waste of your time. -->
|
||||||
|
|
||||||
## What changes this PR introduce?
|
# What changes this PR introduce?
|
||||||
|
|
||||||
## List any relevant issue numbers
|
## List any relevant issue numbers
|
||||||
|
|
||||||
|
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@ -10,16 +10,16 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: 'ubuntu-latest'
|
runs-on: 'ubuntu-latest'
|
||||||
steps:
|
steps:
|
||||||
- uses: 'actions/checkout@v3.5.0'
|
- uses: 'actions/checkout@v3.5.3'
|
||||||
|
|
||||||
- name: 'Use Node.js'
|
- name: 'Setup Node.js'
|
||||||
uses: 'actions/setup-node@v3.6.0'
|
uses: 'actions/setup-node@v3.6.0'
|
||||||
with:
|
with:
|
||||||
node-version: 'lts/*'
|
node-version: '20.x'
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
|
|
||||||
- name: 'Install'
|
- name: 'Install dependencies'
|
||||||
run: 'npm install'
|
run: 'npm clean-install'
|
||||||
|
|
||||||
- name: 'Build'
|
- name: 'Build'
|
||||||
run: 'npm run build'
|
run: 'npm run build'
|
||||||
|
10
.github/workflows/lint.yml
vendored
10
.github/workflows/lint.yml
vendored
@ -10,16 +10,16 @@ jobs:
|
|||||||
lint:
|
lint:
|
||||||
runs-on: 'ubuntu-latest'
|
runs-on: 'ubuntu-latest'
|
||||||
steps:
|
steps:
|
||||||
- uses: 'actions/checkout@v3.5.0'
|
- uses: 'actions/checkout@v3.5.3'
|
||||||
|
|
||||||
- name: 'Use Node.js'
|
- name: 'Setup Node.js'
|
||||||
uses: 'actions/setup-node@v3.6.0'
|
uses: 'actions/setup-node@v3.6.0'
|
||||||
with:
|
with:
|
||||||
node-version: 'lts/*'
|
node-version: '20.x'
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
|
|
||||||
- name: 'Install'
|
- name: 'Install dependencies'
|
||||||
run: 'npm install'
|
run: 'npm clean-install'
|
||||||
|
|
||||||
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
|
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
|
||||||
- run: 'npm run lint:editorconfig'
|
- run: 'npm run lint:editorconfig'
|
||||||
|
18
.github/workflows/release.yml
vendored
18
.github/workflows/release.yml
vendored
@ -7,23 +7,31 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: 'ubuntu-latest'
|
runs-on: 'ubuntu-latest'
|
||||||
|
permissions:
|
||||||
|
contents: 'write'
|
||||||
|
issues: 'write'
|
||||||
|
pull-requests: 'write'
|
||||||
|
id-token: 'write'
|
||||||
steps:
|
steps:
|
||||||
- uses: 'actions/checkout@v3.5.0'
|
- uses: 'actions/checkout@v3.5.3'
|
||||||
|
|
||||||
- name: 'Use Node.js'
|
- name: 'Setup Node.js'
|
||||||
uses: 'actions/setup-node@v3.6.0'
|
uses: 'actions/setup-node@v3.6.0'
|
||||||
with:
|
with:
|
||||||
node-version: 'lts/*'
|
node-version: '20.x'
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
|
|
||||||
- name: 'Install'
|
- name: 'Install dependencies'
|
||||||
run: 'npm install'
|
run: 'npm clean-install'
|
||||||
|
|
||||||
- name: 'Build Package'
|
- name: 'Build Package'
|
||||||
run: 'npm run build'
|
run: 'npm run build'
|
||||||
|
|
||||||
- run: 'npm run build:typescript'
|
- run: 'npm run build:typescript'
|
||||||
|
|
||||||
|
- name: 'Verify the integrity of provenance attestations and registry signatures for installed dependencies'
|
||||||
|
run: 'npm audit signatures'
|
||||||
|
|
||||||
- name: 'Release'
|
- name: 'Release'
|
||||||
run: 'npm run release'
|
run: 'npm run release'
|
||||||
env:
|
env:
|
||||||
|
10
.github/workflows/test.yml
vendored
10
.github/workflows/test.yml
vendored
@ -10,16 +10,16 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
runs-on: 'ubuntu-latest'
|
runs-on: 'ubuntu-latest'
|
||||||
steps:
|
steps:
|
||||||
- uses: 'actions/checkout@v3.5.0'
|
- uses: 'actions/checkout@v3.5.3'
|
||||||
|
|
||||||
- name: 'Use Node.js'
|
- name: 'Setup Node.js'
|
||||||
uses: 'actions/setup-node@v3.6.0'
|
uses: 'actions/setup-node@v3.6.0'
|
||||||
with:
|
with:
|
||||||
node-version: 'lts/*'
|
node-version: '20.x'
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
|
|
||||||
- name: 'Install'
|
- name: 'Install dependencies'
|
||||||
run: 'npm install'
|
run: 'npm clean-install'
|
||||||
|
|
||||||
- name: 'Build'
|
- name: 'Build'
|
||||||
run: 'npm run build'
|
run: 'npm run build'
|
||||||
|
@ -1,4 +1,10 @@
|
|||||||
{
|
{
|
||||||
|
"config": {
|
||||||
|
"extends": "markdownlint/style/prettier",
|
||||||
|
"relative-links": true,
|
||||||
|
"default": true,
|
||||||
|
"MD033": false
|
||||||
|
},
|
||||||
"globs": ["**/*.{md,mdx}"],
|
"globs": ["**/*.{md,mdx}"],
|
||||||
"ignores": ["**/node_modules"],
|
"ignores": ["**/node_modules"],
|
||||||
"customRules": ["markdownlint-rule-relative-links"]
|
"customRules": ["markdownlint-rule-relative-links"]
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"default": true,
|
|
||||||
"relative-links": true,
|
|
||||||
"extends": "markdownlint/style/prettier",
|
|
||||||
"MD033": false,
|
|
||||||
"MD041": false
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"reporter": ["text", "cobertura"],
|
|
||||||
"src": "./build",
|
|
||||||
"all": true
|
|
||||||
}
|
|
1
.swcrc
1
.swcrc
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"sourceMaps": true,
|
||||||
"jsc": {
|
"jsc": {
|
||||||
"parser": {
|
"parser": {
|
||||||
"syntax": "typescript",
|
"syntax": "typescript",
|
||||||
|
9
.taprc
9
.taprc
@ -1,9 +0,0 @@
|
|||||||
ts: false
|
|
||||||
jsx: false
|
|
||||||
flow: false
|
|
||||||
check-coverage: false
|
|
||||||
coverage: false
|
|
||||||
timeout: 10000
|
|
||||||
|
|
||||||
files:
|
|
||||||
- 'build/**/*.test.js'
|
|
@ -60,7 +60,7 @@ representative at an online or offline event.
|
|||||||
|
|
||||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||||
reported to the community leaders responsible for enforcement at
|
reported to the community leaders responsible for enforcement at
|
||||||
contact@divlo.fr.
|
<contact@theoludwig.fr>.
|
||||||
All complaints will be reviewed and investigated promptly and fairly.
|
All complaints will be reviewed and investigated promptly and fairly.
|
||||||
|
|
||||||
All community leaders are obligated to respect the privacy and security of the
|
All community leaders are obligated to respect the privacy and security of the
|
||||||
|
@ -29,26 +29,4 @@ If you're adding new features to **Thream/socketio-jwt**, please include tests.
|
|||||||
|
|
||||||
## Commits
|
## Commits
|
||||||
|
|
||||||
The commit message guidelines respect [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional) and [Semantic Versioning](https://semver.org/) for releases.
|
The commit message guidelines adheres to [Conventional Commits](https://www.conventionalcommits.org/) and [Semantic Versioning](https://semver.org/) for releases.
|
||||||
|
|
||||||
### Types
|
|
||||||
|
|
||||||
Types define which kind of changes you made to the project.
|
|
||||||
|
|
||||||
| Types | Description |
|
|
||||||
| -------- | ------------------------------------------------------------------------------------------------------------ |
|
|
||||||
| feat | A new feature. |
|
|
||||||
| fix | A bug fix. |
|
|
||||||
| docs | Documentation only changes. |
|
|
||||||
| style | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc). |
|
|
||||||
| refactor | A code change that neither fixes a bug nor adds a feature. |
|
|
||||||
| perf | A code change that improves performance. |
|
|
||||||
| test | Adding missing tests or correcting existing tests. |
|
|
||||||
| build | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm). |
|
|
||||||
| ci | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs). |
|
|
||||||
| chore | Other changes that don't modify src or test files. |
|
|
||||||
| revert | Reverts a previous commit. |
|
|
||||||
|
|
||||||
### Scopes
|
|
||||||
|
|
||||||
Scopes define what part of the code changed.
|
|
||||||
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) Auth0, Inc. <support@auth0.com> (http://auth0.com) and Thream contributors
|
Copyright (c) Auth0, Inc. <support@auth0.com> (<https://auth0.com/>) and Thream contributors
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
8359
package-lock.json
generated
8359
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
73
package.json
73
package.json
@ -8,20 +8,25 @@
|
|||||||
"main": "build/index.js",
|
"main": "build/index.js",
|
||||||
"types": "build/index.d.ts",
|
"types": "build/index.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
"build"
|
"build",
|
||||||
|
"!**/*.test.js",
|
||||||
|
"!**/*.test.d.ts",
|
||||||
|
"!**/*.map"
|
||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.0.0"
|
"node": ">=16.0.0",
|
||||||
|
"npm": ">=9.0.0"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"provenance": true
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"socket",
|
"socket",
|
||||||
"socket.io",
|
"socket.io",
|
||||||
"jwt"
|
"jwt"
|
||||||
],
|
],
|
||||||
"author": "Divlo <contact@divlo.fr>",
|
"author": "Théo LUDWIG <contact@theoludwig.fr>",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Thream/socketio-jwt"
|
"url": "https://github.com/Thream/socketio-jwt"
|
||||||
@ -37,10 +42,10 @@
|
|||||||
"lint:commit": "commitlint",
|
"lint:commit": "commitlint",
|
||||||
"lint:editorconfig": "editorconfig-checker",
|
"lint:editorconfig": "editorconfig-checker",
|
||||||
"lint:markdown": "markdownlint-cli2",
|
"lint:markdown": "markdownlint-cli2",
|
||||||
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
|
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
|
||||||
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
"lint:prettier": "prettier . --check",
|
||||||
"lint:staged": "lint-staged",
|
"lint:staged": "lint-staged",
|
||||||
"test": "c8 tap",
|
"test": "cross-env NODE_ENV=test node --enable-source-maps --test build/",
|
||||||
"release": "semantic-release",
|
"release": "semantic-release",
|
||||||
"postinstall": "husky install",
|
"postinstall": "husky install",
|
||||||
"prepublishOnly": "pinst --disable",
|
"prepublishOnly": "pinst --disable",
|
||||||
@ -50,41 +55,39 @@
|
|||||||
"socket.io": ">=3.0.0"
|
"socket.io": ">=3.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jsonwebtoken": "9.0.0"
|
"jsonwebtoken": "9.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "17.5.1",
|
"@commitlint/cli": "17.6.7",
|
||||||
"@commitlint/config-conventional": "17.4.4",
|
"@commitlint/config-conventional": "17.6.7",
|
||||||
"@swc/cli": "0.1.62",
|
"@swc/cli": "0.1.62",
|
||||||
"@swc/core": "1.3.44",
|
"@swc/core": "1.3.70",
|
||||||
"@tsconfig/strictest": "2.0.0",
|
"@tsconfig/strictest": "2.0.1",
|
||||||
"@types/jsonwebtoken": "9.0.1",
|
"@types/jsonwebtoken": "9.0.2",
|
||||||
"@types/node": "18.15.11",
|
"@types/node": "20.4.3",
|
||||||
"@types/tap": "15.0.8",
|
"@typescript-eslint/eslint-plugin": "6.1.0",
|
||||||
"@typescript-eslint/eslint-plugin": "5.57.0",
|
"@typescript-eslint/parser": "6.1.0",
|
||||||
"@typescript-eslint/parser": "5.57.0",
|
"axios": "1.4.0",
|
||||||
"axios": "1.3.4",
|
"cross-env": "7.0.3",
|
||||||
"c8": "7.13.0",
|
"editorconfig-checker": "5.1.1",
|
||||||
"editorconfig-checker": "5.0.1",
|
"eslint": "8.45.0",
|
||||||
"eslint": "8.37.0",
|
"eslint-config-conventions": "11.0.1",
|
||||||
"eslint-config-conventions": "8.0.0",
|
|
||||||
"eslint-config-prettier": "8.8.0",
|
"eslint-config-prettier": "8.8.0",
|
||||||
"eslint-plugin-import": "2.27.5",
|
"eslint-plugin-import": "2.27.5",
|
||||||
"eslint-plugin-prettier": "4.2.1",
|
"eslint-plugin-prettier": "5.0.0",
|
||||||
"eslint-plugin-promise": "6.1.1",
|
"eslint-plugin-promise": "6.1.1",
|
||||||
"eslint-plugin-unicorn": "46.0.0",
|
"eslint-plugin-unicorn": "48.0.0",
|
||||||
"fastify": "4.15.0",
|
"fastify": "4.20.0",
|
||||||
"husky": "8.0.3",
|
"husky": "8.0.3",
|
||||||
"lint-staged": "13.2.0",
|
"lint-staged": "13.2.3",
|
||||||
"markdownlint-cli2": "0.6.0",
|
"markdownlint-cli2": "0.8.1",
|
||||||
"markdownlint-rule-relative-links": "1.1.2",
|
"markdownlint-rule-relative-links": "2.1.0",
|
||||||
"pinst": "3.0.0",
|
"pinst": "3.0.0",
|
||||||
"prettier": "2.8.7",
|
"prettier": "3.0.0",
|
||||||
"rimraf": "4.4.1",
|
"rimraf": "5.0.1",
|
||||||
"semantic-release": "21.0.1",
|
"semantic-release": "21.0.7",
|
||||||
"socket.io": "4.6.1",
|
"socket.io": "4.7.1",
|
||||||
"socket.io-client": "4.6.1",
|
"socket.io-client": "4.7.1",
|
||||||
"tap": "16.3.4",
|
"typescript": "5.1.6"
|
||||||
"typescript": "5.0.3"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,12 @@ export const isUnauthorizedError = (
|
|||||||
error: unknown
|
error: unknown
|
||||||
): error is UnauthorizedError => {
|
): error is UnauthorizedError => {
|
||||||
return (
|
return (
|
||||||
error instanceof UnauthorizedError &&
|
typeof error === 'object' &&
|
||||||
|
error != null &&
|
||||||
|
'data' in error &&
|
||||||
|
typeof error.data === 'object' &&
|
||||||
|
error.data != null &&
|
||||||
|
'type' in error.data &&
|
||||||
error.data.type === 'UnauthorizedError'
|
error.data.type === 'UnauthorizedError'
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
import tap from 'tap'
|
import test from 'node:test'
|
||||||
|
import assert from 'node:assert/strict'
|
||||||
|
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
import type { Socket } from 'socket.io-client'
|
import type { Socket } from 'socket.io-client'
|
||||||
import { io } from 'socket.io-client'
|
import { io } from 'socket.io-client'
|
||||||
@ -24,7 +26,7 @@ const secretCallback = async (): Promise<string> => {
|
|||||||
return 'somesecret'
|
return 'somesecret'
|
||||||
}
|
}
|
||||||
|
|
||||||
await tap.test('authorize', async (t) => {
|
await test('authorize', async (t) => {
|
||||||
await t.test('with secret as string in options', async (t) => {
|
await t.test('with secret as string in options', async (t) => {
|
||||||
let token = ''
|
let token = ''
|
||||||
let socket: Socket | null = null
|
let socket: Socket | null = null
|
||||||
@ -40,71 +42,76 @@ await tap.test('authorize', async (t) => {
|
|||||||
await fixtureStop()
|
await fixtureStop()
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error with no token provided', (t) => {
|
await t.test('should emit error with no token provided', () => {
|
||||||
t.plan(4)
|
|
||||||
socket = io(API_URL)
|
socket = io(API_URL)
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.equal(isUnauthorizedError(error), true)
|
assert.strictEqual(isUnauthorizedError(error), true)
|
||||||
if (isUnauthorizedError(error)) {
|
if (isUnauthorizedError(error)) {
|
||||||
t.equal(error.data.message, 'no token provided')
|
assert.strictEqual(error.data.message, 'no token provided')
|
||||||
t.equal(error.data.code, 'credentials_required')
|
assert.strictEqual(error.data.code, 'credentials_required')
|
||||||
|
assert.ok(true)
|
||||||
|
} else {
|
||||||
|
assert.fail('should be unauthorized error')
|
||||||
}
|
}
|
||||||
t.pass()
|
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error with bad token format', (t) => {
|
await t.test('should emit error with bad token format', () => {
|
||||||
t.plan(4)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: 'testing' }
|
auth: { token: 'testing' }
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.equal(isUnauthorizedError(error), true)
|
assert.strictEqual(isUnauthorizedError(error), true)
|
||||||
if (isUnauthorizedError(error)) {
|
if (isUnauthorizedError(error)) {
|
||||||
t.equal(error.data.message, 'Format is Authorization: Bearer [token]')
|
assert.strictEqual(
|
||||||
t.equal(error.data.code, 'credentials_bad_format')
|
error.data.message,
|
||||||
|
'Format is Authorization: Bearer [token]'
|
||||||
|
)
|
||||||
|
assert.strictEqual(error.data.code, 'credentials_bad_format')
|
||||||
|
assert.ok(true)
|
||||||
|
} else {
|
||||||
|
assert.fail('should be unauthorized error')
|
||||||
}
|
}
|
||||||
t.pass()
|
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error with unauthorized handshake', (t) => {
|
await t.test('should emit error with unauthorized handshake', () => {
|
||||||
t.plan(4)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: 'Bearer testing' }
|
auth: { token: 'Bearer testing' }
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.equal(isUnauthorizedError(error), true)
|
assert.strictEqual(isUnauthorizedError(error), true)
|
||||||
if (isUnauthorizedError(error)) {
|
if (isUnauthorizedError(error)) {
|
||||||
t.equal(
|
assert.strictEqual(
|
||||||
error.data.message,
|
error.data.message,
|
||||||
'Unauthorized: Token is missing or invalid Bearer'
|
'Unauthorized: Token is missing or invalid Bearer'
|
||||||
)
|
)
|
||||||
t.equal(error.data.code, 'invalid_token')
|
assert.strictEqual(error.data.code, 'invalid_token')
|
||||||
|
assert.ok(true)
|
||||||
|
} else {
|
||||||
|
assert.fail('should be unauthorized error')
|
||||||
}
|
}
|
||||||
t.pass()
|
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should connect the user', (t) => {
|
await t.test('should connect the user', () => {
|
||||||
t.plan(1)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: `Bearer ${token}` }
|
auth: { token: `Bearer ${token}` }
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.pass()
|
assert.ok(true)
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.fail(error.message)
|
assert.fail(error.message)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@ -124,71 +131,76 @@ await tap.test('authorize', async (t) => {
|
|||||||
await fixtureStop()
|
await fixtureStop()
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error with no token provided', (t) => {
|
await t.test('should emit error with no token provided', () => {
|
||||||
t.plan(4)
|
|
||||||
socket = io(API_URL)
|
socket = io(API_URL)
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.equal(isUnauthorizedError(error), true)
|
assert.strictEqual(isUnauthorizedError(error), true)
|
||||||
if (isUnauthorizedError(error)) {
|
if (isUnauthorizedError(error)) {
|
||||||
t.equal(error.data.message, 'no token provided')
|
assert.strictEqual(error.data.message, 'no token provided')
|
||||||
t.equal(error.data.code, 'credentials_required')
|
assert.strictEqual(error.data.code, 'credentials_required')
|
||||||
|
assert.ok(true)
|
||||||
|
} else {
|
||||||
|
assert.fail('should be unauthorized error')
|
||||||
}
|
}
|
||||||
t.pass()
|
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error with bad token format', (t) => {
|
await t.test('should emit error with bad token format', () => {
|
||||||
t.plan(4)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: 'testing' }
|
auth: { token: 'testing' }
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.equal(isUnauthorizedError(error), true)
|
assert.strictEqual(isUnauthorizedError(error), true)
|
||||||
if (isUnauthorizedError(error)) {
|
if (isUnauthorizedError(error)) {
|
||||||
t.equal(error.data.message, 'Format is Authorization: Bearer [token]')
|
assert.strictEqual(
|
||||||
t.equal(error.data.code, 'credentials_bad_format')
|
error.data.message,
|
||||||
|
'Format is Authorization: Bearer [token]'
|
||||||
|
)
|
||||||
|
assert.strictEqual(error.data.code, 'credentials_bad_format')
|
||||||
|
assert.ok(true)
|
||||||
|
} else {
|
||||||
|
assert.fail('should be unauthorized error')
|
||||||
}
|
}
|
||||||
t.pass()
|
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error with unauthorized handshake', (t) => {
|
await t.test('should emit error with unauthorized handshake', () => {
|
||||||
t.plan(4)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: 'Bearer testing' }
|
auth: { token: 'Bearer testing' }
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.equal(isUnauthorizedError(error), true)
|
assert.strictEqual(isUnauthorizedError(error), true)
|
||||||
if (isUnauthorizedError(error)) {
|
if (isUnauthorizedError(error)) {
|
||||||
t.equal(
|
assert.strictEqual(
|
||||||
error.data.message,
|
error.data.message,
|
||||||
'Unauthorized: Token is missing or invalid Bearer'
|
'Unauthorized: Token is missing or invalid Bearer'
|
||||||
)
|
)
|
||||||
t.equal(error.data.code, 'invalid_token')
|
assert.strictEqual(error.data.code, 'invalid_token')
|
||||||
|
assert.ok(true)
|
||||||
|
} else {
|
||||||
|
assert.fail('should be unauthorized error')
|
||||||
}
|
}
|
||||||
t.pass()
|
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should connect the user', (t) => {
|
await t.test('should connect the user', () => {
|
||||||
t.plan(1)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: `Bearer ${token}` }
|
auth: { token: `Bearer ${token}` }
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.pass()
|
assert.ok(true)
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.fail(error.message)
|
assert.fail(error.message)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@ -221,104 +233,107 @@ await tap.test('authorize', async (t) => {
|
|||||||
await fixtureStop()
|
await fixtureStop()
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error with no token provided', (t) => {
|
await t.test('should emit error with no token provided', () => {
|
||||||
t.plan(4)
|
|
||||||
socket = io(API_URL)
|
socket = io(API_URL)
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.equal(isUnauthorizedError(error), true)
|
assert.strictEqual(isUnauthorizedError(error), true)
|
||||||
if (isUnauthorizedError(error)) {
|
if (isUnauthorizedError(error)) {
|
||||||
t.equal(error.data.message, 'no token provided')
|
assert.strictEqual(error.data.message, 'no token provided')
|
||||||
t.equal(error.data.code, 'credentials_required')
|
assert.strictEqual(error.data.code, 'credentials_required')
|
||||||
|
assert.ok(true)
|
||||||
|
} else {
|
||||||
|
assert.fail('should be unauthorized error')
|
||||||
}
|
}
|
||||||
t.pass()
|
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error with bad token format', (t) => {
|
await t.test('should emit error with bad token format', () => {
|
||||||
t.plan(4)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: 'testing' }
|
auth: { token: 'testing' }
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.equal(isUnauthorizedError(error), true)
|
assert.strictEqual(isUnauthorizedError(error), true)
|
||||||
if (isUnauthorizedError(error)) {
|
if (isUnauthorizedError(error)) {
|
||||||
t.equal(error.data.message, 'Format is Authorization: Bearer [token]')
|
assert.strictEqual(
|
||||||
t.equal(error.data.code, 'credentials_bad_format')
|
error.data.message,
|
||||||
|
'Format is Authorization: Bearer [token]'
|
||||||
|
)
|
||||||
|
assert.strictEqual(error.data.code, 'credentials_bad_format')
|
||||||
|
assert.ok(true)
|
||||||
|
} else {
|
||||||
|
assert.fail('should be unauthorized error')
|
||||||
}
|
}
|
||||||
t.pass()
|
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error with unauthorized handshake', (t) => {
|
await t.test('should emit error with unauthorized handshake', () => {
|
||||||
t.plan(4)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: 'Bearer testing' }
|
auth: { token: 'Bearer testing' }
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.equal(isUnauthorizedError(error), true)
|
assert.strictEqual(isUnauthorizedError(error), true)
|
||||||
if (isUnauthorizedError(error)) {
|
if (isUnauthorizedError(error)) {
|
||||||
t.equal(
|
assert.strictEqual(
|
||||||
error.data.message,
|
error.data.message,
|
||||||
'Unauthorized: Token is missing or invalid Bearer'
|
'Unauthorized: Token is missing or invalid Bearer'
|
||||||
)
|
)
|
||||||
t.equal(error.data.code, 'invalid_token')
|
assert.strictEqual(error.data.code, 'invalid_token')
|
||||||
|
assert.ok(true)
|
||||||
|
} else {
|
||||||
|
assert.fail('should be unauthorized error')
|
||||||
}
|
}
|
||||||
t.pass()
|
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should connect the user', (t) => {
|
await t.test('should connect the user', () => {
|
||||||
t.plan(1)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: `Bearer ${token}` }
|
auth: { token: `Bearer ${token}` }
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.pass()
|
assert.ok(true)
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.fail(error.message)
|
assert.fail(error.message)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should contains user properties', (t) => {
|
await t.test('should contains user properties', () => {
|
||||||
t.plan(2)
|
|
||||||
const socketServer = getSocket()
|
const socketServer = getSocket()
|
||||||
socketServer?.on('connection', (client: any) => {
|
socketServer?.on('connection', (client: any) => {
|
||||||
t.equal(client.user.email, basicProfile.email)
|
assert.strictEqual(client.user.email, basicProfile.email)
|
||||||
t.pass()
|
assert.ok(true)
|
||||||
})
|
})
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: `Bearer ${token}` }
|
auth: { token: `Bearer ${token}` }
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
t.fail(error.message)
|
assert.fail(error.message)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await t.test('should emit error when user validation fails', (t) => {
|
await t.test('should emit error when user validation fails', () => {
|
||||||
t.plan(2)
|
|
||||||
socket = io(API_URL, {
|
socket = io(API_URL, {
|
||||||
auth: { token: `Bearer ${wrongToken}` }
|
auth: { token: `Bearer ${wrongToken}` }
|
||||||
})
|
})
|
||||||
socket.on('connect_error', async (error) => {
|
socket.on('connect_error', async (error) => {
|
||||||
try {
|
try {
|
||||||
t.equal(error.message, 'Check Field validation failed')
|
assert.strictEqual(error.message, 'Check Field validation failed')
|
||||||
t.pass()
|
assert.ok(true)
|
||||||
} catch {
|
} catch {
|
||||||
t.fail()
|
assert.fail(error.message)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
socket.on('connect', async () => {
|
socket.on('connect', async () => {
|
||||||
t.fail()
|
assert.fail('should not connect')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Reference in New Issue
Block a user