1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-20 15:21:36 +03:00
leon/test/e2e/over-http.spec.js

34 lines
930 B
JavaScript
Raw Normal View History

import superagent from 'superagent'
import server from '@/core/http-server/server'
const urlPrefix = `${process.env.LEON_HOST}:${process.env.LEON_PORT}/api`
const queryUrl = `${urlPrefix}/query`
const actionModuleUrl = `${urlPrefix}/p/leon/randomnumber/run`;
/**
2022-02-10 16:47:43 +03:00
* Test the query endpoint over HTTP
* and a simple module action over HTTP
*/
(async () => {
await server.init()
})()
describe('Over HTTP', () => {
test(`Request query endpoint POST ${queryUrl}`, async () => {
const { body } = await superagent.post(queryUrl)
2022-02-10 16:47:43 +03:00
.send({ utterance: 'Hello' })
.set('X-API-Key', process.env.LEON_HTTP_API_KEY)
expect(body).toHaveProperty('success', true)
})
test(`Request an action module: GET ${actionModuleUrl}`, async () => {
const { body } = await superagent.get(actionModuleUrl)
.set('X-API-Key', process.env.LEON_HTTP_API_KEY)
expect(body).toHaveProperty('success', true)
})
})