Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/token_access/token_access_app_spec.js')
-rw-r--r--spec/frontend/token_access/token_access_app_spec.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/spec/frontend/token_access/token_access_app_spec.js b/spec/frontend/token_access/token_access_app_spec.js
new file mode 100644
index 00000000000..7f269ee5fda
--- /dev/null
+++ b/spec/frontend/token_access/token_access_app_spec.js
@@ -0,0 +1,47 @@
+import { shallowMount } from '@vue/test-utils';
+import OutboundTokenAccess from '~/token_access/components/outbound_token_access.vue';
+import InboundTokenAccess from '~/token_access/components/inbound_token_access.vue';
+import OptInJwt from '~/token_access/components/opt_in_jwt.vue';
+import TokenAccessApp from '~/token_access/components/token_access_app.vue';
+
+describe('TokenAccessApp component', () => {
+ let wrapper;
+
+ const findOutboundTokenAccess = () => wrapper.findComponent(OutboundTokenAccess);
+ const findInboundTokenAccess = () => wrapper.findComponent(InboundTokenAccess);
+ const findOptInJwt = () => wrapper.findComponent(OptInJwt);
+
+ const createComponent = (flagState = false) => {
+ wrapper = shallowMount(TokenAccessApp, {
+ provide: {
+ glFeatures: { ciInboundJobTokenScope: flagState },
+ },
+ });
+ };
+
+ describe('default', () => {
+ beforeEach(() => {
+ createComponent();
+ });
+
+ it('renders the opt in jwt component', () => {
+ expect(findOptInJwt().exists()).toBe(true);
+ });
+
+ it('renders the outbound token access component', () => {
+ expect(findOutboundTokenAccess().exists()).toBe(true);
+ });
+
+ it('does not render the inbound token access component', () => {
+ expect(findInboundTokenAccess().exists()).toBe(false);
+ });
+ });
+
+ describe('with feature flag enabled', () => {
+ it('renders the inbound token access component', () => {
+ createComponent(true);
+
+ expect(findInboundTokenAccess().exists()).toBe(true);
+ });
+ });
+});