|
| 1 | +import CardImgLazy from './card-img-lazy' |
| 2 | +import { mount } from '@vue/test-utils' |
| 3 | + |
| 4 | +describe('card-image', async () => { |
| 5 | + it('default has tag "img"', async () => { |
| 6 | + const wrapper = mount(CardImgLazy, { |
| 7 | + context: { |
| 8 | + props: { |
| 9 | + src: 'https://picsum.photos/600/300/?image=25' |
| 10 | + } |
| 11 | + } |
| 12 | + }) |
| 13 | + expect(wrapper.is('img')).toBe(true) |
| 14 | + }) |
| 15 | + |
| 16 | + it('default has data src attribute', async () => { |
| 17 | + const wrapper = mount(CardImgLazy, { |
| 18 | + context: { |
| 19 | + props: { |
| 20 | + src: 'https://picsum.photos/600/300/?image=25' |
| 21 | + } |
| 22 | + } |
| 23 | + }) |
| 24 | + expect(wrapper.attributes('src')).toContain('data:image/svg+xml') |
| 25 | + }) |
| 26 | + |
| 27 | + it('default does not have alt attribute', async () => { |
| 28 | + const wrapper = mount(CardImgLazy, { |
| 29 | + context: { |
| 30 | + props: { |
| 31 | + src: 'https://picsum.photos/600/300/?image=25' |
| 32 | + } |
| 33 | + } |
| 34 | + }) |
| 35 | + expect(wrapper.attributes('alt')).not.toBeDefined() |
| 36 | + }) |
| 37 | + |
| 38 | + it('default has attributes width and height set to 1', async () => { |
| 39 | + const wrapper = mount(CardImgLazy, { |
| 40 | + context: { |
| 41 | + props: { |
| 42 | + src: 'https://picsum.photos/600/300/?image=25' |
| 43 | + } |
| 44 | + } |
| 45 | + }) |
| 46 | + expect(wrapper.attributes('width')).toBeDefined() |
| 47 | + expect(wrapper.attributes('width')).toBe('1') |
| 48 | + expect(wrapper.attributes('height')).toBeDefined() |
| 49 | + expect(wrapper.attributes('height')).toBe('1') |
| 50 | + }) |
| 51 | + |
| 52 | + it('default has class "card-img"', async () => { |
| 53 | + const wrapper = mount(CardImgLazy, { |
| 54 | + context: { |
| 55 | + props: { |
| 56 | + src: 'https://picsum.photos/600/300/?image=25' |
| 57 | + } |
| 58 | + } |
| 59 | + }) |
| 60 | + expect(wrapper.classes()).toContain('card-img') |
| 61 | + }) |
| 62 | + |
| 63 | + it('has class "card-img-top" when prop top=true', async () => { |
| 64 | + const wrapper = mount(CardImgLazy, { |
| 65 | + context: { |
| 66 | + props: { |
| 67 | + src: 'https://picsum.photos/600/300/?image=25', |
| 68 | + top: true |
| 69 | + } |
| 70 | + } |
| 71 | + }) |
| 72 | + expect(wrapper.classes()).toContain('card-img-top') |
| 73 | + }) |
| 74 | + |
| 75 | + it('has class "card-img-bottom" when prop bottom=true', async () => { |
| 76 | + const wrapper = mount(CardImgLazy, { |
| 77 | + context: { |
| 78 | + props: { |
| 79 | + src: 'https://picsum.photos/600/300/?image=25', |
| 80 | + bottom: true |
| 81 | + } |
| 82 | + } |
| 83 | + }) |
| 84 | + expect(wrapper.classes()).toContain('card-img-bottom') |
| 85 | + }) |
| 86 | + |
| 87 | + it('has class "card-img-top" when props top=true and bottom=true', async () => { |
| 88 | + const wrapper = mount(CardImgLazy, { |
| 89 | + context: { |
| 90 | + props: { |
| 91 | + src: 'https://picsum.photos/600/300/?image=25', |
| 92 | + top: true, |
| 93 | + bottom: true |
| 94 | + } |
| 95 | + } |
| 96 | + }) |
| 97 | + expect(wrapper.classes()).toContain('card-img-top') |
| 98 | + }) |
| 99 | + |
| 100 | + it('has class "card-img-left" when prop left=true', async () => { |
| 101 | + const wrapper = mount(CardImgLazy, { |
| 102 | + context: { |
| 103 | + props: { |
| 104 | + src: 'https://picsum.photos/600/300/?image=25', |
| 105 | + left: true |
| 106 | + } |
| 107 | + } |
| 108 | + }) |
| 109 | + expect(wrapper.classes()).toContain('card-img-left') |
| 110 | + }) |
| 111 | + |
| 112 | + it('has class "card-img-right" when prop right=true', async () => { |
| 113 | + const wrapper = mount(CardImgLazy, { |
| 114 | + context: { |
| 115 | + props: { |
| 116 | + src: 'https://picsum.photos/600/300/?image=25', |
| 117 | + right: true |
| 118 | + } |
| 119 | + } |
| 120 | + }) |
| 121 | + expect(wrapper.classes()).toContain('card-img-right') |
| 122 | + }) |
| 123 | + |
| 124 | + it('has attribute alt when prop alt set', async () => { |
| 125 | + const wrapper = mount(CardImgLazy, { |
| 126 | + context: { |
| 127 | + props: { |
| 128 | + src: 'https://picsum.photos/600/300/?image=25', |
| 129 | + alt: 'image' |
| 130 | + } |
| 131 | + } |
| 132 | + }) |
| 133 | + expect(wrapper.attributes('alt')).toBeDefined() |
| 134 | + expect(wrapper.attributes('alt')).toBe('image') |
| 135 | + }) |
| 136 | + |
| 137 | + it('has attribute width when prop width set', async () => { |
| 138 | + const wrapper = mount(CardImgLazy, { |
| 139 | + context: { |
| 140 | + props: { |
| 141 | + src: 'https://picsum.photos/600/300/?image=25', |
| 142 | + width: '600' |
| 143 | + } |
| 144 | + } |
| 145 | + }) |
| 146 | + expect(wrapper.attributes('width')).toBeDefined() |
| 147 | + expect(wrapper.attributes('width')).toBe('600') |
| 148 | + }) |
| 149 | + |
| 150 | + it('has attribute heigth when prop height set', async () => { |
| 151 | + const wrapper = mount(CardImgLazy, { |
| 152 | + context: { |
| 153 | + props: { |
| 154 | + src: 'https://picsum.photos/600/300/?image=25', |
| 155 | + height: '300' |
| 156 | + } |
| 157 | + } |
| 158 | + }) |
| 159 | + expect(wrapper.attributes('height')).toBeDefined() |
| 160 | + expect(wrapper.attributes('height')).toBe('300') |
| 161 | + }) |
| 162 | +}) |
0 commit comments