mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-24 16:45:02 +01:00
178 lines
4.8 KiB
TypeScript
178 lines
4.8 KiB
TypeScript
import { describe, expect, test } from 'vitest';
|
|
import { pluginHookExport } from '../src';
|
|
|
|
const ctx = {};
|
|
|
|
describe('exporter-curl', () => {
|
|
test('Exports GET with params', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
urlParameters: [
|
|
{ name: 'a', value: 'aaa' },
|
|
{ name: 'b', value: 'bbb', enabled: true },
|
|
{ name: 'c', value: 'ccc', enabled: false },
|
|
],
|
|
}),
|
|
).toEqual(
|
|
[`curl 'https://yaak.app'`, `--url-query 'a=aaa'`, `--url-query 'b=bbb'`].join(` \\\n `),
|
|
);
|
|
});
|
|
test('Exports POST with url form data', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
method: 'POST',
|
|
bodyType: 'application/x-www-form-urlencoded',
|
|
body: {
|
|
form: [
|
|
{ name: 'a', value: 'aaa' },
|
|
{ name: 'b', value: 'bbb', enabled: true },
|
|
{ name: 'c', value: 'ccc', enabled: false },
|
|
],
|
|
},
|
|
}),
|
|
).toEqual(
|
|
[`curl -X POST 'https://yaak.app'`, `--data 'a=aaa'`, `--data 'b=bbb'`].join(` \\\n `),
|
|
);
|
|
});
|
|
|
|
test('Exports PUT with multipart form', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
method: 'PUT',
|
|
bodyType: 'multipart/form-data',
|
|
body: {
|
|
form: [
|
|
{ name: 'a', value: 'aaa' },
|
|
{ name: 'b', value: 'bbb', enabled: true },
|
|
{ name: 'c', value: 'ccc', enabled: false },
|
|
{ name: 'f', file: '/foo/bar.png', contentType: 'image/png' },
|
|
],
|
|
},
|
|
}),
|
|
).toEqual(
|
|
[
|
|
`curl -X PUT 'https://yaak.app'`,
|
|
`--form 'a=aaa'`,
|
|
`--form 'b=bbb'`,
|
|
`--form f=@/foo/bar.png;type=image/png`,
|
|
].join(` \\\n `),
|
|
);
|
|
});
|
|
|
|
test('Exports JSON body', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
method: 'POST',
|
|
bodyType: 'application/json',
|
|
body: {
|
|
text: `{"foo":"bar's"}`,
|
|
},
|
|
headers: [{ name: 'Content-Type', value: 'application/json' }],
|
|
}),
|
|
).toEqual(
|
|
[
|
|
`curl -X POST 'https://yaak.app'`,
|
|
`--header 'Content-Type: application/json'`,
|
|
`--data-raw $'{"foo":"bar\\'s"}'`,
|
|
].join(` \\\n `),
|
|
);
|
|
});
|
|
|
|
test('Exports multi-line JSON body', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
method: 'POST',
|
|
bodyType: 'application/json',
|
|
body: {
|
|
text: `{"foo":"bar",\n"baz":"qux"}`,
|
|
},
|
|
headers: [{ name: 'Content-Type', value: 'application/json' }],
|
|
}),
|
|
).toEqual(
|
|
[
|
|
`curl -X POST 'https://yaak.app'`,
|
|
`--header 'Content-Type: application/json'`,
|
|
`--data-raw $'{"foo":"bar",\n"baz":"qux"}'`,
|
|
].join(` \\\n `),
|
|
);
|
|
});
|
|
|
|
test('Exports headers', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
headers: [
|
|
{ name: 'a', value: 'aaa' },
|
|
{ name: 'b', value: 'bbb', enabled: true },
|
|
{ name: 'c', value: 'ccc', enabled: false },
|
|
],
|
|
}),
|
|
).toEqual([`curl`, `--header 'a: aaa'`, `--header 'b: bbb'`].join(` \\\n `));
|
|
});
|
|
|
|
test('Basic auth', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
authenticationType: 'basic',
|
|
authentication: {
|
|
username: 'user',
|
|
password: 'pass',
|
|
},
|
|
}),
|
|
).toEqual([`curl 'https://yaak.app'`, `--user 'user:pass'`].join(` \\\n `));
|
|
});
|
|
|
|
test('Broken basic auth', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
authenticationType: 'basic',
|
|
authentication: {},
|
|
}),
|
|
).toEqual([`curl 'https://yaak.app'`, `--user ':'`].join(` \\\n `));
|
|
});
|
|
|
|
test('Digest auth', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
authenticationType: 'digest',
|
|
authentication: {
|
|
username: 'user',
|
|
password: 'pass',
|
|
},
|
|
}),
|
|
).toEqual([`curl 'https://yaak.app'`, `--digest --user 'user:pass'`].join(` \\\n `));
|
|
});
|
|
|
|
test('Bearer auth', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
authenticationType: 'bearer',
|
|
authentication: {
|
|
token: 'tok',
|
|
},
|
|
}),
|
|
).toEqual([`curl 'https://yaak.app'`, `--header 'Authorization: Bearer tok'`].join(` \\\n `));
|
|
});
|
|
|
|
test('Broken bearer auth', () => {
|
|
expect(
|
|
pluginHookExport(ctx, {
|
|
url: 'https://yaak.app',
|
|
authenticationType: 'bearer',
|
|
authentication: {
|
|
username: 'user',
|
|
password: 'pass',
|
|
},
|
|
}),
|
|
).toEqual([`curl 'https://yaak.app'`, `--header 'Authorization: Bearer '`].join(` \\\n `));
|
|
});
|
|
});
|