Files
hoppscotch/components/history/__tests__/GraphqlCard.sample
2021-08-27 09:38:29 +05:30

108 lines
2.4 KiB
Plaintext

import { mount } from "@vue/test-utils"
import GraphqlCard from "../graphql/Card"
const factory = (props) => {
return mount(GraphqlCard, {
propsData: props,
mocks: {
$t: (text) => text,
},
directives: {
tooltip() {
/* stub */
},
closePopover() {
/* stub */
},
},
})
}
const url = "https://dummydata.com"
const query = `query getUser($uid: String!) {
user(uid: $uid) {
name
}
}`
describe("GraphqlCard", () => {
test("Mounts properly if props are given", () => {
const wrapper = factory({
entry: {
type: "graphql",
url,
query,
star: false,
},
})
expect(wrapper).toBeTruthy()
})
// test("toggle-star emitted on clicking on star button", async () => {
// const wrapper = factory({
// entry: {
// type: "graphql",
// url,
// query,
// star: true,
// },
// })
// await wrapper.find("button[data-testid='star_button']").trigger("click")
// expect(wrapper.emitted("toggle-star")).toBeTruthy()
// })
test("query expands on clicking the show more button", async () => {
const wrapper = factory({
entry: {
type: "graphql",
url,
query,
star: true,
},
})
expect(wrapper.vm.query).toStrictEqual([
`query getUser($uid: String!) {`,
` user(uid: $uid) {`,
`...`,
])
await wrapper.find("button[data-testid='query_expand']").trigger("click")
expect(wrapper.vm.query).toStrictEqual([
`query getUser($uid: String!) {`,
` user(uid: $uid) {`,
` name`,
` }`,
`}`,
])
})
// test("use-entry emit on clicking the restore button", async () => {
// const wrapper = factory({
// entry: {
// type: "graphql",
// url,
// query,
// star: true,
// },
// })
// await wrapper
// .find("button[data-testid='restore_history_entry']")
// .trigger("click")
// expect(wrapper.emitted("use-entry")).toBeTruthy()
// })
// test("delete-entry emit on clicking the delete button", async () => {
// const wrapper = factory({
// entry: {
// type: "graphql",
// url,
// query,
// star: true,
// },
// })
// await wrapper
// .find("button[data-testid=delete_history_entry]")
// .trigger("click")
// expect(wrapper.emitted("delete-entry")).toBeTruthy()
// })
})