summaryrefslogtreecommitdiff
path: root/spec/frontend/ci/runner/components/registration/registration_token_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/ci/runner/components/registration/registration_token_spec.js')
-rw-r--r--spec/frontend/ci/runner/components/registration/registration_token_spec.js62
1 files changed, 62 insertions, 0 deletions
diff --git a/spec/frontend/ci/runner/components/registration/registration_token_spec.js b/spec/frontend/ci/runner/components/registration/registration_token_spec.js
new file mode 100644
index 00000000000..d2a51c0d910
--- /dev/null
+++ b/spec/frontend/ci/runner/components/registration/registration_token_spec.js
@@ -0,0 +1,62 @@
+import { GlToast } from '@gitlab/ui';
+import Vue from 'vue';
+import { mountExtended, shallowMountExtended } from 'helpers/vue_test_utils_helper';
+import RegistrationToken from '~/ci/runner/components/registration/registration_token.vue';
+import InputCopyToggleVisibility from '~/vue_shared/components/form/input_copy_toggle_visibility.vue';
+
+const mockToken = '01234567890';
+const mockMasked = '***********';
+
+describe('RegistrationToken', () => {
+ let wrapper;
+ let showToast;
+
+ Vue.use(GlToast);
+
+ const findInputCopyToggleVisibility = () => wrapper.findComponent(InputCopyToggleVisibility);
+
+ const createComponent = ({ props = {}, mountFn = shallowMountExtended } = {}) => {
+ wrapper = mountFn(RegistrationToken, {
+ propsData: {
+ value: mockToken,
+ inputId: 'token-value',
+ ...props,
+ },
+ });
+
+ showToast = wrapper.vm.$toast ? jest.spyOn(wrapper.vm.$toast, 'show') : null;
+ };
+
+ afterEach(() => {
+ wrapper.destroy();
+ });
+
+ it('Displays value and copy button', () => {
+ createComponent();
+
+ expect(findInputCopyToggleVisibility().props('value')).toBe(mockToken);
+ expect(findInputCopyToggleVisibility().props('copyButtonTitle')).toBe(
+ 'Copy registration token',
+ );
+ });
+
+ // Component integration test to ensure secure masking
+ it('Displays masked value by default', () => {
+ createComponent({ mountFn: mountExtended });
+
+ expect(wrapper.find('input').element.value).toBe(mockMasked);
+ });
+
+ describe('When the copy to clipboard button is clicked', () => {
+ beforeEach(() => {
+ createComponent();
+ });
+
+ it('shows a copied message', () => {
+ findInputCopyToggleVisibility().vm.$emit('copy');
+
+ expect(showToast).toHaveBeenCalledTimes(1);
+ expect(showToast).toHaveBeenCalledWith('Registration token copied!');
+ });
+ });
+});