mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-02 17:08:32 +00:00
This contains the bulk of the changes apart from renaming files. This is a continuation of #2341. Co-authored-by: lohit <lohit@usebruno.com> Co-authored-by: pooja-bruno <pooja@usebruno.com>
108 lines
2.4 KiB
JavaScript
108 lines
2.4 KiB
JavaScript
import jsyaml from 'js-yaml';
|
|
import { describe, it, expect } from '@jest/globals';
|
|
import openApiToBruno from '../../src/openapi/openapi-to-bruno';
|
|
|
|
describe('openapi-collection', () => {
|
|
it('should correctly import a valid OpenAPI file', async () => {
|
|
const openApiSpecification = jsyaml.load(openApiCollectionString);
|
|
const brunoCollection = openApiToBruno(openApiSpecification);
|
|
|
|
expect(brunoCollection).toMatchObject(expectedOutput);
|
|
});
|
|
});
|
|
|
|
const openApiCollectionString = `
|
|
openapi: "3.0.0"
|
|
info:
|
|
version: "1.0.0"
|
|
title: "Hello World OpenAPI"
|
|
paths:
|
|
/get:
|
|
get:
|
|
tags:
|
|
- Folder1
|
|
- Folder2
|
|
summary: "Request1 and Request2"
|
|
operationId: "getRequests"
|
|
responses:
|
|
'200':
|
|
description: "Successful response"
|
|
components:
|
|
parameters:
|
|
var1:
|
|
in: "query"
|
|
name: "var1"
|
|
required: true
|
|
schema:
|
|
type: "string"
|
|
default: "value1"
|
|
var2:
|
|
in: "query"
|
|
name: "var2"
|
|
required: true
|
|
schema:
|
|
type: "string"
|
|
default: "value2"
|
|
servers:
|
|
- url: "https://httpbin.org"
|
|
`;
|
|
|
|
const expectedOutput = {
|
|
"environments": [
|
|
{
|
|
"name": "Environment 1",
|
|
"uid": "mockeduuidvalue123456",
|
|
"variables": [
|
|
{
|
|
"enabled": true,
|
|
"name": "baseUrl",
|
|
"secret": false,
|
|
"type": "text",
|
|
"uid": "mockeduuidvalue123456",
|
|
"value": "https://httpbin.org",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
"items": [
|
|
{
|
|
"items": [
|
|
{
|
|
"name": "Request1 and Request2",
|
|
"request": {
|
|
"auth": {
|
|
"basic": null,
|
|
"bearer": null,
|
|
"digest": null,
|
|
"mode": "none",
|
|
},
|
|
"body": {
|
|
"formUrlEncoded": [],
|
|
"json": null,
|
|
"mode": "none",
|
|
"multipartForm": [],
|
|
"text": null,
|
|
"xml": null,
|
|
},
|
|
"headers": [],
|
|
"method": "GET",
|
|
"params": [],
|
|
"script": {
|
|
"res": null,
|
|
},
|
|
"url": "{{baseUrl}}/get",
|
|
},
|
|
"seq": 1,
|
|
"type": "http-request",
|
|
"uid": "mockeduuidvalue123456",
|
|
},
|
|
],
|
|
"name": "Folder1",
|
|
"type": "folder",
|
|
"uid": "mockeduuidvalue123456",
|
|
},
|
|
],
|
|
"name": "Hello World OpenAPI",
|
|
"uid": "mockeduuidvalue123456",
|
|
"version": "1",
|
|
}; |