blob: 5d9398b572b753793f9799532bf6acd2c627ddea (
plain)
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
|
import { shallowMount } from '@vue/test-utils';
import X509CertificateDetails from '~/commit/components/x509_certificate_details.vue';
import { X509_CERTIFICATE_KEY_IDENTIFIER_TITLE } from '~/commit/constants';
import { x509CertificateDetailsProp } from '../mock_data';
describe('X509 certificate details', () => {
let wrapper;
const createComponent = () => {
wrapper = shallowMount(X509CertificateDetails, {
propsData: x509CertificateDetailsProp,
});
};
beforeEach(() => {
createComponent();
});
const findTitle = () => wrapper.find('strong');
const findSubjectValues = () => wrapper.findAll("[data-testid='subject-value']");
const findKeyIdentifier = () => wrapper.find("[data-testid='key-identifier']");
it('renders a title', () => {
expect(findTitle().text()).toBe(x509CertificateDetailsProp.title);
});
it('renders subject values', () => {
expect(findSubjectValues()).toHaveLength(3);
});
it('renders key identifier', () => {
expect(findKeyIdentifier().text()).toBe(
`${X509_CERTIFICATE_KEY_IDENTIFIER_TITLE} ${x509CertificateDetailsProp.subjectKeyIdentifier}`,
);
});
});
|