* add highlight mappings * return highlight in resolvers * temporarily skip highlight tests * add test for getting highlights * update merge highlight * separate elastic methods * roll back merge highlight test * add highlight to elastic script * update delete highlight in elastic * migrate highlight data from postgres to elastic * rescue not found exception when page is not found in the migration script * exclude highlights in searching pages results * search pages with highlights only with has:highlight query * add search endpoint to search pages or highlights * reduce code smell in search api * fix rebase error * fix tests * add test for search highlight * add test for new search endpoint * add labels to search results * update schema * update search query * fix update/share highlights * fix rebase error * fix tests * add highlight model in elastic * add savedAt and publishedAt date range in search query * add sort by updated and recently read * fix tests * close db connection when tests are done * test github action * revert github action test * fix rebase error * add docker-compose for api-test * remove unused env * remove highlights with no page attached to * allow get_articles resolver to search for query so we can merge it without web changes
77 lines
1.8 KiB
TypeScript
77 lines
1.8 KiB
TypeScript
import { createApp } from '../src/server'
|
|
import supertest from 'supertest'
|
|
import { v4 } from 'uuid'
|
|
import { corsConfig } from '../src/utils/corsConfig'
|
|
import { Page } from '../src/elastic/types'
|
|
import { PageType } from '../src/generated/graphql'
|
|
import { User } from '../src/entity/user'
|
|
import { Label } from '../src/entity/label'
|
|
import { createPubSubClient } from '../src/datalayer/pubsub'
|
|
import { createPage, getPageById } from '../src/elastic/pages'
|
|
|
|
const { app, apollo } = createApp()
|
|
export const request = supertest(app)
|
|
|
|
export const startApolloServer = async () => {
|
|
await apollo.start()
|
|
apollo.applyMiddleware({ app, path: '/api/graphql', cors: corsConfig })
|
|
}
|
|
|
|
export const stopApolloServer = async () => {
|
|
await apollo.stop()
|
|
}
|
|
|
|
export const graphqlRequest = (
|
|
query: string,
|
|
authToken?: string
|
|
): supertest.Test => {
|
|
return request
|
|
.post(apollo.graphqlPath)
|
|
.send({
|
|
query,
|
|
})
|
|
.set('Accept', 'application/json')
|
|
.set('authorization', authToken || '')
|
|
.expect('Content-Type', /json/)
|
|
}
|
|
|
|
export const generateFakeUuid = () => {
|
|
return v4()
|
|
}
|
|
|
|
export const createTestElasticPage = async (
|
|
user: User,
|
|
labels?: Label[]
|
|
): Promise<Page> => {
|
|
const page: Page = {
|
|
id: '',
|
|
hash: 'test hash',
|
|
userId: user.id,
|
|
pageType: PageType.Article,
|
|
title: 'test title',
|
|
content: '<p>test content</p>',
|
|
createdAt: new Date(),
|
|
url: 'https://example.com/test-url',
|
|
slug: 'test-with-omnivore',
|
|
labels: labels,
|
|
readingProgressPercent: 0,
|
|
readingProgressAnchorIndex: 0,
|
|
}
|
|
|
|
const pageId = await createPage(page, {
|
|
pubsub: createPubSubClient(),
|
|
refresh: true,
|
|
uid: user.id,
|
|
})
|
|
if (pageId) {
|
|
page.id = pageId
|
|
}
|
|
|
|
const res = await getPageById(page.id)
|
|
console.log('got page', res)
|
|
if (!res) {
|
|
throw new Error('Failed to create page')
|
|
}
|
|
return res
|
|
}
|