1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/**
* @jest-environment jsdom
*/
import '@testing-library/jest-dom/extend-expect';
import { render } from '@testing-library/svelte';
import '$lib/i18n';
import { addMessages } from 'svelte-i18n';
import ForumList from './forum_list.svelte';
const internals = {
results: null
};
describe('Forum List component', () => {
beforeAll(() => {
addMessages('en', {
'test_forums.yes': 'Absolutely yes',
'test_forums.no': 'No, not at all',
'test_forums.maybe': 'OK, maybe...'
});
});
beforeEach(() => {
internals.results = render(ForumList, {
props: {
forums: [
{
id: 'yes',
glyph: '☆',
label: 'test_forums.yes',
position: 2
},
{
id: 'no',
glyph: '◯',
label: 'test_forums.no',
position: 0
},
{
id: 'maybe',
glyph: '⏀',
label: 'test_forums.maybe',
position: 1
}
]
}
});
});
test('It should display each forum according to their position', () => {
expect(internals.results.container).toHaveTextContent(/^◯.+⏀.+☆.+$/);
});
test('It should translate forum labels', () => {
expect(internals.results.getByText('Absolutely yes')).toBeVisible();
expect(internals.results.getByText('No, not at all')).toBeVisible();
expect(internals.results.getByText('OK, maybe...')).toBeVisible();
});
test('It should display forum glyphs', () => {
expect(internals.results.getByText('☆')).toBeVisible();
expect(internals.results.getByText('◯')).toBeVisible();
expect(internals.results.getByText('⏀')).toBeVisible();
});
test('Label should be a permalink to the forum', () => {
expect(internals.results.getByText('Absolutely yes').closest('a')).toHaveAttribute(
'href',
'/f/yes'
);
expect(internals.results.getByText('No, not at all').closest('a')).toHaveAttribute(
'href',
'/f/no'
);
expect(internals.results.getByText('OK, maybe...').closest('a')).toHaveAttribute(
'href',
'/f/maybe'
);
});
test('Glyph should be a permalink to the forum', () => {
expect(internals.results.getByText('☆').closest('a')).toHaveAttribute('href', '/f/yes');
expect(internals.results.getByText('◯').closest('a')).toHaveAttribute('href', '/f/no');
expect(internals.results.getByText('⏀').closest('a')).toHaveAttribute('href', '/f/maybe');
});
});
|