@tomei/sso 0.2.2 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.commitlintrc.json +22 -22
- package/.prettierrc +4 -4
- package/Jenkinsfile +46 -0
- package/README.md +23 -23
- package/__tests__/unit/components/login-history/login-history.repository.spec.ts +95 -95
- package/__tests__/unit/components/login-user/login-user.spec.ts +223 -223
- package/__tests__/unit/components/login-user/user.repository.spec.ts +81 -81
- package/__tests__/unit/components/password-hash/password-hash.service.spec.ts +31 -32
- package/__tests__/unit/components/system-access/system-access.repository.spec.ts +78 -78
- package/__tests__/unit/redis-client/redis.service.spec.ts +23 -23
- package/__tests__/unit/session/session.service.spec.ts +27 -27
- package/create-sso-user.sql +39 -39
- package/dist/__tests__/unit/components/login-history/login-history.repository.spec.d.ts +1 -1
- package/dist/__tests__/unit/components/login-history/login-history.repository.spec.js +98 -98
- package/dist/__tests__/unit/components/login-user/login-user.spec.d.ts +1 -1
- package/dist/__tests__/unit/components/login-user/login-user.spec.js +207 -207
- package/dist/__tests__/unit/components/login-user/login-user.spec.js.map +1 -1
- package/dist/__tests__/unit/components/login-user/user.repository.spec.d.ts +1 -1
- package/dist/__tests__/unit/components/login-user/user.repository.spec.js +77 -77
- package/dist/__tests__/unit/components/password-hash/password-hash.service.spec.d.ts +1 -1
- package/dist/__tests__/unit/components/password-hash/password-hash.service.spec.js +37 -37
- package/dist/__tests__/unit/components/password-hash/password-hash.service.spec.js.map +1 -1
- package/dist/__tests__/unit/components/system/system.repository.spec.d.ts +1 -1
- package/dist/__tests__/unit/components/system/system.repository.spec.js +84 -84
- package/dist/__tests__/unit/components/system-access/system-access.repository.spec.d.ts +1 -1
- package/dist/__tests__/unit/components/system-access/system-access.repository.spec.js +74 -74
- package/dist/__tests__/unit/redis-client/redis.service.spec.d.ts +1 -1
- package/dist/__tests__/unit/redis-client/redis.service.spec.js +31 -31
- package/dist/__tests__/unit/session/session.service.spec.d.ts +1 -1
- package/dist/__tests__/unit/session/session.service.spec.js +35 -35
- package/dist/index.d.ts +1 -1
- package/dist/index.js +17 -17
- package/dist/src/components/index.d.ts +7 -7
- package/dist/src/components/index.js +23 -23
- package/dist/src/components/login-history/index.d.ts +1 -1
- package/dist/src/components/login-history/index.js +17 -17
- package/dist/src/components/login-history/login-history.repository.d.ts +9 -9
- package/dist/src/components/login-history/login-history.repository.js +49 -49
- package/dist/src/components/login-user/index.d.ts +3 -3
- package/dist/src/components/login-user/index.js +19 -19
- package/dist/src/components/login-user/interfaces/index.d.ts +1 -1
- package/dist/src/components/login-user/interfaces/index.js +17 -17
- package/dist/src/components/login-user/interfaces/user-info.interface.d.ts +9 -9
- package/dist/src/components/login-user/interfaces/user-info.interface.js +2 -2
- package/dist/src/components/login-user/login-user.d.ts +41 -41
- package/dist/src/components/login-user/login-user.js +332 -332
- package/dist/src/components/login-user/user.repository.d.ts +9 -9
- package/dist/src/components/login-user/user.repository.js +49 -49
- package/dist/src/components/password-hash/index.d.ts +2 -2
- package/dist/src/components/password-hash/index.js +18 -18
- package/dist/src/components/password-hash/interfaces/index.d.ts +1 -1
- package/dist/src/components/password-hash/interfaces/index.js +17 -17
- package/dist/src/components/password-hash/interfaces/password-hash-service.interface.d.ts +4 -4
- package/dist/src/components/password-hash/interfaces/password-hash-service.interface.js +2 -2
- package/dist/src/components/password-hash/password-hash.service.d.ts +6 -6
- package/dist/src/components/password-hash/password-hash.service.js +27 -27
- package/dist/src/components/system/index.d.ts +1 -1
- package/dist/src/components/system/index.js +17 -17
- package/dist/src/components/system/system.repository.d.ts +9 -9
- package/dist/src/components/system/system.repository.js +49 -49
- package/dist/src/components/system-access/index.d.ts +1 -1
- package/dist/src/components/system-access/index.js +17 -17
- package/dist/src/components/system-access/system-access.repository.d.ts +9 -9
- package/dist/src/components/system-access/system-access.repository.js +49 -49
- package/dist/src/components/user-group/index.d.ts +1 -1
- package/dist/src/components/user-group/index.js +17 -17
- package/dist/src/components/user-group/user-group.repository.d.ts +9 -9
- package/dist/src/components/user-group/user-group.repository.js +49 -49
- package/dist/src/components/user-user-group/index.d.ts +1 -1
- package/dist/src/components/user-user-group/index.js +17 -17
- package/dist/src/components/user-user-group/user-user-group.repository.d.ts +9 -9
- package/dist/src/components/user-user-group/user-user-group.repository.js +49 -49
- package/dist/src/index.d.ts +6 -6
- package/dist/src/index.js +23 -23
- package/dist/src/interfaces/index.d.ts +2 -2
- package/dist/src/interfaces/index.js +18 -18
- package/dist/src/interfaces/system-login.interface.d.ts +6 -6
- package/dist/src/interfaces/system-login.interface.js +2 -2
- package/dist/src/interfaces/user-session.interface.d.ts +4 -4
- package/dist/src/interfaces/user-session.interface.js +2 -2
- package/dist/src/mail/index.d.ts +2 -2
- package/dist/src/mail/index.js +18 -18
- package/dist/src/mail/interfaces/index.d.ts +2 -2
- package/dist/src/mail/interfaces/index.js +18 -18
- package/dist/src/mail/interfaces/send-mail.interface.d.ts +8 -8
- package/dist/src/mail/interfaces/send-mail.interface.js +2 -2
- package/dist/src/mail/interfaces/send-new-login-alert.interface.d.ts +6 -6
- package/dist/src/mail/interfaces/send-new-login-alert.interface.js +2 -2
- package/dist/src/mail/mail.d.ts +7 -7
- package/dist/src/mail/mail.js +48 -48
- package/dist/src/mail/mail.service.d.ts +7 -7
- package/dist/src/mail/mail.service.js +41 -41
- package/dist/src/prisma-client/__mocks__/prisma.d.ts +3 -3
- package/dist/src/prisma-client/__mocks__/prisma.js +13 -13
- package/dist/src/prisma-client/client.d.ts +3 -3
- package/dist/src/prisma-client/client.js +5 -5
- package/dist/src/prisma-client/index.d.ts +1 -1
- package/dist/src/prisma-client/index.js +17 -17
- package/dist/src/redis-client/__mocks__/jest-initial-setup.d.ts +1 -1
- package/dist/src/redis-client/__mocks__/jest-initial-setup.js +4 -4
- package/dist/src/redis-client/__mocks__/redis-mock.d.ts +2 -2
- package/dist/src/redis-client/__mocks__/redis-mock.js +22 -22
- package/dist/src/redis-client/index.d.ts +1 -1
- package/dist/src/redis-client/index.js +17 -17
- package/dist/src/redis-client/redis.service.d.ts +7 -7
- package/dist/src/redis-client/redis.service.js +55 -55
- package/dist/src/session/index.d.ts +2 -2
- package/dist/src/session/index.js +18 -18
- package/dist/src/session/interfaces/index.d.ts +1 -1
- package/dist/src/session/interfaces/index.js +17 -17
- package/dist/src/session/interfaces/session-service.interface.d.ts +5 -5
- package/dist/src/session/interfaces/session-service.interface.js +2 -2
- package/dist/src/session/session.service.d.ts +9 -9
- package/dist/src/session/session.service.js +51 -51
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +69 -69
- package/sampledotenv +7 -7
- package/src/components/index.ts +7 -7
- package/src/components/login-history/index.ts +1 -1
- package/src/components/login-history/login-history.repository.ts +33 -33
- package/src/components/login-user/index.ts +4 -4
- package/src/components/login-user/interfaces/user-info.interface.ts +9 -9
- package/src/components/login-user/login-user.ts +1 -1
- package/src/components/login-user/user.repository.ts +33 -33
- package/src/components/password-hash/index.ts +2 -2
- package/src/components/password-hash/interfaces/password-hash-service.interface.ts +4 -4
- package/src/components/password-hash/password-hash.service.ts +14 -14
- package/src/components/system/index.ts +1 -1
- package/src/components/system/system.repository.ts +33 -33
- package/src/components/system-access/index.ts +1 -1
- package/src/components/system-access/system-access.repository.ts +33 -33
- package/src/components/user-group/user-group.repository.ts +33 -33
- package/src/components/user-user-group/user-user-group.repository.ts +33 -33
- package/src/index.ts +7 -7
- package/src/interfaces/index.ts +2 -2
- package/src/interfaces/system-login.interface.ts +6 -6
- package/src/interfaces/user-session.interface.ts +5 -5
- package/src/mail/index.ts +2 -2
- package/src/mail/interfaces/index.ts +2 -2
- package/src/mail/interfaces/send-mail.interface.ts +8 -8
- package/src/mail/interfaces/send-new-login-alert.interface.ts +6 -6
- package/src/mail/mail.service.ts +33 -33
- package/src/mail/mail.ts +40 -40
- package/src/prisma-client/__mocks__/prisma.ts +15 -15
- package/src/prisma-client/client.ts +3 -3
- package/src/redis-client/__mocks__/jest-initial-setup.ts +2 -2
- package/src/redis-client/__mocks__/redis-mock.ts +28 -28
- package/src/session/index.ts +2 -2
- package/src/session/interfaces/index.ts +1 -1
- package/src/session/interfaces/session-service.interface.ts +6 -6
- package/src/session/session.service.ts +45 -45
- package/tsconfig.build.json +5 -5
package/.commitlintrc.json
CHANGED
@@ -1,22 +1,22 @@
|
|
1
|
-
{
|
2
|
-
"extends": [
|
3
|
-
"@commitlint/config-conventional"
|
4
|
-
],
|
5
|
-
"rules": {
|
6
|
-
"header-max-length": [ 2, "always", 120 ],
|
7
|
-
"type-enum": [
|
8
|
-
2,
|
9
|
-
"always",
|
10
|
-
[
|
11
|
-
"breaking",
|
12
|
-
"feat",
|
13
|
-
"fix",
|
14
|
-
"refactor",
|
15
|
-
"config",
|
16
|
-
"test",
|
17
|
-
"docs",
|
18
|
-
"chore"
|
19
|
-
]
|
20
|
-
]
|
21
|
-
}
|
22
|
-
}
|
1
|
+
{
|
2
|
+
"extends": [
|
3
|
+
"@commitlint/config-conventional"
|
4
|
+
],
|
5
|
+
"rules": {
|
6
|
+
"header-max-length": [ 2, "always", 120 ],
|
7
|
+
"type-enum": [
|
8
|
+
2,
|
9
|
+
"always",
|
10
|
+
[
|
11
|
+
"breaking",
|
12
|
+
"feat",
|
13
|
+
"fix",
|
14
|
+
"refactor",
|
15
|
+
"config",
|
16
|
+
"test",
|
17
|
+
"docs",
|
18
|
+
"chore"
|
19
|
+
]
|
20
|
+
]
|
21
|
+
}
|
22
|
+
}
|
package/.prettierrc
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
{
|
2
|
-
"singleQuote": true,
|
3
|
-
"trailingComma": "all",
|
4
|
-
"endOfLine": "auto"
|
1
|
+
{
|
2
|
+
"singleQuote": true,
|
3
|
+
"trailingComma": "all",
|
4
|
+
"endOfLine": "auto"
|
5
5
|
}
|
package/Jenkinsfile
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
pipeline {
|
2
|
+
agent any
|
3
|
+
tools {nodejs "node18"}
|
4
|
+
stages {
|
5
|
+
stage('Install') {
|
6
|
+
steps {
|
7
|
+
echo 'Install Dependencies..'
|
8
|
+
sh 'npm install'
|
9
|
+
}
|
10
|
+
}
|
11
|
+
stage('Test') {
|
12
|
+
steps {
|
13
|
+
echo 'Testing..'
|
14
|
+
sh 'npm run test'
|
15
|
+
}
|
16
|
+
}
|
17
|
+
stage('Build') {
|
18
|
+
steps {
|
19
|
+
echo 'Building..'
|
20
|
+
sh 'npm run build'
|
21
|
+
}
|
22
|
+
}
|
23
|
+
stage('Publish') {
|
24
|
+
steps {
|
25
|
+
echo 'Publish..'
|
26
|
+
withCredentials([
|
27
|
+
usernamePassword(credentialsId: 'npm-auth-token', usernameVariable: 'NPM_USERNAME', passwordVariable: 'AUTH_TOKEN')
|
28
|
+
]) {
|
29
|
+
sh "npm set //registry.npmjs.org/:_authToken=$AUTH_TOKEN"
|
30
|
+
sh "npm publish"
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
post {
|
37
|
+
success {
|
38
|
+
discordSend description: "Git Commit: ${env.GIT_COMMIT}\nGit Branch: ${env.GIT_Branch}\nGit URL: ${env.GIT_URL}\nGit Author: ${env.GIT_AUTHOR_NAME}", footer: '', image: '', link: env.BUILD_URL, result: 'SUCCESS', scmWebUrl: '', thumbnail: '', title: "${env.JOB_NAME} Build #${env.BUILD_NUMBER} Success", webhookURL: 'https://discord.com/api/webhooks/1117705705466642434/UWgw32kQerM5HOr-fcCYD2aQxE1koeN_4CSCEzDZz1EAI3vNaysAw0YU7YUrb4TozOw0'
|
39
|
+
}
|
40
|
+
|
41
|
+
failure {
|
42
|
+
discordSend description: "Git Commit: ${env.GIT_COMMIT}\nGit Branch: ${env.GIT_Branch}\nGit URL: ${env.GIT_URL}\nGit Author: ${env.GIT_AUTHOR_NAME}", footer: '', image: '', link: env.BUILD_URL, result: 'FAILURE', scmWebUrl: '', thumbnail: '', title: "${env.JOB_NAME} Build #${env.BUILD_NUMBER} Failed", webhookURL: 'https://discord.com/api/webhooks/1117705705466642434/UWgw32kQerM5HOr-fcCYD2aQxE1koeN_4CSCEzDZz1EAI3vNaysAw0YU7YUrb4TozOw0'
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
package/README.md
CHANGED
@@ -1,23 +1,23 @@
|
|
1
|
-
## SSO Package
|
2
|
-
|
3
|
-
### How to use
|
4
|
-
- run `npm i`
|
5
|
-
- Make sure you set the environment in .sampledotenv in your project `.env` file
|
6
|
-
- run `npm run start:dev`
|
7
|
-
|
8
|
-
### How create a new migration
|
9
|
-
- Make sure you have `DATABASE_URL` and `SHADOW_DATABASE_URL` in your project `.env` file
|
10
|
-
- create a new empty database. dont do migration on it and set the `SHADOW_DATABASE_URL` to it
|
11
|
-
- Create a database user
|
12
|
-
- Grant the above user privileges to alter sso tables and shadow database. The user should have access to the sso table and shadow database only. Use `create-sso-user.sql` as an example to create the user and grant privileges
|
13
|
-
- Make changes to the `schema.prisma` file
|
14
|
-
- Run `npx prisma migrate dev --name <migration-name> --preview-feature --create-only` to create the migration. The migration will be created in the `migrations` folder.
|
15
|
-
- open the newly created migration. review the migration and make changes if necessary.
|
16
|
-
|
17
|
-
notes:
|
18
|
-
- if you create a new table, after migration has been created, change the default character set to `latin1` from `utf8mb4` and remove COLLATE phrase.please also add it to the `create-sso-user.sql` file for references
|
19
|
-
|
20
|
-
### How to run migration
|
21
|
-
- run `npx prisma migrate deploy` to run the migration
|
22
|
-
- run `npx prisma generate` to generate the prisma client
|
23
|
-
|
1
|
+
## SSO Package
|
2
|
+
|
3
|
+
### How to use
|
4
|
+
- run `npm i`
|
5
|
+
- Make sure you set the environment in .sampledotenv in your project `.env` file
|
6
|
+
- run `npm run start:dev`
|
7
|
+
|
8
|
+
### How create a new migration
|
9
|
+
- Make sure you have `DATABASE_URL` and `SHADOW_DATABASE_URL` in your project `.env` file
|
10
|
+
- create a new empty database. dont do migration on it and set the `SHADOW_DATABASE_URL` to it
|
11
|
+
- Create a database user
|
12
|
+
- Grant the above user privileges to alter sso tables and shadow database. The user should have access to the sso table and shadow database only. Use `create-sso-user.sql` as an example to create the user and grant privileges
|
13
|
+
- Make changes to the `schema.prisma` file
|
14
|
+
- Run `npx prisma migrate dev --name <migration-name> --preview-feature --create-only` to create the migration. The migration will be created in the `migrations` folder.
|
15
|
+
- open the newly created migration. review the migration and make changes if necessary.
|
16
|
+
|
17
|
+
notes:
|
18
|
+
- if you create a new table, after migration has been created, change the default character set to `latin1` from `utf8mb4` and remove COLLATE phrase.please also add it to the `create-sso-user.sql` file for references
|
19
|
+
|
20
|
+
### How to run migration
|
21
|
+
- run `npx prisma migrate deploy` to run the migration
|
22
|
+
- run `npx prisma generate` to generate the prisma client
|
23
|
+
|
@@ -1,95 +1,95 @@
|
|
1
|
-
import { LoginHistory } from '@prisma/client';
|
2
|
-
import { LoginHistoryRepository } from '../../../../src/components/login-history/login-history.repository';
|
3
|
-
import { prismaMock } from '../../../../src/prisma-client/__mocks__/prisma';
|
4
|
-
|
5
|
-
describe('login-history.repository', () => {
|
6
|
-
afterEach(() => {
|
7
|
-
jest.restoreAllMocks()
|
8
|
-
})
|
9
|
-
describe('findAll', () => {
|
10
|
-
it('should return list of login history', async () => {
|
11
|
-
const data = [{
|
12
|
-
userId: 1,
|
13
|
-
systemId: 1,
|
14
|
-
originIp: '1.1.1.1',
|
15
|
-
createdAt: new Date(),
|
16
|
-
}]
|
17
|
-
prismaMock.loginHistory.findMany.mockResolvedValueOnce(data as LoginHistory[])
|
18
|
-
const loginHistoryRepository = new LoginHistoryRepository()
|
19
|
-
expect(await loginHistoryRepository.findAll({})).toEqual(data)
|
20
|
-
})
|
21
|
-
})
|
22
|
-
|
23
|
-
describe('findOne', () => {
|
24
|
-
it('should return login history', async () => {
|
25
|
-
const data = {
|
26
|
-
userId: 1,
|
27
|
-
systemId: 1,
|
28
|
-
originIp: '1.1.1.1',
|
29
|
-
createdAt: new Date(),
|
30
|
-
}
|
31
|
-
prismaMock.loginHistory.findFirst.mockResolvedValueOnce(data as LoginHistory)
|
32
|
-
const loginHistoryRepository = new LoginHistoryRepository()
|
33
|
-
expect(await loginHistoryRepository.findOne({
|
34
|
-
where: {
|
35
|
-
userId_systemId: {
|
36
|
-
userId: data.userId,
|
37
|
-
systemId: data.systemId,
|
38
|
-
},
|
39
|
-
},
|
40
|
-
})).toEqual(data)
|
41
|
-
})
|
42
|
-
})
|
43
|
-
|
44
|
-
describe('create', () => {
|
45
|
-
it('should create login history', async () => {
|
46
|
-
const data = {
|
47
|
-
userId: 1,
|
48
|
-
systemId: 1,
|
49
|
-
originIp: '1.1.1.1',
|
50
|
-
createdAt: new Date(),
|
51
|
-
}
|
52
|
-
prismaMock.loginHistory.create.mockResolvedValueOnce(data as LoginHistory)
|
53
|
-
const loginHistoryRepository = new LoginHistoryRepository()
|
54
|
-
expect(await loginHistoryRepository.create({data})).toEqual(data)
|
55
|
-
})
|
56
|
-
})
|
57
|
-
|
58
|
-
describe('update', () => {
|
59
|
-
it('should update login history', async () => {
|
60
|
-
const data = {
|
61
|
-
userId: 1,
|
62
|
-
systemId: 1,
|
63
|
-
originIp: '1.1.1.1',
|
64
|
-
createdAt: new Date(),
|
65
|
-
}
|
66
|
-
prismaMock.loginHistory.update.mockResolvedValueOnce(data as LoginHistory)
|
67
|
-
const loginHistoryRepository = new LoginHistoryRepository()
|
68
|
-
expect(await loginHistoryRepository.update({
|
69
|
-
where: {
|
70
|
-
userId: data.userId
|
71
|
-
}, data: data
|
72
|
-
}, data)).toEqual(data)
|
73
|
-
})
|
74
|
-
})
|
75
|
-
|
76
|
-
describe('delete', () => {
|
77
|
-
it('should delete login history', async () => {
|
78
|
-
const data = {
|
79
|
-
userId: 1,
|
80
|
-
systemId: 1,
|
81
|
-
originIp: '1.1.1.1',
|
82
|
-
createdAt: new Date(),
|
83
|
-
}
|
84
|
-
prismaMock.loginHistory.delete.mockResolvedValueOnce(data as LoginHistory)
|
85
|
-
const loginHistoryRepository = new LoginHistoryRepository()
|
86
|
-
expect(await loginHistoryRepository.delete({
|
87
|
-
where: {
|
88
|
-
userId: data.userId
|
89
|
-
}
|
90
|
-
})).toEqual(data)
|
91
|
-
})
|
92
|
-
})
|
93
|
-
|
94
|
-
})
|
95
|
-
|
1
|
+
import { LoginHistory } from '@prisma/client';
|
2
|
+
import { LoginHistoryRepository } from '../../../../src/components/login-history/login-history.repository';
|
3
|
+
import { prismaMock } from '../../../../src/prisma-client/__mocks__/prisma';
|
4
|
+
|
5
|
+
describe('login-history.repository', () => {
|
6
|
+
afterEach(() => {
|
7
|
+
jest.restoreAllMocks()
|
8
|
+
})
|
9
|
+
describe('findAll', () => {
|
10
|
+
it('should return list of login history', async () => {
|
11
|
+
const data = [{
|
12
|
+
userId: 1,
|
13
|
+
systemId: 1,
|
14
|
+
originIp: '1.1.1.1',
|
15
|
+
createdAt: new Date(),
|
16
|
+
}]
|
17
|
+
prismaMock.loginHistory.findMany.mockResolvedValueOnce(data as LoginHistory[])
|
18
|
+
const loginHistoryRepository = new LoginHistoryRepository()
|
19
|
+
expect(await loginHistoryRepository.findAll({})).toEqual(data)
|
20
|
+
})
|
21
|
+
})
|
22
|
+
|
23
|
+
describe('findOne', () => {
|
24
|
+
it('should return login history', async () => {
|
25
|
+
const data = {
|
26
|
+
userId: 1,
|
27
|
+
systemId: 1,
|
28
|
+
originIp: '1.1.1.1',
|
29
|
+
createdAt: new Date(),
|
30
|
+
}
|
31
|
+
prismaMock.loginHistory.findFirst.mockResolvedValueOnce(data as LoginHistory)
|
32
|
+
const loginHistoryRepository = new LoginHistoryRepository()
|
33
|
+
expect(await loginHistoryRepository.findOne({
|
34
|
+
where: {
|
35
|
+
userId_systemId: {
|
36
|
+
userId: data.userId,
|
37
|
+
systemId: data.systemId,
|
38
|
+
},
|
39
|
+
},
|
40
|
+
})).toEqual(data)
|
41
|
+
})
|
42
|
+
})
|
43
|
+
|
44
|
+
describe('create', () => {
|
45
|
+
it('should create login history', async () => {
|
46
|
+
const data = {
|
47
|
+
userId: 1,
|
48
|
+
systemId: 1,
|
49
|
+
originIp: '1.1.1.1',
|
50
|
+
createdAt: new Date(),
|
51
|
+
}
|
52
|
+
prismaMock.loginHistory.create.mockResolvedValueOnce(data as LoginHistory)
|
53
|
+
const loginHistoryRepository = new LoginHistoryRepository()
|
54
|
+
expect(await loginHistoryRepository.create({data})).toEqual(data)
|
55
|
+
})
|
56
|
+
})
|
57
|
+
|
58
|
+
describe('update', () => {
|
59
|
+
it('should update login history', async () => {
|
60
|
+
const data = {
|
61
|
+
userId: 1,
|
62
|
+
systemId: 1,
|
63
|
+
originIp: '1.1.1.1',
|
64
|
+
createdAt: new Date(),
|
65
|
+
}
|
66
|
+
prismaMock.loginHistory.update.mockResolvedValueOnce(data as LoginHistory)
|
67
|
+
const loginHistoryRepository = new LoginHistoryRepository()
|
68
|
+
expect(await loginHistoryRepository.update({
|
69
|
+
where: {
|
70
|
+
userId: data.userId
|
71
|
+
}, data: data
|
72
|
+
}, data)).toEqual(data)
|
73
|
+
})
|
74
|
+
})
|
75
|
+
|
76
|
+
describe('delete', () => {
|
77
|
+
it('should delete login history', async () => {
|
78
|
+
const data = {
|
79
|
+
userId: 1,
|
80
|
+
systemId: 1,
|
81
|
+
originIp: '1.1.1.1',
|
82
|
+
createdAt: new Date(),
|
83
|
+
}
|
84
|
+
prismaMock.loginHistory.delete.mockResolvedValueOnce(data as LoginHistory)
|
85
|
+
const loginHistoryRepository = new LoginHistoryRepository()
|
86
|
+
expect(await loginHistoryRepository.delete({
|
87
|
+
where: {
|
88
|
+
userId: data.userId
|
89
|
+
}
|
90
|
+
})).toEqual(data)
|
91
|
+
})
|
92
|
+
})
|
93
|
+
|
94
|
+
})
|
95
|
+
|