![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/swagger-api/swagger-ui/test/unit/components/ |
import React from "react" import { render } from "enzyme" import { fromJS } from "immutable" import DeepLink from "core/components/deep-link" import Operations from "core/components/operations" import {Collapse} from "core/components/layout-utils" const components = { Collapse, DeepLink, OperationContainer: ({ path, method }) => <span className="mocked-op" id={`${path}-${method}`} />, OperationTag: "div", } describe("<Operations/>", function(){ it("should render a Swagger2 `get` method, but not a `trace` or `foo` method", function(){ let props = { fn: {}, specActions: {}, layoutActions: {}, getComponent: (name)=> { return components[name] || null }, getConfigs: () => { return {} }, specSelectors: { isOAS3() { return false }, url() { return "https://petstore.swagger.io/v2/swagger.json" }, validOperationMethods() { return ["get", "put", "post", "delete", "options", "head", "patch"] }, taggedOperations() { return fromJS({ "default": { "operations": [ { "path": "/pets/{id}", "method": "get" }, { "path": "/pets/{id}", "method": "trace" }, { "path": "/pets/{id}", "method": "foo" }, ] } }) }, }, layoutSelectors: { currentFilter() { return null }, isShown() { return true }, show() { return true } } } let wrapper = render(<Operations {...props}/>) expect(wrapper.find("span.mocked-op").length).toEqual(1) expect(wrapper.find("span.mocked-op").eq(0).attr("id")).toEqual("/pets/{id}-get") }) it("should render an OAS3 `get` and `trace` method, but not a `foo` method", function(){ let props = { fn: {}, specActions: {}, layoutActions: {}, getComponent: (name)=> { return components[name] || null }, getConfigs: () => { return {} }, specSelectors: { isOAS3() { return true }, url() { return "https://petstore.swagger.io/v2/swagger.json" }, validOperationMethods() { return ["get", "put", "post", "delete", "options", "head", "patch", "trace"] }, taggedOperations() { return fromJS({ "default": { "operations": [ { "path": "/pets/{id}", "method": "get" }, { "path": "/pets/{id}", "method": "trace" }, { "path": "/pets/{id}", "method": "foo" }, ] } }) }, }, layoutSelectors: { currentFilter() { return null }, isShown() { return true }, show() { return true } } } let wrapper = render(<Operations {...props}/>) expect(wrapper.find("span.mocked-op").length).toEqual(2) expect(wrapper.find("span.mocked-op").eq(0).attr("id")).toEqual("/pets/{id}-get") expect(wrapper.find("span.mocked-op").eq(1).attr("id")).toEqual("/pets/{id}-trace") }) })