test unread rooms query

This commit is contained in:
Moriz Wahl 2023-07-14 14:40:38 +02:00
parent f4567b14ff
commit 09be4d3442
4 changed files with 128 additions and 7 deletions

View File

@ -30,3 +30,11 @@ export const roomQuery = () => {
} }
` `
} }
export const unreadRoomsQuery = () => {
return gql`
query {
UnreadRooms
}
`
}

View File

@ -408,6 +408,7 @@ export default shield(
getInviteCode: isAuthenticated, // and inviteRegistration getInviteCode: isAuthenticated, // and inviteRegistration
Room: isAuthenticated, Room: isAuthenticated,
Message: isAuthenticated, Message: isAuthenticated,
UnreadRooms: isAuthenticated,
}, },
Mutation: { Mutation: {
'*': deny, '*': deny,

View File

@ -1,7 +1,8 @@
import { createTestClient } from 'apollo-server-testing' import { createTestClient } from 'apollo-server-testing'
import Factory, { cleanDatabase } from '../../db/factories' import Factory, { cleanDatabase } from '../../db/factories'
import { getNeode, getDriver } from '../../db/neo4j' import { getNeode, getDriver } from '../../db/neo4j'
import { createRoomMutation, roomQuery } from '../../graphql/rooms' import { createRoomMutation, roomQuery, unreadRoomsQuery } from '../../graphql/rooms'
import { createMessageMutation } from '../../graphql/messages'
import createServer from '../../server' import createServer from '../../server'
const driver = getDriver() const driver = getDriver()
@ -29,11 +30,13 @@ beforeAll(async () => {
}) })
afterAll(async () => { afterAll(async () => {
await cleanDatabase() // await cleanDatabase()
driver.close() driver.close()
}) })
describe('Room', () => { describe('Room', () => {
let roomId: string
beforeAll(async () => { beforeAll(async () => {
;[chattingUser, otherChattingUser, notChattingUser] = await Promise.all([ ;[chattingUser, otherChattingUser, notChattingUser] = await Promise.all([
Factory.build('user', { Factory.build('user', {
@ -68,8 +71,6 @@ describe('Room', () => {
}) })
describe('authenticated', () => { describe('authenticated', () => {
let roomId: string
beforeAll(async () => { beforeAll(async () => {
authenticatedUser = await chattingUser.toJson() authenticatedUser = await chattingUser.toJson()
}) })
@ -260,4 +261,115 @@ describe('Room', () => {
}) })
}) })
}) })
describe('unread rooms query', () => {
describe('unauthenticated', () => {
it('throws authorization error', async () => {
authenticatedUser = null
await expect(
query({
query: unreadRoomsQuery(),
}),
).resolves.toMatchObject({
errors: [{ message: 'Not Authorized!' }],
})
})
})
describe('authenticated', () => {
let otherRoomId: string
beforeAll(async () => {
authenticatedUser = await chattingUser.toJson()
const result = await mutate({
mutation: createRoomMutation(),
variables: {
userId: 'not-chatting-user',
},
})
otherRoomId = result.data.CreateRoom.roomId
await mutate({
mutation: createMessageMutation(),
variables: {
roomId: otherRoomId,
content: 'Message to not chatting user',
},
})
await mutate({
mutation: createMessageMutation(),
variables: {
roomId,
content: '1st message to other chatting user',
},
})
await mutate({
mutation: createMessageMutation(),
variables: {
roomId,
content: '2nd message to other chatting user',
},
})
authenticatedUser = await otherChattingUser.toJson()
const result2 = await mutate({
mutation: createRoomMutation(),
variables: {
userId: 'not-chatting-user',
},
})
otherRoomId = result2.data.CreateRoom.roomId
await mutate({
mutation: createMessageMutation(),
variables: {
roomId: otherRoomId,
content: 'Other message to not chatting user',
},
})
})
describe('as chatting user', () => {
it('has 0 unread rooms', async () => {
authenticatedUser = await chattingUser.toJson()
await expect(
query({
query: unreadRoomsQuery(),
}),
).resolves.toMatchObject({
data: {
UnreadRooms: 0,
},
})
})
})
describe('as other chatting user', () => {
it('has 1 unread rooms', async () => {
authenticatedUser = await otherChattingUser.toJson()
await expect(
query({
query: unreadRoomsQuery(),
}),
).resolves.toMatchObject({
data: {
UnreadRooms: 1,
},
})
})
})
describe('as not chatting user', () => {
it('has 2 unread rooms', async () => {
authenticatedUser = await notChattingUser.toJson()
await expect(
query({
query: unreadRoomsQuery(),
}),
).resolves.toMatchObject({
data: {
UnreadRooms: 2,
},
})
})
})
})
})
}) })

View File

@ -33,11 +33,11 @@ export default {
const readTxResultPromise = session.readTransaction(async (transaction) => { const readTxResultPromise = session.readTransaction(async (transaction) => {
const unreadRoomsCypher = ` const unreadRoomsCypher = `
MATCH (:User { id: $currentUserId })-[:CHATS_IN]->(room:Room)<-[:INSIDE]-(message:Message)<-[:CREATED]-(user:User) MATCH (:User { id: $currentUserId })-[:CHATS_IN]->(room:Room)<-[:INSIDE]-(message:Message)<-[:CREATED]-(user:User)
WHERE NOT message.seen AND NOT user.id = $currentUserId WHERE NOT user.id = $currentUserId AND NOT message.seen
RETURN toString(COUNT(room)) AS count RETURN toString(COUNT(DISTINCT room)) AS count
` `
const unreadRoomsTxResponse = await transaction.run(unreadRoomsCypher, { currentUserId }) const unreadRoomsTxResponse = await transaction.run(unreadRoomsCypher, { currentUserId })
return unreadRoomsTxResponse.records.map((record) => record.get('count')) return unreadRoomsTxResponse.records.map((record) => record.get('count'))[0]
}) })
try { try {
const count = await readTxResultPromise const count = await readTxResultPromise