Wrote a couple simple tests
This commit is contained in:
@@ -0,0 +1,23 @@
|
|||||||
|
name: Node.js CI
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Run test suites
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [16.x]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
cache: 'npm'
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm run build --if-present
|
||||||
|
- run: npm test
|
||||||
Generated
+8035
-6
File diff suppressed because it is too large
Load Diff
+3
-1
@@ -6,7 +6,8 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node server/server.js",
|
"start": "node server/server.js",
|
||||||
"dev": "npm run watch:server",
|
"dev": "npm run watch:server",
|
||||||
"watch:server": "nodemon . --ext js,jsx,json --ignore 'node_modules/*'"
|
"watch:server": "nodemon . --ext js,jsx,json --ignore 'node_modules/*'",
|
||||||
|
"test": "jest --coverage --collectCoverageFrom=server/**/*.{js,jsx}"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -31,6 +32,7 @@
|
|||||||
"sequelize": "^6.6.5"
|
"sequelize": "^6.6.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"jest": "^27.5.1",
|
||||||
"nodemon": "^2.0.12"
|
"nodemon": "^2.0.12"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ const route = async (req, res) => {
|
|||||||
//validate the given details
|
//validate the given details
|
||||||
const validateErr = await validateDetails(req.body);
|
const validateErr = await validateDetails(req.body);
|
||||||
if (validateErr) {
|
if (validateErr) {
|
||||||
return res.status(401).end(validateErr);
|
return res.status(401).send(validateErr);
|
||||||
}
|
}
|
||||||
|
|
||||||
//get the existing account
|
//get the existing account
|
||||||
@@ -29,6 +29,7 @@ const route = async (req, res) => {
|
|||||||
|
|
||||||
//compare passwords
|
//compare passwords
|
||||||
const compare = utils.promisify(bcrypt.compare);
|
const compare = utils.promisify(bcrypt.compare);
|
||||||
|
|
||||||
const match = await compare(req.body.password, account.hash);
|
const match = await compare(req.body.password, account.hash);
|
||||||
|
|
||||||
if (!match) {
|
if (!match) {
|
||||||
@@ -47,11 +48,12 @@ const route = async (req, res) => {
|
|||||||
return res.status(403).send('this account has been banned');
|
return res.status(403).send('this account has been banned');
|
||||||
}
|
}
|
||||||
|
|
||||||
//generate the JWT
|
//generate the JWTs
|
||||||
const token = tokenGenerate(account.index, account.email, account.username, account.type, account.admin, account.mod);
|
const tokens = tokenGenerate(account.index, account.email, account.username, account.type, account.admin, account.mod);
|
||||||
|
|
||||||
//finally
|
//finally
|
||||||
res.status(200).json(token);
|
res.status(200).json(tokens);
|
||||||
|
return null;
|
||||||
};
|
};
|
||||||
|
|
||||||
const validateDetails = async (body) => {
|
const validateDetails = async (body) => {
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ module.exports = (index, email, username, type, admin, mod) => {
|
|||||||
mod,
|
mod,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//these are strings
|
||||||
const accessToken = jwt.sign(content, process.env.SECRET_ACCESS, { expiresIn: '10m', issuer: 'auth' });
|
const accessToken = jwt.sign(content, process.env.SECRET_ACCESS, { expiresIn: '10m', issuer: 'auth' });
|
||||||
const refreshToken = jwt.sign(content, process.env.SECRET_REFRESH, { expiresIn: '30d', issuer: 'auth' });
|
const refreshToken = jwt.sign(content, process.env.SECRET_REFRESH, { expiresIn: '30d', issuer: 'auth' });
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,117 @@
|
|||||||
|
describe('POST /auth/login', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
jest.resetModules();
|
||||||
|
|
||||||
|
//fix util with jest (used by bcrypt's compare)
|
||||||
|
jest.doMock('util', () => ({
|
||||||
|
promisify: f => async () => f()
|
||||||
|
}));
|
||||||
|
|
||||||
|
//mock out bcrypt
|
||||||
|
jest.doMock('bcryptjs', () => ({
|
||||||
|
genSalt: async amount => {
|
||||||
|
expect(amount).toBe(11);
|
||||||
|
return 'salt';
|
||||||
|
},
|
||||||
|
hash: async (password, salt) => {
|
||||||
|
expect(password).toBe('password');
|
||||||
|
return 'hashed-password';
|
||||||
|
},
|
||||||
|
compare: (lhs, rhs) => {
|
||||||
|
return lhs === rhs;
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
|
||||||
|
//mock out jsonwebtoken
|
||||||
|
jest.doMock('jsonwebtoken', () => ({
|
||||||
|
sign: (content, secretAccess, opts) => {
|
||||||
|
return JSON.stringify(content);
|
||||||
|
},
|
||||||
|
|
||||||
|
verify: (token, secretAccess, callback) => {
|
||||||
|
return callback(null, JSON.parse(token));
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
|
//mock out the sequelize library
|
||||||
|
jest.doMock('sequelize', () => {
|
||||||
|
return {
|
||||||
|
Op: {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
//mock out the database object
|
||||||
|
jest.doMock('../../server/database', () => {
|
||||||
|
const mSequelize = {
|
||||||
|
authenticate: jest.fn(),
|
||||||
|
define: jest.fn(),
|
||||||
|
};
|
||||||
|
|
||||||
|
const actualSequelize = jest.requireActual('sequelize');
|
||||||
|
return { Sequelize: jest.fn(() => mSequelize), DataTypes: actualSequelize.DataTypes };
|
||||||
|
});
|
||||||
|
|
||||||
|
//mock out the database models
|
||||||
|
jest.doMock('../../server/database/models', () => ({
|
||||||
|
accounts: {
|
||||||
|
findOne: async (config) => { //can't find any (signup state)
|
||||||
|
expect(config?.where?.email).toBe('email@example.com');
|
||||||
|
return {
|
||||||
|
index: 0,
|
||||||
|
email: config?.where?.email,
|
||||||
|
username: 'username',
|
||||||
|
type: 'alpha',
|
||||||
|
admin: false,
|
||||||
|
mod: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
update: async (values, config) => {
|
||||||
|
//Do nothing
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
tokens: {
|
||||||
|
create: async (record) => {
|
||||||
|
//Do nothing
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Basic valid login attempt', async () => {
|
||||||
|
//arguments
|
||||||
|
const req = {
|
||||||
|
body: {
|
||||||
|
email: 'email@example.com',
|
||||||
|
password: 'password',
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const res = {
|
||||||
|
status: code => {
|
||||||
|
expect(code).toBe(200);
|
||||||
|
return {
|
||||||
|
json: tokens => {
|
||||||
|
//decode and analyze the JWT payload
|
||||||
|
const accessToken = JSON.parse(tokens.accessToken);
|
||||||
|
|
||||||
|
expect(accessToken.email).toBe('email@example.com');
|
||||||
|
expect(accessToken.username).toBe('username');
|
||||||
|
},
|
||||||
|
send: msg => { throw msg; },
|
||||||
|
end: () => null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//test
|
||||||
|
const route = require('../../server/auth/login');
|
||||||
|
|
||||||
|
const result = await route(req, res);
|
||||||
|
|
||||||
|
expect(result).toBe(null);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
describe('POST /auth/signup', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
jest.resetModules();
|
||||||
|
|
||||||
|
//mock out bcrypt
|
||||||
|
jest.doMock('bcryptjs', () => ({
|
||||||
|
genSalt: async amount => {
|
||||||
|
expect(amount).toBe(11);
|
||||||
|
return 'salt';
|
||||||
|
},
|
||||||
|
hash: async (password, salt) => {
|
||||||
|
expect(password).toBe('password');
|
||||||
|
return 'hashed-password';
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
|
||||||
|
//mock out nodemailer
|
||||||
|
jest.doMock('nodemailer', () => ({
|
||||||
|
createTransport: jest.fn(config => {
|
||||||
|
//TODO: test config?
|
||||||
|
return { //return a fake transport object
|
||||||
|
sendMail: async email => {
|
||||||
|
expect(email.to).toBe('email@example.com');
|
||||||
|
return { //return a fake info object
|
||||||
|
accepted: [ email.to ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
}));
|
||||||
|
|
||||||
|
//mock out the sequelize library
|
||||||
|
jest.doMock('sequelize', () => {
|
||||||
|
return {
|
||||||
|
Op: {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
//mock out the database object
|
||||||
|
jest.doMock('../../server/database', () => {
|
||||||
|
const mSequelize = {
|
||||||
|
authenticate: jest.fn(),
|
||||||
|
define: jest.fn(),
|
||||||
|
};
|
||||||
|
|
||||||
|
const actualSequelize = jest.requireActual('sequelize');
|
||||||
|
return { Sequelize: jest.fn(() => mSequelize), DataTypes: actualSequelize.DataTypes };
|
||||||
|
});
|
||||||
|
|
||||||
|
//mock out the database models
|
||||||
|
jest.doMock('../../server/database/models', () => ({
|
||||||
|
accounts: {
|
||||||
|
findOne: () => null //can't find any (signup state)
|
||||||
|
},
|
||||||
|
|
||||||
|
pendingSignups: {
|
||||||
|
upsert: jest.fn(async record => {
|
||||||
|
expect(record.email).toBe('email@example.com');
|
||||||
|
expect(record.username).toBe('username');
|
||||||
|
expect(record.hash).toBe('hashed-password');
|
||||||
|
expect(record.contact).toBe(true);
|
||||||
|
//token is a random UUID
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Basic valid signup attempt', async () => {
|
||||||
|
//arguments
|
||||||
|
const req = {
|
||||||
|
body: {
|
||||||
|
email: 'email@example.com',
|
||||||
|
username: 'username',
|
||||||
|
password: 'password',
|
||||||
|
contact: true
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const res = {
|
||||||
|
status: code => {
|
||||||
|
expect(code).toBe(200);
|
||||||
|
return {
|
||||||
|
send: msg => expect(msg).toBe('Validation email sent!'),
|
||||||
|
end: () => null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//test
|
||||||
|
const route = require('../../server/auth/signup');
|
||||||
|
|
||||||
|
const result = await route(req, res);
|
||||||
|
|
||||||
|
expect(result).toBe(null);
|
||||||
|
});
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user