smartrequest/test/test.legacy.ts

46 lines
1.4 KiB
TypeScript
Raw Permalink Normal View History

2022-02-15 18:53:02 +01:00
import { tap, expect, expectAsync } from '@pushrocks/tapbundle';
2017-01-29 00:51:47 +01:00
import * as smartrequest from '../ts/legacy/index.js';
2017-01-29 00:51:47 +01:00
2017-06-09 21:48:16 +02:00
tap.test('should request a html document over https', async () => {
2022-02-15 18:57:42 +01:00
await expectAsync(smartrequest.getJson('https://encrypted.google.com/')).toHaveProperty('body');
2018-06-13 22:34:49 +02:00
});
2017-01-29 00:51:47 +01:00
2017-06-09 21:48:16 +02:00
tap.test('should request a JSON document over https', async () => {
2022-02-15 18:53:02 +01:00
await expectAsync(smartrequest.getJson('https://jsonplaceholder.typicode.com/posts/1'))
.property('body')
2018-06-13 22:34:49 +02:00
.property('id')
2022-02-15 18:53:02 +01:00
.toEqual(1);
2018-06-13 22:34:49 +02:00
});
2017-01-29 00:51:47 +01:00
2023-04-19 14:38:28 +02:00
tap.test('should post a JSON document over http', async () => {
const testData = { text: 'example_text' };
await expectAsync(smartrequest.postJson('https://httpbin.org/post', { requestBody: testData }))
2022-02-15 18:53:02 +01:00
.property('body')
.property('json')
.property('text')
.toEqual('example_text');
2018-06-13 22:34:49 +02:00
});
2017-06-09 21:48:16 +02:00
2023-04-19 14:38:28 +02:00
tap.test('should safe get stuff', async () => {
smartrequest.safeGet('http://coffee.link/');
smartrequest.safeGet('https://coffee.link/');
});
2018-07-16 23:51:31 +02:00
tap.skip.test('should deal with unix socks', async () => {
2018-08-14 01:47:54 +02:00
const socketResponse = await smartrequest.request(
'http://unix:/var/run/docker.sock:/containers/json',
{
headers: {
'Content-Type': 'application/json',
2020-08-24 12:01:38 +00:00
Host: 'docker.sock',
},
2018-07-16 23:49:35 +02:00
}
2018-08-14 01:47:54 +02:00
);
2018-07-16 23:39:25 +02:00
console.log(socketResponse.body);
2018-07-16 00:38:24 +02:00
});
2018-08-14 01:47:54 +02:00
tap.skip.test('should correctly upload a file using formData', async () => {});
2018-07-19 22:36:45 +02:00
2018-07-16 23:51:31 +02:00
tap.start();