Files
api/web/__test__/components/Auth.test.ts
Eli Bosley 345e83bfb0 feat: upgrade nuxt-custom-elements (#1461)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **New Features**
* Added new modal dialogs and UI components, including activation steps,
OS update feedback, and expanded notification management.
* Introduced a plugin to configure internationalization, state
management, and Apollo client support in web components.
* Added a new Log Viewer page with a streamlined interface for viewing
logs.

* **Improvements**
* Centralized Pinia state management by consolidating all stores to use
a shared global Pinia instance.
* Simplified component templates by removing redundant
internationalization host wrappers.
* Enhanced ESLint configuration with stricter rules and global variable
declarations.
* Refined custom element build process to prevent jQuery conflicts and
optimize minification.
* Updated component imports and templates for consistent structure and
maintainability.
* Streamlined log viewer dropdowns using simplified select components
with improved formatting.
* Improved notification sidebar with filtering by importance and modular
components.
* Replaced legacy notification popups with new UI components and added
automatic root session creation for localhost requests.
* Updated OS version display and user profile UI with refined styling
and component usage.

* **Bug Fixes**
* Fixed component tag capitalization and improved type annotations
across components.

* **Chores**
* Updated development dependencies including ESLint plugins and build
tools.
* Removed deprecated log viewer patch class and cleaned up related test
fixtures.
  * Removed unused imports and simplified Apollo client setup.
* Cleaned up test mocks and removed obsolete i18n host component tests.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---
- To see the specific tasks where the Asana app for GitHub is being
used, see below:
  - https://app.asana.com/0/0/1210730229632804

---------

Co-authored-by: Pujit Mehrotra <pujit@lime-technology.com>
Co-authored-by: Zack Spear <zackspear@users.noreply.github.com>
2025-07-08 10:05:39 -04:00

152 lines
3.8 KiB
TypeScript

/**
* Auth Component Test Coverage
*/
import { nextTick, ref } from 'vue';
import { mount } from '@vue/test-utils';
import { GlobeAltIcon } from '@heroicons/vue/24/solid';
import { createTestingPinia } from '@pinia/testing';
import { beforeEach, describe, expect, it, vi } from 'vitest';
import type { ServerconnectPluginInstalled } from '~/types/server';
import Auth from '~/components/Auth.ce.vue';
import { useServerStore } from '~/store/server';
vi.mock('vue-i18n', () => ({
useI18n: () => ({
t: (key: string) => key,
}),
}));
vi.mock('crypto-js/aes', () => ({
default: {},
}));
vi.mock('@unraid/shared-callbacks', () => ({
useCallback: vi.fn(() => ({
send: vi.fn(),
watcher: vi.fn(),
})),
}));
const mockAccountStore = {
signIn: vi.fn(),
};
vi.mock('~/store/account', () => ({
useAccountStore: () => mockAccountStore,
}));
vi.mock('~/store/activationCode', () => ({
useActivationCodeStore: vi.fn(() => ({
code: ref(null),
partnerName: ref(null),
})),
}));
vi.mock('~/components/Activation/store/activationCodeData', () => ({
useActivationCodeDataStore: () => ({
loading: ref(false),
activationCode: ref(null),
isFreshInstall: ref(false),
partnerInfo: ref(null),
}),
}));
describe('Auth Component', () => {
let serverStore: ReturnType<typeof useServerStore>;
beforeEach(() => {
vi.clearAllMocks();
});
it('displays an authentication button when authAction is available', async () => {
const wrapper = mount(Auth, {
global: {
plugins: [createTestingPinia({ createSpy: vi.fn })],
},
});
// Patch the underlying state that `authAction` depends on
serverStore = useServerStore();
serverStore.$patch({
state: 'ENOKEYFILE',
registered: false,
connectPluginInstalled: 'INSTALLED' as ServerconnectPluginInstalled,
});
await nextTick();
const button = wrapper.findComponent({ name: 'BrandButton' });
expect(button.exists()).toBe(true);
expect(button.props('text')).toBe('Sign In with Unraid.net Account');
expect(button.props('icon')).toBe(GlobeAltIcon);
});
it('displays error messages when stateData.error is true', () => {
const wrapper = mount(Auth, {
global: {
plugins: [createTestingPinia({ createSpy: vi.fn })],
},
});
// Patch the underlying state that `stateData` depends on
serverStore = useServerStore();
serverStore.$patch({
state: 'EEXPIRED',
registered: false,
connectPluginInstalled: 'INSTALLED' as ServerconnectPluginInstalled,
});
const errorHeading = wrapper.find('h3');
expect(errorHeading.exists()).toBe(true);
expect(errorHeading.text()).toBe('Stale Server');
expect(wrapper.text()).toContain(
'Please refresh the page to ensure you load your latest configuration'
);
});
it('calls the click handler when button is clicked', async () => {
const wrapper = mount(Auth, {
global: {
plugins: [createTestingPinia({ createSpy: vi.fn })],
},
});
serverStore = useServerStore();
serverStore.$patch({
state: 'ENOKEYFILE',
registered: false,
connectPluginInstalled: 'INSTALLED' as ServerconnectPluginInstalled,
});
await nextTick();
await wrapper.findComponent({ name: 'BrandButton' }).vm.$emit('click');
expect(mockAccountStore.signIn).toHaveBeenCalledTimes(1);
});
it('does not render button when authAction is undefined', () => {
const wrapper = mount(Auth, {
global: {
plugins: [createTestingPinia({ createSpy: vi.fn })],
},
});
serverStore = useServerStore();
serverStore.$patch({
state: 'PRO',
registered: true,
});
const button = wrapper.findComponent({ name: 'BrandButton' });
expect(button.exists()).toBe(false);
});
});