|
| 1 | +/** |
| 2 | + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors |
| 3 | + * SPDX-License-Identifier: AGPL-3.0-or-later |
| 4 | + */ |
| 5 | + |
| 6 | +import { mount } from '@vue/test-utils' |
| 7 | +import { describe, expect, it, vi } from 'vitest' |
| 8 | +import { defineComponent } from 'vue' |
| 9 | + |
| 10 | +import { getParent } from '../../../src/utils/getParent.ts' |
| 11 | + |
| 12 | +const CParent = defineComponent({ |
| 13 | + name: 'CParent', |
| 14 | + template: '<div><slot /></div>', |
| 15 | +}) |
| 16 | + |
| 17 | +const CChild = defineComponent({ |
| 18 | + name: 'CChild', |
| 19 | + template: '<div>hello</div>', |
| 20 | + inject: ['foundParent'], |
| 21 | + mounted() { |
| 22 | + (this.foundParent as (x: unknown) => void)(getParent(this, 'CParent')) |
| 23 | + }, |
| 24 | + computed: { |
| 25 | + parent() { |
| 26 | + return getParent(this, 'CParent') |
| 27 | + }, |
| 28 | + }, |
| 29 | +}) |
| 30 | + |
| 31 | +const CWrapper = defineComponent({ |
| 32 | + name: 'CWrapper', |
| 33 | + template: '<div><slot /></div>', |
| 34 | +}) |
| 35 | + |
| 36 | +describe('utils: getParent', () => { |
| 37 | + it('finds direct parent', () => { |
| 38 | + const foundParent = vi.fn() |
| 39 | + const component = defineComponent({ |
| 40 | + template: '<CParent><CChild ref="child" /></CParent>', |
| 41 | + components: { CChild, CParent }, |
| 42 | + provide: { |
| 43 | + foundParent, |
| 44 | + }, |
| 45 | + }) |
| 46 | + |
| 47 | + mount(component) |
| 48 | + expect(foundParent).toBeCalledWith({}) |
| 49 | + }) |
| 50 | + |
| 51 | + it('finds indirect parent', () => { |
| 52 | + const foundParent = vi.fn() |
| 53 | + const component = defineComponent({ |
| 54 | + template: '<CParent><CWrapper><CChild ref="child" /></CWrapper></CParent>', |
| 55 | + components: { CChild, CParent, CWrapper }, |
| 56 | + provide: { |
| 57 | + foundParent, |
| 58 | + }, |
| 59 | + }) |
| 60 | + |
| 61 | + mount(component) |
| 62 | + expect(foundParent).toBeCalledWith({}) |
| 63 | + }) |
| 64 | + |
| 65 | + it('finds indirect parent in native elements', () => { |
| 66 | + const foundParent = vi.fn() |
| 67 | + const component = defineComponent({ |
| 68 | + template: '<CParent><div><CChild ref="child" /></div></CParent>', |
| 69 | + components: { CChild, CParent }, |
| 70 | + provide: { |
| 71 | + foundParent, |
| 72 | + }, |
| 73 | + }) |
| 74 | + |
| 75 | + mount(component) |
| 76 | + expect(foundParent).toBeCalledWith({}) |
| 77 | + }) |
| 78 | + |
| 79 | + it('does not find parent if there is none', () => { |
| 80 | + const foundParent = vi.fn() |
| 81 | + const component = defineComponent({ |
| 82 | + template: '<div><CChild ref="child" /></div>', |
| 83 | + components: { CChild }, |
| 84 | + provide: { |
| 85 | + foundParent, |
| 86 | + }, |
| 87 | + }) |
| 88 | + |
| 89 | + mount(component) |
| 90 | + expect(foundParent).toBeCalledTimes(1) |
| 91 | + expect(foundParent).toBeCalledWith(undefined) |
| 92 | + }) |
| 93 | +}) |
0 commit comments