123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- import { ApolloServer } from 'apollo-server-express'
- import { Mongoose } from 'mongoose'
- import { Aggregates } from '../src/types'
- import { ApolloServerTestClient } from 'apollo-server-testing/dist/createTestClient'
- import { buildAggregates, connectMongoose, createServer } from '../src/server'
- import { createTestClient } from 'apollo-server-testing'
- import {
- ADD_VIDEO_VIEW,
- AddVideoView,
- AddVideoViewArgs,
- GET_CHANNEL_VIEWS,
- GET_VIDEO_VIEWS,
- GetChannelViews,
- GetChannelViewsArgs,
- GetVideoViews,
- GetVideoViewsArgs,
- } from './queries/views'
- import { EntityViewsInfo } from '../src/entities/EntityViewsInfo'
- import { VideoEventsBucketModel } from '../src/models/VideoEvent'
- import { TEST_BUCKET_SIZE } from './setup'
- const FIRST_VIDEO_ID = '12'
- const SECOND_VIDEO_ID = '13'
- const FIRST_CHANNEL_ID = '22'
- const SECOND_CHANNEL_ID = '23'
- describe('Video and channel views resolver', () => {
- let server: ApolloServer
- let mongoose: Mongoose
- let aggregates: Aggregates
- let query: ApolloServerTestClient['query']
- let mutate: ApolloServerTestClient['mutate']
- beforeEach(async () => {
- mongoose = await connectMongoose(process.env.MONGO_URL!)
- aggregates = await buildAggregates()
- server = await createServer(mongoose, aggregates)
- const testClient = createTestClient(server)
- query = testClient.query
- mutate = testClient.mutate
- })
- afterEach(async () => {
- await server.stop()
- await VideoEventsBucketModel.deleteMany({})
- await mongoose.disconnect()
- })
- const addVideoView = async (videoId: string, channelId: string) => {
- const addVideoViewResponse = await mutate<AddVideoView, AddVideoViewArgs>({
- mutation: ADD_VIDEO_VIEW,
- variables: { videoId, channelId },
- })
- expect(addVideoViewResponse.errors).toBeUndefined()
- return addVideoViewResponse.data?.addVideoView
- }
- const getVideoViews = async (videoId: string) => {
- const videoViewsResponse = await query<GetVideoViews, GetVideoViewsArgs>({
- query: GET_VIDEO_VIEWS,
- variables: { videoId },
- })
- expect(videoViewsResponse.errors).toBeUndefined()
- return videoViewsResponse.data?.videoViews
- }
- const getChannelViews = async (channelId: string) => {
- const channelViewsResponse = await query<GetChannelViews, GetChannelViewsArgs>({
- query: GET_CHANNEL_VIEWS,
- variables: { channelId },
- })
- expect(channelViewsResponse.errors).toBeUndefined()
- return channelViewsResponse.data?.channelViews
- }
- it('should return null for unknown video and channel views', async () => {
- const videoViews = await getVideoViews(FIRST_VIDEO_ID)
- const channelViews = await getChannelViews(FIRST_CHANNEL_ID)
- expect(videoViews).toBeNull()
- expect(channelViews).toBeNull()
- })
- it('should properly save video and channel views', async () => {
- const expectedVideoViews: EntityViewsInfo = {
- id: FIRST_VIDEO_ID,
- views: 1,
- }
- const expectedChannelViews: EntityViewsInfo = {
- id: FIRST_CHANNEL_ID,
- views: 1,
- }
- const checkViews = async () => {
- const videoViews = await getVideoViews(FIRST_VIDEO_ID)
- const channelViews = await getChannelViews(FIRST_CHANNEL_ID)
- expect(videoViews).toEqual(expectedVideoViews)
- expect(channelViews).toEqual(expectedChannelViews)
- }
- let addVideoViewData = await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- expect(addVideoViewData).toEqual(expectedVideoViews)
- await checkViews()
- expectedVideoViews.views++
- expectedChannelViews.views++
- addVideoViewData = await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- expect(addVideoViewData).toEqual(expectedVideoViews)
- await checkViews()
- })
- it('should distinct views of separate videos', async () => {
- const expectedFirstVideoViews: EntityViewsInfo = {
- id: FIRST_VIDEO_ID,
- views: 1,
- }
- const expectedSecondVideoViews: EntityViewsInfo = {
- id: SECOND_VIDEO_ID,
- views: 1,
- }
- const addFirstVideoViewData = await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- const addSecondVideoViewData = await addVideoView(SECOND_VIDEO_ID, FIRST_CHANNEL_ID)
- expect(addFirstVideoViewData).toEqual(expectedFirstVideoViews)
- expect(addSecondVideoViewData).toEqual(expectedSecondVideoViews)
- expectedFirstVideoViews.views++
- await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- const firstVideoViews = await getVideoViews(FIRST_VIDEO_ID)
- const secondVideoViews = await getVideoViews(SECOND_VIDEO_ID)
- expect(firstVideoViews).toEqual(expectedFirstVideoViews)
- expect(secondVideoViews).toEqual(expectedSecondVideoViews)
- })
- it('should distinct views of separate channels', async () => {
- const expectedFirstChanelViews: EntityViewsInfo = {
- id: FIRST_CHANNEL_ID,
- views: 1,
- }
- const expectedSecondChannelViews: EntityViewsInfo = {
- id: SECOND_CHANNEL_ID,
- views: 1,
- }
- await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- await addVideoView(SECOND_VIDEO_ID, SECOND_CHANNEL_ID)
- const firstChannelViews = await getChannelViews(FIRST_CHANNEL_ID)
- const secondChannelViews = await getChannelViews(SECOND_CHANNEL_ID)
- expect(firstChannelViews).toEqual(expectedFirstChanelViews)
- expect(secondChannelViews).toEqual(expectedSecondChannelViews)
- })
- it('should properly aggregate views of a channel', async () => {
- const expectedChannelViews: EntityViewsInfo = {
- id: FIRST_CHANNEL_ID,
- views: 2,
- }
- await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- await addVideoView(SECOND_VIDEO_ID, FIRST_CHANNEL_ID)
- const channelViews = await getChannelViews(FIRST_CHANNEL_ID)
- expect(channelViews).toEqual(expectedChannelViews)
- })
- it('should properly rebuild the aggregate', async () => {
- const expectedFirstVideoViews: EntityViewsInfo = {
- id: FIRST_VIDEO_ID,
- views: 3,
- }
- const expectedSecondVideoViews: EntityViewsInfo = {
- id: SECOND_VIDEO_ID,
- views: 4,
- }
- const expectedChannelViews: EntityViewsInfo = {
- id: FIRST_CHANNEL_ID,
- views: 7,
- }
- const checkViews = async () => {
- const firstVideoViews = await getVideoViews(FIRST_VIDEO_ID)
- const secondVideoViews = await getVideoViews(SECOND_VIDEO_ID)
- const channelViews = await getChannelViews(FIRST_CHANNEL_ID)
- expect(firstVideoViews).toEqual(expectedFirstVideoViews)
- expect(secondVideoViews).toEqual(expectedSecondVideoViews)
- expect(channelViews).toEqual(expectedChannelViews)
- }
- await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- await addVideoView(SECOND_VIDEO_ID, FIRST_CHANNEL_ID)
- await addVideoView(SECOND_VIDEO_ID, FIRST_CHANNEL_ID)
- await addVideoView(SECOND_VIDEO_ID, FIRST_CHANNEL_ID)
- await addVideoView(SECOND_VIDEO_ID, FIRST_CHANNEL_ID)
- await checkViews()
- await server.stop()
- aggregates = await buildAggregates()
- server = await createServer(mongoose, aggregates)
- const testClient = createTestClient(server)
- query = testClient.query
- mutate = testClient.mutate
- await checkViews()
- })
- it('should properly handle saving events across buckets', async () => {
- const eventsCount = TEST_BUCKET_SIZE * 2 + 1
- const expectedVideoViews: EntityViewsInfo = {
- id: FIRST_VIDEO_ID,
- views: eventsCount,
- }
- for (let i = 0; i < eventsCount; i++) {
- await addVideoView(FIRST_VIDEO_ID, FIRST_CHANNEL_ID)
- }
- const videoViews = await getVideoViews(FIRST_VIDEO_ID)
- expect(videoViews).toEqual(expectedVideoViews)
- })
- })
|