1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/server/test/api.test.ts

55 lines
1.7 KiB
TypeScript
Raw Normal View History

2019-03-24 02:10:00 +01:00
import request from 'supertest'
2019-04-12 16:26:13 +02:00
import server from '../src/server'
2019-03-24 02:10:00 +01:00
afterAll(done => {
server.close(done)
})
describe('GET /', () => {
it('responds with success', async () => {
const response = await request(server).get('/')
2019-06-17 16:43:17 +02:00
expect(response.status).toBe(200)
})
})
2019-03-24 02:10:00 +01:00
describe('POST /api/v1/urlcheck', () => {
2019-09-06 13:50:36 +02:00
it('responds with json on http://', async () => {
const response = await request(server)
.post('/api/v1/urlcheck')
.send({ url: 'https://oceanprotocol.com/tech-whitepaper.pdf' })
expect(response.status).toBe(200)
expect(response.body).toBeTruthy()
})
it('responds with json on ipfs://', async () => {
const response = await request(server)
.post('/api/v1/urlcheck')
.send({
url: 'ipfs://QmQfpdcMWnLTXKKW9GPV7NgtEugghgD6HgzSF6gSrp2mL9'
})
expect(response.status).toBe(200)
2019-09-06 13:50:36 +02:00
expect(response.body).toBeTruthy()
2019-04-30 19:19:28 +02:00
})
it('responds with error message when url is missing', async () => {
const response = await request(server).post('/api/v1/urlcheck')
const text = await JSON.parse(response.text)
expect(text.message).toBe('missing url')
})
})
2019-07-05 15:30:19 +02:00
describe('POST /api/v1/report', () => {
it('responds with error message when message is missing', async () => {
const response = await request(server).post('/api/v1/report')
const text = await JSON.parse(response.text)
expect(text.message).toBe('missing message')
})
})
2019-04-30 19:19:28 +02:00
describe('Errors', () => {
it('responds with 404 on unknown path', async () => {
const response = await request(server).post('/whatever')
expect(response.status).toBe(404)
2019-03-24 02:10:00 +01:00
})
})